/* ===== 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: var(--bg); color: var(--text); 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: #fafafa; --bg-card: #ffffff;
  --text: #111111; --text-light: #666666;
  --accent: #ff7043; /* Warm orange, Firstcry inspired */
  --border: #eeeeee;
  --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: var(--bg); 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; }

/* ===== PREMIUM HERO SECTION ===== */
.premium-hero { position: relative; width: 100%; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; background: #000; }
.premium-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.premium-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 10s ease-out; }
.desktop-hero-img { display: block; }
.mobile-hero-img { display: none; }
.premium-hero-overlay { display: none; }
.premium-hero-content { position: relative; z-index: 3; text-align: left; color: var(--text); max-width: 800px; padding: 0 5% 0 3%; transform: translateY(20px); opacity: 0; animation: fadeUpHero 1s ease-out forwards 0.5s; }
@keyframes fadeUpHero { to { transform: translateY(0); opacity: 1; } }
.hero-title-main { font-family: var(--font-display); font-size: clamp(60px, 9vw, 110px); line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 30px; text-transform: uppercase; color: var(--text); }
.hero-title-main .highlight { color: var(--accent); }
.hero-actions { display: flex; gap: 20px; justify-content: flex-start; }
.hero-btn { padding: 18px 40px; font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 50px; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; }
.hero-btn.primary { background: var(--accent); color: #fff; box-shadow: 0 10px 20px rgba(255, 112, 67, 0.3); }
.hero-btn.primary:hover { background: var(--text); color: var(--bg); transform: translateY(-3px); }
.hero-btn.secondary { background: transparent; color: var(--text); border: 2px solid var(--text); }
.hero-btn.secondary:hover { background: var(--text); color: var(--bg); transform: translateY(-3px); }

/* ===== ANIME COLLECTIONS GRID ===== */
.anime-collections { padding: 40px; background: var(--bg); max-width: 1400px; margin: 0 auto; }
.anime-collections-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.anime-header-left { display: flex; flex-direction: column; gap: 4px; }
.anime-subtitle { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.anime-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 42px); letter-spacing: 0.05em; color: var(--text); line-height: 1; text-transform: uppercase; margin: 0; }
.anime-view-all { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; padding-bottom: 4px; }
.anime-view-all:hover { color: var(--text); }
.anime-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.anime-card { position: relative; border-radius: 12px; overflow: hidden; background: #111; display: block; aspect-ratio: 4/5; cursor: pointer; }
.anime-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); opacity: 0.85; }
.anime-card:hover .anime-card-img { transform: scale(1.08); opacity: 1; }
.anime-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px 16px; }
.anime-card-title { font-family: var(--font-display); font-size: 26px; color: #fff; letter-spacing: 0.05em; margin-bottom: 6px; text-transform: uppercase; line-height: 1.1; }
.anime-card-btn { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 4px; transition: transform 0.3s; }
.anime-card:hover .anime-card-btn { transform: translateX(5px); color: #fff; }

/* ===== 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: var(--bg); }
.sub-category-section:nth-of-type(even) { background: var(--bg-alt); }
.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: var(--bg-card); 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.2); 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: 40px 60px; background: var(--bg); }
.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: var(--bg-card); color: var(--text); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.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; width: 280px; max-width: 280px; flex: 0 0 auto; }

/* ===== HERO MODEL (Preserved / Repositioned) ===== */
.hero-wrapper { width: 100%; position: relative; background: var(--bg-alt); }
.hero-pinned { width: 100%; height: 100vh; overflow: hidden; position: relative; display: flex; flex-direction: column; background: var(--bg-alt); }
.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: 40px 60px; background: var(--bg); }
.product-showcase.best-selling { background: var(--bg-alt); }
.showcase-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.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: var(--bg-card); 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: #fff; color: #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: var(--bg-alt); color: var(--text); }
.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){
  .premium-hero { min-height: 500px; }

  .anime-grid { grid-template-columns: repeat(3, 1fr); }
  .anime-card-title { font-size: 22px; }
  .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; }
  .premium-hero { min-height: 450px; }
  .hero-title-main { font-size: clamp(42px, 12vw, 56px); margin-bottom: 24px; }
  .hero-actions { flex-direction: row; width: 100%; padding: 0; gap: 12px; justify-content: center; }
  .hero-btn { width: 50%; text-align: center; padding: 15px 10px; font-size: 12px; }
  .anime-collections { padding: 20px; }
  .anime-collections-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .anime-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .anime-card-title { font-size: 18px; }
  .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; }
  .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: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  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 var(--border);
  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: var(--bg-alt);
}
.search-result-img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-alt);
  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: 80px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== NEW HOMEPAGE SECTIONS (Sample Design) ===== */

/* Section Headers */
.sec-header-wrapper { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.sec-header-wrapper .sec-header { margin-bottom: 0; text-align: left; }
@media(max-width: 768px) {
  .sec-header-wrapper { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
}
.sec-header { text-align: center; margin-bottom: 40px; display: flex; flex-direction: column; gap: 8px; }
.sec-header h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: 0.05em; color: var(--text); line-height: 1; }
.sec-header p { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-light); text-transform: uppercase; }
.sec-header.left-align { text-align: left; }
.red-title h2 { color: #e63946; }

/* Shop By Category */
.shop-category-sec { padding: 60px 40px; background: var(--bg); max-width: 1400px; margin: 0 auto; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.cat-card { background: var(--bg-card); border-radius: 16px; padding: 0; text-align: center; border: 1px solid var(--border); transition: transform 0.4s, box-shadow 0.4s; display: flex; flex-direction: column; overflow: hidden; }
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: transparent; }
.cat-img-wrap { width: 100%; aspect-ratio: 1; background: var(--bg-alt); overflow: hidden; position: relative; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-title { font-size: 15px; font-weight: 700; color: var(--text); padding: 16px 12px; margin: 0; letter-spacing: 0.03em; }

/* Shop By Collection */
.shop-collection-sec { padding: 60px 40px; background: var(--bg-alt); max-width: 1400px; margin: 0 auto; }
.collection-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.col-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 9/16; background-size: cover; background-position: center; transition: transform 0.4s; display: block; }
.col-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.col-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 30%, transparent 70%); display: flex; align-items: flex-end; justify-content: flex-start; text-align: left; padding: 24px 20px; transition: background 0.3s; }
.col-card:hover .col-overlay { background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, transparent 80%); }
.col-text { display: flex; flex-direction: column; gap: 6px; width: 100%; transform: translateY(0); transition: 0.3s; }
.col-subtitle { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #fff; text-transform: uppercase; }
.col-title { font-family: var(--font-display); font-size: 28px; line-height: 1.1; color: #fff; letter-spacing: 0.05em; margin: 0; text-transform: uppercase; }
.col-desc { font-size: 13px; color: #ddd; line-height: 1.4; margin-bottom: 12px; font-weight: 500; }
.col-btn { display: inline-block; padding: 10px 20px; background: #fff; color: #111; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 6px; border: none; align-self: flex-start; transition: 0.3s; }
.col-card:hover .col-btn { background: var(--text); color: #fff; }

/* Exclusive Collections */
.exclusive-sec { padding: 60px 40px; background: var(--bg); max-width: 1400px; margin: 0 auto; }
.exclusive-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.exclusive-grid { display: grid; gap: 16px; }
.exclusive-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.exclusive-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.exclusive-grid.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 0 40px; }
.exclusive-grid a { display: block; text-decoration: none; }
.exc-img-wrap { border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; background: transparent; margin-bottom: 12px; }
.exc-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); image-rendering: high-quality; }
.exclusive-grid a:hover .exc-img-wrap img { transform: scale(1.05); }
.exc-title { font-size: 16px; font-weight: 600; color: var(--text); text-align: center; font-family: var(--font-display); letter-spacing: 0.05em; transition: color 0.3s; }
.exclusive-grid a:hover .exc-title { color: var(--accent); }

/* Why Choose ZetaStyle (Premium White Theme) */
.why-choose-sec { padding: 80px 40px; background: var(--bg-alt); color: var(--text); max-width: 100%; border-top: 1px solid var(--border); }
.why-choose-sec .sec-header { max-width: 1400px; margin: 0 auto 50px; }
.why-choose-sec .sec-header h2 { color: var(--text); }
.why-choose-sec .sec-header p { color: var(--text-light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto; }
.feature-item { display: flex; align-items: flex-start; gap: 20px; background: var(--bg-card); border: 1px solid var(--border); padding: 32px; border-radius: 16px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.feature-item:hover { transform: translateY(-8px); border-color: rgba(230, 57, 70, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.feature-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.feature-item:hover::before { transform: scaleX(1); }
.icon-wrap { width: 56px; height: 56px; background: rgba(230, 57, 70, 0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: 0.4s; }
.feature-item:hover .icon-wrap { background: var(--accent); transform: scale(1.05); }
.feature-item:hover .icon-wrap svg { stroke: #fff; }
.icon-wrap svg { width: 28px; height: 28px; stroke: var(--accent); transition: 0.4s; }
.feature-text h4 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.05em; }
.feature-text p { font-size: 14px; color: var(--text-light); line-height: 1.5; margin: 0; font-weight: 500; }

/* Customer Reviews */
.reviews-sec { padding: 60px 40px; background: var(--bg); max-width: 1400px; margin: 0 auto; border-top: 1px solid var(--border); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.reviews-title-wrap { display: flex; flex-direction: column; gap: 8px; }
.reviews-title-wrap h2 { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.05em; margin: 0; line-height: 1; }
.reviews-rating { font-size: 14px; font-weight: 600; color: var(--text-light); display: flex; align-items: center; }
.reviews-marquee-wrap { width: 100%; overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.reviews-marquee { display: flex; gap: 20px; width: max-content; animation: scrollReviews 35s linear infinite; }
.reviews-marquee:hover { animation-play-state: paused; }
@keyframes scrollReviews { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 10px)); } }
.review-card { width: 320px; flex-shrink: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.review-user { display: flex; align-items: center; gap: 12px; }
.review-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--bg-alt); }
.review-meta h4 { font-size: 14px; font-weight: 700; color: var(--text); margin: 0; }
.verified { font-size: 11px; color: var(--text-light); display: block; margin-top: 2px; }
.stars { color: #f59e0b; font-size: 14px; margin-top: 4px; letter-spacing: 2px; }
.review-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Responsive adjustments */
@media(max-width: 1200px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .exclusive-wrap { grid-template-columns: 1fr; gap: 60px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 768px) {
  .desktop-hero-img { display: none !important; }
  .mobile-hero-img { display: block !important; }
  
  .premium-hero-overlay {
    display: block !important;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.6) 100%) !important;
  }
  
  .hero-title-main {
    text-shadow: 0 6px 30px rgba(0,0,0,1), 0 2px 12px rgba(0,0,0,0.9), 0 0 5px rgba(0,0,0,0.8) !important;
  }
  .hero-text-mobile { 
    color: #ffffff !important; 
  }
  
  .hero-btn.secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
  }
  
  .shop-category-sec, .shop-collection-sec, .exclusive-sec, .why-choose-sec, .reviews-sec { padding: 40px 16px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .col-title { font-size: 24px; }
  .col-desc { font-size: 12px; margin-bottom: 10px; }
  .col-overlay { padding: 20px 16px; }
  .col-btn { padding: 8px 16px; font-size: 10px; }
  .exclusive-grid.grid-3, .exclusive-grid.grid-4, .exclusive-grid.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; }
  .features-grid { 
    display: flex; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 16px; 
    padding-bottom: 20px; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .features-grid .feature-item { 
    min-width: 80%; 
    scroll-snap-align: center; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    padding: 30px 20px; 
    gap: 16px; 
  }
  .features-grid .icon-wrap { width: 48px; height: 48px; }
  .features-grid .icon-wrap svg { width: 24px; height: 24px; }
  .features-grid .feature-text h4 { font-size: 24px; margin-bottom: 6px; }
  .features-grid .feature-text p { font-size: 15px; line-height: 1.5; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  body { padding-bottom: 70px; } /* Space for bottom nav */
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 65px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.mb-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-light);
  text-decoration: none;
  flex: 1;
  height: 100%;
  transition: color 0.3s;
}
.mb-nav-item svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  transition: transform 0.3s;
}
.mb-nav-item span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mb-nav-icon-wrap {
  position: relative;
  display: inline-flex;
}
.mb-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;
}
.mb-nav-item.active {
  color: var(--accent);
}
.mb-nav-item.active svg {
  transform: translateY(-2px);
  stroke: var(--accent);
}

@media(max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}
