/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; background: #fafafa; color: #111; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #ffffff; --bg-alt: #f5f5f5; --bg-card: #f9f9f9;
  --text: #0a0a0a; --text-light: #555555;
  --accent: #ff7043; /* Warm orange, Firstcry inspired */
  --border: rgba(0,0,0,0.1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* ===== NAVBAR & MOBILE MENU (Existing) ===== */
.navbar { position: sticky; top: 0; left: 0; right: 0; z-index: 9000; display: flex; align-items: center; justify-content: space-between; padding: 20px 60px; transition: all 0.4s; background: #fff; border-bottom: 1px solid var(--border); }
.navbar.scrolled { padding: 12px 60px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); }
.nav-logo { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.08em; transition: opacity 0.3s ease; display: flex; align-items: center; }
.logo-zeta { color: var(--text); } .logo-style { color: var(--accent); }
.site-logo { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 24px; }
.nav-link { font-size: 13px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); transition: 0.3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--text); transition: 0.3s; }
.nav-link:hover { color: var(--text); } .nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 20px; align-items: center; }
.nav-profile-btn, .nav-cart-btn { color: var(--text); position: relative; }
.cart-count { position: absolute; top: -6px; right: -8px; width: 16px; height: 16px; background: var(--accent); color: #fff; font-size: 9px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: 0.3s; }
.mobile-menu { position: fixed; inset: 0; background: var(--bg); z-index: 8000; display: flex; align-items: center; justify-content: center; transform: translateX(100%); transition: 0.6s cubic-bezier(0.76, 0, 0.24, 1); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-link { font-family: var(--font-body); font-size: 24px; font-weight: 500; color: var(--text); letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== SEARCH OVERLAY ===== */
.search-overlay { position: fixed; inset: 0; background: rgba(255, 255, 255, 0.98); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; backdrop-filter: blur(10px); }
.search-overlay.active { opacity: 1; pointer-events: auto; }
.search-close-btn { position: absolute; top: 30px; right: 40px; font-size: 40px; color: var(--text); cursor: pointer; transition: transform 0.3s; }
.search-close-btn:hover { transform: scale(1.1) rotate(90deg); color: var(--accent); }
.search-overlay-content { width: 100%; max-width: 800px; padding: 0 40px; text-align: center; transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.search-overlay.active .search-overlay-content { transform: translateY(0); }
.search-overlay-title { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 30px; }
.search-input-wrap { position: relative; width: 100%; display: flex; align-items: center; border-bottom: 2px solid var(--border); transition: border-color 0.3s; padding-bottom: 10px; margin-bottom: 16px; }
.search-input-wrap:focus-within { border-color: var(--accent); }
.search-input-wrap svg { position: absolute; left: 0; color: var(--text); }
.search-overlay-input { width: 100%; padding: 10px 10px 10px 48px; border: none; background: transparent; font-family: var(--font-body); font-size: 28px; font-weight: 600; color: var(--text); outline: none; }
.search-overlay-input::placeholder { color: #ccc; font-weight: 400; }
.search-hint { font-size: 13px; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== HERO CAROUSEL (NEW) ===== */
.hero-carousel { position: relative; width: 100%; height: calc(100vh - 80px); min-height: 500px; overflow: hidden; margin-top: 0; background: #eee; }
.carousel-track { display: flex; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.carousel-slide { min-width: 100%; height: 100%; position: relative; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (min-width: 993px) {
  .carousel-slide:nth-child(2) img,
  .carousel-slide:nth-child(3) img {
    object-position: center 50%;
  }
}
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 60%); }
.slide-content { position: absolute; top: 50%; left: 80px; transform: translateY(-50%); color: #fff; max-width: 500px; z-index: 10; }
.slide-tag { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block; }
.slide-title { font-family: var(--font-display); font-size: clamp(60px, 6vw, 90px); line-height: 1; margin-bottom: 20px; }
.slide-desc { font-size: 18px; margin-bottom: 40px; opacity: 0.9; }
.slide-btn { background: #fff; color: #111; padding: 16px 36px; border-radius: 40px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; display: inline-block; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.slide-btn:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #111; z-index: 20; transition: 0.3s; backdrop-filter: blur(4px); }
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: 30px; } .carousel-next { right: 30px; }
.carousel-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 20; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.3s; }
.dot.active { background: #fff; width: 24px; border-radius: 5px; }

/* ===== 5 MAIN CATEGORIES ===== */
.main-categories { padding: 40px 0; background: #fff; border-bottom: 1px solid var(--border); overflow: hidden; }
.cat-scroll { display: flex; justify-content: center; gap: 60px; padding: 10px 40px; overflow-x: auto; scrollbar-width: none; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-circle-item { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 80px; transition: 0.3s; }
.cat-circle-item:hover { transform: translateY(-5px); }
.cat-circle { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1); overflow: hidden; border: 3px solid #fff; outline: 2px solid var(--accent); }
.cat-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-circle-item:hover .cat-circle img { transform: scale(1.15); }
.cat-circle-item span { font-size: 14px; font-weight: 600; color: var(--text); }

/* ===== PROMO STRIP ===== */
.marquee-strip { background: var(--text); padding: 12px 0; overflow: hidden; white-space: nowrap; color: #fff; }
.marquee-track { display: flex; animation: marqueeScroll 20s linear infinite; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-content { display: flex; gap: 32px; padding-right: 32px; }
.marquee-content span { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; }

/* ===== SUB CATEGORIES (Men, Women, Kids) ===== */
.sub-category-section { padding: 60px; background: #fff; }
.sub-category-section:nth-of-type(even) { background: #fafafa; }
.subcat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.subcat-title { font-family: var(--font-display); font-size: 36px; letter-spacing: 0.05em; }
.subcat-viewall { font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.subcat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.subcat-card { background: #fff; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.05); transition: 0.3s; cursor: pointer; position: relative; }
.subcat-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.subcat-img-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.subcat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.subcat-card:hover .subcat-img-wrap img { transform: scale(1.08); }
.subcat-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%); pointer-events: none; }
.subcat-name { position: absolute; bottom: 0; left: 0; right: 0; font-size: 16px; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); padding: 16px 8px; z-index: 2; letter-spacing: 0.03em; }

/* ===== TRENDING & LATEST ======= */
.trending-section { padding: 80px 60px; background: #fff; }
.trending-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 40px; gap: 20px; }
.trending-title { font-family: var(--font-display); font-size: 42px; letter-spacing: 0.05em; }
.trending-tabs { display: flex; background: var(--bg-alt); padding: 6px; border-radius: 40px; }
.trending-tab { padding: 12px 32px; border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--text-light); transition: 0.3s; }
.trending-tab.active { background: #fff; color: var(--text); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.trending-scroll-wrap { overflow-x: auto; padding-bottom: 40px; scrollbar-width: none; }
.trending-scroll-wrap::-webkit-scrollbar { display: none; }
.trending-track { display: flex; gap: 24px; padding: 0 10px; }
.trending-track .product-card { min-width: 280px; }

/* ===== HERO MODEL (Preserved / Repositioned) ===== */
.hero-wrapper { width: 100%; position: relative; background: #fafafa; }
.hero-pinned { width: 100%; height: 100vh; overflow: hidden; position: relative; display: flex; flex-direction: column; background: #fafafa; }
.hero-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: 38vw; font-weight: 900; color: rgba(0,0,0,0.025); z-index: 0; pointer-events: none; letter-spacing: -0.02em; user-select: none; }
.hero-content { flex: 1; display: flex; align-items: center; position: relative; z-index: 1; padding: 120px 80px 0; max-width: 1600px; margin: 0 auto; width: 100%; }
.hero-left { flex: 1; max-width: 520px; position: relative; z-index: 2; }
.hero-subtitle { font-size: 13px; font-weight: 700; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 24px; text-transform: uppercase; }
.hero-title { font-family: var(--font-display); font-size: clamp(60px, 7vw, 100px); line-height: 0.95; color: #111; margin-bottom: 32px; }
.title-line { display: block; overflow: hidden; }
.dot { color: var(--accent); }
.hero-divider { width: 60px; height: 2px; background: #e0e0e0; margin-bottom: 32px; }
.hero-desc { font-size: 17px; color: #666; line-height: 1.6; margin-bottom: 48px; max-width: 380px; }
.btn-primary-new { background: var(--text); color: #fff; padding: 18px 36px; border-radius: 40px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: 0.3s; }
.btn-primary-new:hover { transform: translateY(-3px); background: var(--accent); }
.hero-right { flex: 1.5; height: 100%; position: relative; display: flex; justify-content: center; align-items: flex-end; padding-bottom: 2vh; }
.hero-shape { position: absolute; width: 65%; height: 92%; background: linear-gradient(180deg, #9b8bfc 0%, #dcd6ff 100%); border-radius: 100px; top: 45%; left: 50%; transform: translate(-50%, -50%); z-index: 0; opacity: 0.8; }
.hero-models { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: flex-end; z-index: 2; }
.hero-model { position: absolute; height: 90%; max-width: 80%; width: auto; object-fit: contain; bottom: 2%; border-radius: 20px; }
#model3 { height: 95%; bottom: 0%; }
#model2, #model3 { opacity: 0; transform: translateY(150px); }
.hero-slider-nav { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 24px; z-index: 10; }
.nav-item { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; color: #ccc; cursor: pointer; transition: 0.3s; }
.nav-item.active { color: var(--accent); }
.nav-dot { width: 6px; height: 6px; border-radius: 50%; background: #ccc; transition: 0.3s; }
.nav-item.active .nav-dot { background: var(--accent); }

/* ===== PRODUCTS SHOWCASE (New Arrivals / Best Sellers) ===== */
.product-showcase { padding: 100px 60px; background: #fff; }
.product-showcase.best-selling { background: #fafafa; }
.showcase-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.showcase-tag { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 12px; font-style: italic; }
.showcase-title { font-family: var(--font-display); font-size: 48px; letter-spacing: 0.05em; line-height: 1; }
.showcase-viewall { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 2px solid var(--text); padding-bottom: 4px; }
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px; }

/* PRODUCT CARD COMPONENT */
.product-card { border-radius: 12px; padding: 0; transition: 0.4s; cursor: pointer; background: transparent; position: relative; }
.product-card:hover { transform: translateY(-8px); }
.product-img-wrap { aspect-ratio: 4/5; position: relative; overflow: hidden; border-radius: 12px; background: var(--bg-alt); margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.product-card:hover .product-img { transform: scale(1.08); }
.product-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%); display: flex; align-items: flex-end; justify-content: center; opacity: 0; transition: 0.4s; padding-bottom: 24px; }
.product-card:hover .product-overlay { opacity: 1; }
.quick-add-btn { padding: 14px 32px; background: #fff; color: var(--text); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 40px; transform: translateY(20px); transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.quick-add-btn:hover { background: var(--accent); color: #fff; }
.product-card:hover .quick-add-btn { transform: translateY(0); }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 6px 12px; border-radius: 4px; letter-spacing: 0.1em; z-index: 5; }
.new-badge { background: #111; }
.product-info { padding: 0 8px; display: flex; flex-direction: column; gap: 8px; }
.product-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.product-rating .stars { color: #f59e0b; letter-spacing: 2px; }
.product-rating .review-count { color: var(--text-light); font-weight: 500; }
.product-name { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--text); letter-spacing: 0.03em; }
.product-price-row { display: flex; align-items: center; gap: 12px; }
.product-price { font-size: 20px; font-weight: 700; color: var(--text); }
.product-original-price { font-size: 15px; color: var(--text-light); text-decoration: line-through; font-weight: 500; }

/* ===== FEATURES BAR ===== */
.features-bar { display: flex; justify-content: space-between; padding: 60px 80px; background: #111; color: #fff; }
.feature-item { display: flex; align-items: center; gap: 20px; }
.feature-icon { color: var(--accent); }
.feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: 0.05em; }
.feature-item p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== FOOTER (Existing) ===== */
.footer { background: #0a0a0a; color: #fff; padding: 80px 60px 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 32px; margin-bottom: 24px; display: flex; align-items: center; }
.footer-logo .logo-zeta { color: #fff; } .footer-logo .logo-style { color: var(--accent); }
.footer-logo .site-logo { height: 48px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 32px; max-width: 300px; }
.social-links { display: flex; gap: 20px; }
.social-link { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); transition: 0.3s; }
.social-link:hover { color: var(--accent); }
.footer-title { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 32px; color: #fff; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: 0.3s; }
.footer-links a:hover { color: #fff; transform: translateX(5px); display: inline-block; }
.newsletter p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; line-height: 1.6; }
.newsletter-form { display: flex; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 8px; }
.newsletter-form input { background: transparent; border: none; color: #fff; padding: 8px 0; width: 100%; font-family: inherit; font-size: 14px; outline: none; }
.newsletter-form button { color: #fff; font-weight: 700; font-size: 12px; letter-spacing: 0.1em; padding: 0 16px; transition: 0.3s; }
.newsletter-form button:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 32px; }
.footer-legal a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media(max-width: 1200px) {
  .subcat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 992px){
  .hero-carousel { height: 60vh; }
  .slide-content { left: 40px; }
  .slide-title { font-size: 48px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-bar { flex-wrap: wrap; gap: 40px; }
  .feature-item { width: calc(50% - 20px); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-pinned { height: 100%; position: relative; overflow: hidden; }
  .hero-content { flex-direction: column; padding: 100px 24px 10px; display: flex; justify-content: space-between; align-items: center; height: 100%; }
  .hero-left { max-width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 0; margin-top: 0; z-index: 5; }
  .hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(52px, 13vw, 78px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 0.95; text-transform: uppercase; }
  .hero-subtitle { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
  .hero-right { width: 100%; flex: 1; min-height: 52vh; position: relative; display: flex; justify-content: center; align-items: flex-end; z-index: 1; }
  .hero-shape { width: 90%; height: 95%; top: 45%; }
  .hero-model { height: 90%; bottom: 2%; border-radius: 16px; }
  #model3 { height: 95%; bottom: 0%; }
  .hero-bottom-bar, .hero-slider-nav, .hero-divider, .hero-desc { display: none; }
}
@media(max-width: 640px){
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .hero-carousel { height: 50vh; min-height: 400px; }
  .slide-content { left: 20px; right: 20px; text-align: center; top: 55%; }
  .slide-title { font-size: 36px; }
  .carousel-arrow { display: none; }
  .cat-scroll { justify-content: flex-start; padding: 10px 20px; gap: 30px; }
  .sub-category-section { padding: 30px 20px; }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .subcat-card { border-radius: 12px; }
  .subcat-name { font-size: 13px; padding: 10px 6px; }
  .subcat-title { font-size: 28px; }
  .trending-section, .product-showcase { padding: 30px 20px; }
  .showcase-title { font-size: 36px; }
  .showcase-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .features-bar { padding: 40px 20px; flex-direction: column; gap: 30px; }
  .feature-item { width: 100%; }
  .footer { padding: 60px 24px 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trending-track .product-card { min-width: 160px; }
  .product-img-wrap { aspect-ratio: 4/5; }
  .quick-add-btn { padding: 10px 16px; font-size: 10px; width: 90%; }
}

/* Live Search Results Dropdown */
.search-results-container {
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
  margin-top: 15px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.search-results-container.active {
  opacity: 1;
  transform: translateY(0);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: #f8fafc;
}
.search-result-img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: #f1f5f9;
  flex-shrink: 0;
}
.search-result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.search-result-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.search-result-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 500;
}

/* Live Search Results Dropdown */
.search-results-container {
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
  margin-top: 15px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.search-results-container.active {
  opacity: 1;
  transform: translateY(0);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: #f8fafc;
}
.search-result-img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: #f1f5f9;
  flex-shrink: 0;
}
.search-result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.search-result-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.search-result-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 500;
}
.search-result-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.search-results-empty {
  padding: 24px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
