:root {
  --primary: #1a1a2e;
  --primary-dark: #0f0f1a;
  --accent: #c8a951;
  --accent-dark: #b8963e;
  --dark: #1e293b;
  --light: #f8f9fc;
  --white: #ffffff;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --gray-lighter: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 20px rgba(200,169,81,0.15);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background-color: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
::selection { background: var(--accent); color: var(--white); }

/* Navbar */
.navbar {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}
.navbar .container { display: flex; flex-wrap: wrap; align-items: center; }
.navbar-toggler { order: -1; flex-shrink: 0; }
.navbar-brand { font-weight: 700; font-size: 1.4rem; display: flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: center; margin: 0 1rem; }
.navbar-brand img { height: 50px; width: auto; transition: var(--transition); }
.navbar-brand:hover img { transform: scale(1.05); }
@media (min-width: 992px) {
  .navbar .container { flex-wrap: nowrap; }
  .navbar-toggler { display: none; }
  .navbar-brand { flex: 0 0 auto; justify-content: flex-start; margin: 0; margin-right: 2rem; width: auto; }
}
.navbar .nav-link {
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.02em;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--accent-dark) !important; }
.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.navbar-toggler { border: 1px solid var(--gray-light); padding: 0.4rem 0.6rem; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30,41,59,0.6)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.whatsapp-btn {
  background: #25D366;
  color: white !important;
  border-radius: 50px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.3); color: white !important; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,81,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #c8a951 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem; }
.hero .btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero .btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); background: var(--accent-dark); color: white; }
.hero .btn-outline-light {
  border: 1.5px solid rgba(200,169,81,0.5);
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero .btn-outline-light:hover { border-color: var(--accent); background: rgba(200,169,81,0.1); color: var(--accent); }
.hero-image-col { position: relative; }
.hero-banner-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(200,169,81,0.3));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Sections */
.section { padding: 1rem 0; background: var(--white); }
.section-alt { background: var(--light); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-title span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle { color: var(--text-secondary); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* Brand Section */
.brand-section { padding: 3rem 0; }
.brand-section + .brand-section { border-top: 1px solid var(--gray-light); }
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.brand-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.btn-show-more {
  background: transparent;
  border: 1.5px solid var(--gray-light);
  color: var(--accent-dark);
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-show-more:hover { border-color: var(--accent); background: rgba(200,169,81,0.08); }
.brand-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,81,0.3);
}
.product-card .card-img-top {
  height: 200px;
  object-fit: contain;
  padding: 1.25rem;
  background: var(--gray-lighter);
  transition: var(--transition);
}
.product-card:hover .card-img-top { transform: scale(1.05); }
.product-card .card-body { padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-card .product-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.product-card .product-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  line-height: 1.35;
}
.product-card .product-specs {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.product-card .product-specs span {
  display: inline;
}
.product-card .btn-detail {
  margin-top: auto;
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  padding: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
  text-align: center;
}
.product-card .btn-detail:hover { background: var(--accent); color: var(--white); }

/* Category Cards */
.category-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); border-color: rgba(200,169,81,0.3); }
.category-card .category-icon {
  width: 68px; height: 68px;
  background: rgba(200,169,81,0.1);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.category-card:hover .category-icon { background: var(--accent); color: var(--white); transform: scale(1.1); }
.category-card h5 { font-weight: 600; margin-bottom: 0.25rem; color: var(--text-primary); }
.category-card p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* Features */
.feature-card { text-align: center; padding: 2rem 1.25rem; }
.feature-card .feature-icon {
  width: 60px; height: 60px;
  background: rgba(200,169,81,0.1);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--accent); color: var(--white); transform: scale(1.1); }
.feature-card h6 { font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer h6 { color: var(--white); font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer a:hover { color: var(--accent); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }

/* Product Detail */
.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-lighter);
  border: 1px solid var(--gray-light);
  padding: 2rem;
}
.product-detail-img img { width: 100%; max-height: 500px; object-fit: contain; }
.spec-table { color: var(--text-primary); }
.spec-table th { width: 40%; color: var(--text-secondary); font-weight: 500; }
.spec-table td, .spec-table th { padding: 0.75rem 0; border-bottom: 1px solid var(--gray-light); }

/* Color Selector */
.color-selector { margin-bottom: 1.25rem; }
.color-selector h6 { font-weight: 600; color: var(--text-primary); margin-bottom: 0.75rem; }
.color-options { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.color-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.color-circle:hover { transform: scale(1.15); }
.color-circle.active { border-color: var(--accent-dark); box-shadow: 0 0 0 2px var(--accent); }
.color-circle.active::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.color-circle[data-hex="#F5F5F5"].active::after,
.color-circle[data-hex="#E8E8E8"].active::after,
.color-circle[data-hex="#C0C0C0"].active::after,
.color-circle[data-hex="#E8D44D"].active::after { color: #333; text-shadow: none; }
.color-name { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.5rem; }

/* Filter Sidebar */
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.filter-sidebar h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-primary);
}
.filter-sidebar .form-check-label { font-size: 0.9rem; color: var(--text-secondary); }
.filter-sidebar .form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }

/* Search */
.search-input {
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  padding: 0.55rem 1rem 0.55rem 2.5rem;
  width: 100%;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-primary);
}
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,169,81,0.1); outline: none; }
.search-input::placeholder { color: var(--gray); }
.search-wrapper { position: relative; }
.search-wrapper i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray); }

/* Mobile Category Chips */
.mobile-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mobile-chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.chip:hover { border-color: var(--accent); color: var(--accent-dark); }
.chip.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* Filter Drawer */
.filter-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.filter-drawer-overlay.active { opacity: 1; visibility: visible; }
.filter-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.filter-drawer.open { right: 0; }
.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
}
.filter-drawer-header h5 { font-weight: 700; color: var(--text-primary); }
.filter-drawer-header button { background: none; border: none; font-size: 1.25rem; color: var(--text-secondary); }
.filter-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}
.filter-drawer-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-light);
}
.filter-drawer-footer .btn { flex: 1; }
@media (min-width: 992px) {
  .filter-drawer, .filter-drawer-overlay, .mobile-chips { display: none !important; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); color: white; box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* Breadcrumb */
.breadcrumb { background: transparent; padding: 1rem 0; margin-bottom: 1rem; }
.breadcrumb-item a { color: var(--accent-dark); }
.breadcrumb-item.active { color: var(--text-secondary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray); }

/* Contact */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-gold); border-color: rgba(200,169,81,0.3); }
.contact-info-card .icon {
  width: 50px; height: 50px;
  background: rgba(200,169,81,0.1);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 0 auto 1rem;
}

/* About */
.about-story {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-light);
}
.team-card { text-align: center; padding: 1.5rem; }
.team-card img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--gray-light);
}

/* Sort / No Results */
.sort-dropdown { min-width: 180px; }
.no-results { text-align: center; padding: 4rem 2rem; }
.no-results i { font-size: 4rem; color: var(--gray-light); margin-bottom: 1rem; }

/* Badge */
.stock-badge { font-size: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 50px; font-weight: 600; }
.stock-badge.in-stock { background: #d1fae5; color: #065f46; }
.stock-badge.out-of-stock { background: #fee2e2; color: #991b1b; }

/* Form Controls */
.form-control, .form-select {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--text-primary);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.1);
}

/* Buttons */
.btn-outline-primary { color: var(--accent-dark); border-color: var(--accent); }
.btn-outline-primary:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary { background: var(--accent); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-whatsapp { background: #25D366; color: white; border: none; }
.btn-whatsapp:hover { background: #1da851; color: white; }

/* Responsive */
@media (max-width: 1200px) { .brand-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .brand-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 4rem 0 3rem; }
  .hero-content-col { text-align: center; }
  .hero-content-col .d-flex { justify-content: center; }
  .hero-image-col { display: block !important; margin-top: 2rem; }
  .hero-banner-img { max-width: 70%; }
  .section { padding: 1rem 0; }
  .section-title { font-size: 1.5rem; }
  .product-card .card-img-top { height: 170px; }
  #productGrid .card-img-top { height: 220px; }
  .brand-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .brand-header { gap: 0.75rem; }
  .footer-bottom { text-align: center; }
  .footer .col-lg-4 { text-align: center; }
  .footer .col-lg-4 img { margin: 0 auto; display: block; }
  .footer .col-lg-4 .footer-social { justify-content: center; display: flex; }
  .footer .col-lg-3:last-child { text-align: center; }
  .footer .col-6 { text-align: center; }
  .footer .col-6 ul { padding: 0; }
}
@media (max-width: 576px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.95rem; }
  .hero-image-col { display: block !important; margin-top: 1.5rem; }
  .hero-banner-img { max-width: 80%; }
  #productGrid .card-img-top { height: 260px; }
  .product-detail-img img { max-height: 260px; }
  .brand-products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .brand-products-grid::-webkit-scrollbar { display: none; }
  .brand-products-grid .product-card {
    min-width: 80%;
    max-width: 80%;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .brand-products-grid .product-card .card-img-top { height: 220px; }
  .brand-products-grid .product-card .product-specs {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .breadcrumb { padding: 0.5rem 0; margin-bottom: 0.5rem; }
  .breadcrumb-item { font-size: 0.8rem; }
  .product-detail-img { padding: 1rem; }
  .product-detail-img img { max-height: 220px; }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.search-overlay.active { display: flex; }
.search-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 560px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  gap: 0.75rem;
}
.search-input-wrap .search-icon { color: var(--text-secondary); font-size: 1.1rem; }
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
}
.search-input-wrap input::placeholder { color: var(--gray); }
.search-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
}
.search-close:hover { color: var(--text-primary); }

/* Search toggle in navbar */
.search-toggle { font-size: 1.1rem; color: rgba(255,255,255,0.85); flex-shrink: 0; }
.search-toggle:hover { color: var(--accent); }
.search-toggle-desktop { display: none; }
@media (min-width: 992px) {
  .search-toggle { display: none; }
  .search-toggle-desktop { display: block; font-size: 1.1rem; color: rgba(255,255,255,0.85); }
  .search-toggle-desktop:hover { color: var(--accent); }
}
.search-results {
  max-height: 400px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s;
}
.search-result-item:hover { background: var(--light); }
.search-result-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--gray-lighter);
  padding: 4px;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-info h6 { font-size: 0.9rem; font-weight: 600; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-info small { color: var(--text-secondary); font-size: 0.78rem; }
.search-no-results { padding: 2rem; text-align: center; color: var(--text-secondary); }
.search-highlight { background: rgba(200,169,81,0.2); border-radius: 2px; }

/* Toast */
.toast-container { position: fixed; top: 80px; right: 24px; z-index: 1050; }
