/** Shopify CDN: Minification failed

Line 527:64 Unexpected "}"

**/
/* ─────────────────────────────────────────────────
   APPLE-STYLE SHOPIFY THEME — theme.css
   ───────────────────────────────────────────────── */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --border: #d2d2d7;
  --nav-h: 52px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-w: 1200px;
  --shadow-card: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
}

html { font-family: var(--font); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
img { display: block; max-width: 100%; height: auto; }
* { text-wrap: pretty; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Announcement Bar ── */
.announcement-bar { padding: 10px 24px; text-align: center; }
.announcement-text { font-size: 13px; font-weight: 500; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background var(--transition);
}
.site-header.scrolled { background: rgba(255,255,255,0.92); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 22px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { display: flex; align-items: center; }
.header-logo-text { color: #1d1d1f; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.header-logo img { height: calc(var(--nav-h, 60px) * 0.9); width: auto; max-height: 54px; }
.header-nav { display: flex; gap: 0; }
.header-nav-link {
  color: #1d1d1f; font-size: 12px; padding: 0 12px; height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.header-nav-link:hover,
.header-nav-link.active { color: #fff; border-bottom-color: #f5f5f7; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-icon-btn { color: #f5f5f7; display: flex; align-items: center; justify-content: center; position: relative; padding: 4px; transition: opacity 0.2s; }
.header-icon-btn:hover { opacity: 0.75; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: #fff;
  border-radius: 50%; width: 16px; height: 16px;
  font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.mobile-menu-toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: calc(var(--nav-h) + 44px); left: 0; right: 0; bottom: 0; z-index: 998;
  background: rgba(29,29,31,0.97); backdrop-filter: blur(20px);
  padding: 24px; overflow: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  color: #f5f5f7; font-size: 20px; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
}

/* Search bar */
.search-bar {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 997;
  background: rgba(29,29,31,0.97); backdrop-filter: blur(20px);
  padding: 16px 24px;
}
.search-bar.open { display: block; }
.search-form { max-width: 600px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.search-input {
  flex: 1; background: rgba(255,255,255,0.1); border: none; border-radius: var(--radius-sm);
  padding: 10px 16px; color: #f5f5f7; font-size: 15px; font-family: var(--font);
  outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.4); }
.search-submit { color: #f5f5f7; display: flex; }

/* ── Page offset for fixed header ── */
main#main-content { padding-top: var(--nav-h); }

/* ── Hero ── */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-slider { width: 100%; position: relative; }
.hero-slide {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 24px 72px; text-align: center;
  min-height: calc(100svh - var(--nav-h));
  transition: background 0.8s ease;
}
.hero-slide.active { display: flex; }
.hero-image { width: min(480px, 90%); height: min(300px, 45vw); object-fit: contain; margin-bottom: 40px; }
.hero-image-placeholder {
  width: min(480px, 90%); height: min(300px, 45vw);
  background: rgba(0,0,0,0.04); border-radius: 24px; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
  font-family: monospace; font-size: 12px; color: rgba(0,0,0,0.25); letter-spacing: 1px;
}
.hero-eyebrow { font-size: clamp(14px, 2vw, 17px); font-weight: 500; margin-bottom: 8px; letter-spacing: -0.01em; }
.hero-title { font-size: clamp(36px, 7vw, 80px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.0; max-width: 700px; margin-bottom: 12px; }
.hero-subtitle { font-size: clamp(17px, 2.5vw, 24px); margin-bottom: 36px; opacity: 0.7; }
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot {
  height: 8px; border-radius: 4px; border: none; cursor: pointer;
  transition: width 0.3s, background 0.3s;
  width: 8px; background: rgba(0,0,0,0.2);
}
.hero-dot.active { width: 20px; }

/* ── Buttons ── */
.btn {
  border-radius: 980px; padding: 12px 28px; font-size: 17px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn:hover { opacity: 0.85; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; border: none; }
.btn-outline { background: transparent; border: 1.5px solid currentColor; }
.btn-full { width: 100%; border-radius: var(--radius-sm); }

/* ── Section helpers ── */
.section-alt { background: var(--bg-alt); padding: 72px 0; }
.section-white { background: var(--bg); padding: 56px 0; }
.section-header { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.section-title { font-size: clamp(24px, 4vw, 48px); font-weight: 700; letter-spacing: -0.03em; }
.section-subtitle { color: var(--text-secondary); font-size: 17px; flex: 1; }
.section-link { color: var(--accent); font-size: 14px; font-weight: 500; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ── Product Card ── */
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover); border-color: #c7c7cc; transform: translateY(-2px);
}
.product-card-image-link { display: block; }
.product-card-image-wrap {
  aspect-ratio: 1/1; background: var(--bg-alt);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-card-image {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity 0.3s;
}
.product-card-image-hover {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-card-image-hover { opacity: 1; }
.product-card:hover .product-card-image:not(.product-card-image-hover) { opacity: 0; }
.product-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: monospace; font-size: 10px; color: rgba(0,0,0,0.28); letter-spacing: 1px; text-align: center; padding: 8px; line-height: 1.6;
}
.product-card-image-placeholder.large { aspect-ratio: 1/1; height: auto; font-size: 13px; }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 6px; letter-spacing: 0.3px;
}
.badge-new { background: #1d1d1f; }
.badge-sale { background: #ff3b30; }
.badge-sold-out { background: #6e6e73; }
.product-card-info { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card-vendor { font-size: 11px; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase; }
.product-card-title { font-size: 13.5px; font-weight: 500; color: var(--text); line-height: 1.4; flex: 1; }
.product-card-title:hover { color: var(--accent); }
.product-card-price { display: flex; align-items: baseline; gap: 6px; margin-top: 2px; }
.price-compare { font-size: 12px; color: var(--text-secondary); text-decoration: line-through; }
.price-current { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.price-current.large { font-size: 28px; }
.btn-add-to-cart {
  margin-top: 4px; background: var(--accent); color: #fff;
  border-radius: var(--radius-sm); padding: 9px 0; font-size: 13px; font-weight: 600;
  width: 100%; transition: background 0.2s, transform 0.1s;
}
.btn-add-to-cart:hover { background: var(--accent-hover); }
.btn-add-to-cart:active { transform: scale(0.97); }
.btn-add-to-cart:disabled { background: var(--border); color: var(--text-secondary); cursor: not-allowed; }
.btn-add-to-cart.added { background: #34c759; }

/* Placeholder shimmer */
.placeholder-line { background: #e8e8ed; border-radius: 4px; height: 14px; }

/* ── Product rating stars ── */
.product-card-rating, .product-page-rating { display: flex; align-items: center; gap: 6px; }
.stars { position: relative; display: inline-flex; }
.stars-filled, .stars-empty { display: flex; gap: 2px; }
.stars-filled {
  position: absolute; top: 0; left: 0; overflow: hidden;
  width: calc(var(--rating) / 5 * 100%);
}
.stars-filled::before, .stars-empty::before {
  content: "★★★★★";
  font-size: 13px; letter-spacing: 1px;
}
.stars-filled::before { color: #f5a623; }
.stars-empty::before { color: #d2d2d7; }
.stars { font-size: 0; }
.stars::before { content: "★★★★★"; font-size: 13px; letter-spacing: 1px; color: #d2d2d7; }
.stars::after {
  content: "★★★★★"; font-size: 13px; letter-spacing: 1px; color: #f5a623;
  position: absolute; top: 0; left: 0; overflow: hidden;
  width: calc(var(--rating) / 5 * 100%);
}
.rating-count { font-size: 11px; color: var(--text-secondary); }

/* ── Category Shelf ── */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.category-card {
  background: var(--bg-alt); border-radius: 16px; padding: 28px 16px 20px;
  display: flex; flex-direction: column; align-items: flex-start;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: left;
}
.category-card:hover { border-color: #c7c7cc; transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.category-card-image { width: 100%; height: 80px; object-fit: contain; margin-bottom: 12px; }
.category-card-title { font-size: 17px; font-weight: 700; color: var(--text); display: block; margin-bottom: 4px; }
.category-card-desc { font-size: 12px; color: var(--text-secondary); }
.category-card-cta { margin-top: 16px; color: var(--accent); font-size: 13px; font-weight: 500; }

/* ── Promo Banners ── */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.promo-banner { border-radius: 20px; padding: 40px 36px; display: flex; flex-direction: column; gap: 8px; min-height: 180px; }
.promo-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; letter-spacing: -0.02em; }
.promo-subtitle { font-size: 14px; opacity: 0.65; max-width: 280px; }
.promo-link { margin-top: 12px; font-size: 14px; font-weight: 500; }
.promo-link:hover { text-decoration: underline; }

/* ── Collection page ── */
.collection-hero { padding: 56px 0 40px; }
.collection-title { font-size: clamp(32px, 5vw, 60px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 8px; }
.collection-desc { color: var(--text-secondary); font-size: 17px; max-width: 600px; }
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.collection-count { font-size: 14px; color: var(--text-secondary); }
.collection-sort { display: flex; align-items: center; gap: 8px; }
.sort-label { font-size: 13px; color: var(--text-secondary); }
.sort-select {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 6px 12px; font-size: 13px; font-family: var(--font);
  background: var(--bg); color: var(--text); cursor: pointer;
}
.empty-state { color: var(--text-secondary); font-size: 16px; padding: 48px 0; }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 48px 0 32px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  font-size: 14px; border: 1px solid var(--border);
  transition: background 0.2s;
}
.pagination a:hover { background: var(--bg-alt); }
.pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── Product Page ── */
.product-page { padding: 48px 0 80px; }
.product-page-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.product-gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-alt); }
.gallery-main-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb {
  width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; transition: border-color 0.2s;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-vendor { font-size: 12px; color: var(--text-secondary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.product-title { font-size: clamp(24px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.product-page-rating { margin-bottom: 16px; }
.product-page-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.product-variants { margin-bottom: 24px; display: flex; flex-direction: column; gap: 16px; }
.variant-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.variant-label strong { color: var(--text); }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 6px 14px; font-size: 14px; font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.variant-btn:hover { border-color: var(--text); }
.variant-btn.selected { border-color: var(--text); background: var(--text); color: #fff; }
.product-qty-row { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.qty-selector {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn { width: 40px; height: 44px; font-size: 20px; color: var(--text); transition: background 0.15s; }
.qty-btn:hover { background: var(--bg-alt); }
.qty-input {
  width: 52px; height: 44px; text-align: center; font-size: 15px; font-family: var(--font);
  border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  outline: none;
}
.product-description { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
.product-description p { margin-bottom: 12px; }
.product-meta { font-size: 13px; color: var(--text-secondary); display: flex; flex-direction: column; gap: 4px; }
.product-meta span { font-weight: 600; color: var(--text); }
.related-section { padding: 64px 0 0; }

/* ── Cart Toast ── */
.cart-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #1d1d1f; color: #f5f5f7;
  border-radius: 12px; padding: 14px 20px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 300px;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cart-toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }

/* ── Footer ── */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 40px 0 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col-title { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 12px; letter-spacing: -0.01em; }
.footer-link { display: block; font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; transition: color 0.15s; }
.footer-link:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--text-secondary); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-link-small { font-size: 12px; color: var(--text-secondary); transition: color 0.15s; }
.footer-link-small:hover { color: var(--text); }

/* ── RTE (Rich Text) ── */
.rte h1, .rte h2, .rte h3 { font-weight: 700; margin-bottom: 12px; }
.rte p { margin-bottom: 12px; line-height: 1.7; }
.rte ul, .rte ol { padding-left: 20px; margin-bottom: 12px; }
.rte a { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-page-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex !important; }
  :root { --nav-h: 48px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .hero-slide { padding: 48px 20px 64px; }
  .promo-banner { padding: 28px 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { letter-spacing: -0.02em; }
  .btn { font-size: 15px; padding: 10px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================
   APPLE-STYLE COLOR OVERRIDES
      Palette: apple.com
         ============================================ */

         /* Footer - override dark slate colors */
         .site-footer {
           background: #f5f5f7 !important;
             color: #1d1d1f !important;
             }
             .footer-bottom {
               background: #e8e8ed !important;
                 border-color: #d2d2d7 !important;
                   color: #6e6e73 !important;
                   }
                   .footer-heading { color: #1d1d1f !important; }
                   .footer-link { color: #6e6e73 !important; }
                   .footer-link:hover { color: #0071e3 !important; }
                   .footer-bottom-text { color: #6e6e73 !important; }

                   /* Header - Apple white/transparent style */
                   .site-header {
                     background: rgba(255,255,255,0.85) !important;
                       backdrop-filter: saturate(180%) blur(20px);
                         -webkit-backdrop-filter: saturate(180%) blur(20px);
                           border-bottom: 1px solid #d2d2d7 !important;
                             color: #1d1d1f !important;
                             }
                             .site-header.scrolled {
                               background: rgba(255,255,255,0.92) !important;
                               }
                               .header-logo-text { color: #1d1d1f !important; }
                               .header-nav-link { color: #1d1d1f !important; }
                               .header-nav-link:hover { color: #0071e3 !important; }
                               .header-icon-btn { color: #1d1d1f !important; }
                               .mobile-menu { background: #ffffff !important; }
                               .mobile-menu-link { color: #1d1d1f !important; }

                               /* Announcement bar - Apple blue */
                               .announcement-bar {
                                 background: #0071e3 !important;
                                   color: #ffffff !important;
                                   }

                                   /* Body & General */
                                   body {
                                     background: #ffffff !important;
                                       color: #1d1d1f !important;
                                       }

                                       /* Buttons */
                                       .btn-primary, .btn {
                                         background: #0071e3 !important;
                                           color: #ffffff !important;
                                             border-color: #0071e3 !important;
                                             }
                                             .btn-primary:hover, .btn:hover {
                                               background: #0077ed !important;
                                                 border-color: #0077ed !important;
                                                 }
                                                 .btn-outline {
                                                   background: transparent !important;
                                                     color: #0071e3 !important;
                                                       border-color: #0071e3 !important;
                                                       }

                                                       /* Price colors */
                                                       .product-price, .price { color: #1d1d1f !important; }
                                                       .price-sale { color: #bf4800 !important; }

                                                       /* Category cards */
                                                       .category-card {
                                                         background: #f5f5f7 !important;
                                                           border-color: #d2d2d7 !important;
                                                           }
                                                           .category-card:hover { background: #e8e8ed !important; }
                                                           .category-name { color: #1d1d1f !important; }
                                                           .category-desc { color: #6e6e73 !important; }

                                                           /* Section backgrounds */
                                                           .section-alt { background: #f5f5f7 !important; }
                                                           .section-white { background: #ffffff !important; }

                                                           /* Product cards */
                                                           .product-card {
                                                              background: #ffffff !important;
                                                                border-color: #d2d2d7 !important;
                                                                }
                                                                .product-card:hover { border-color: #0071e3 !important; }
                                                                .product-title { color: #1d1d1f !important; }
                                                                .product-vendor { color: #6e6e73 !important; }

                                                                /* Hero/Slideshow */
                                                                .hero-slide { background: #f5f5f7 !important; }
                                                                .hero-title { color: #1d1d1f !important; }
                                                                .hero-subtitle { color: #6e6e73 !important; }

                                                                /* Forms & Search */
                                                                .search-input {
                                                                    background: #f5f5f7 !important;
                                                                      border-color: #d2d2d7 !important;
                                                                        color: #1d1d1f !important;
                                                                        }
                                                                        .search-input:focus { border-color: #0071e3 !important; }

                                                                        /* Badges */
                                                                        .badge-new { background: #0071e3 !important; color: #fff !important; }
                                                                        .badge-sale { background: #bf4800 !important; color: #fff !important; }
                                                                }
                                                           }

/* Header icon/nav fixes for white header */
.header-icon-btn { color: #1d1d1f !important; }
.header-icon-btn:hover { color: #0071e3 !important; opacity: 1 !important; }
.header-nav-link { color: #1d1d1f !important; }
.header-nav-link:hover { color: #0071e3 !important; border-bottom-color: #0071e3 !important; }
.header-nav-link.active { color: #0071e3 !important; border-bottom-color: #0071e3 !important; }
.mobile-menu-toggle { color: #1d1d1f !important; }

/* ============ ANNOUNCEMENT BAR FIXES ============ */
/* Position announcement bar below fixed header */
.announcement-bar {
  position: fixed !important;
  top: var(--nav-h, 60px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 998 !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #1d1d1f !important;
  padding: 10px 24px !important;
}
.announcement-text { color: #1d1d1f !important; }
.ann-logo-text { color: #1d1d1f !important; }
.ann-cta-btn { color: #0071e3 !important; background: transparent !important; border: 1px solid #0071e3 !important; }

/* Add padding-top to body content to account for header + announcement bar */
main#main-content {
  padding-top: calc(var(--nav-h, 60px) + 44px) !important;
  margin-top: 0 !important;
}

/* ============ FOOTER TEXT COLOR FIX ============ */
.site-footer { color: #1d1d1f !important; }
.site-footer * { color: #1d1d1f !important; }
.footer-heading { color: #1d1d1f !important; }
.footer-link { color: #6e6e73 !important; }
.footer-link:hover { color: #1d1d1f !important; }
.footer-bottom-text { color: #6e6e73 !important; }
.footer-bottom-link { color: #6e6e73 !important; }
.footer-bottom-link:hover { color: #1d1d1f !important; }

/* ============ FOOTER SPECIFIC CLASS FIXES ============ */
.footer-brand-name { color: #1d1d1f !important; }
.footer-tagline { color: #6e6e73 !important; }
.footer-contact-link { color: #6e6e73 !important; }
.footer-contact-link:hover { color: #0071e3 !important; }
.footer-col-heading { color: #1d1d1f !important; }
.footer-nav-link { color: #6e6e73 !important; }
.footer-nav-link:hover { color: #0071e3 !important; }
.trust-item strong { color: #1d1d1f !important; }
.trust-item span { color: #6e6e73 !important; }
.footer-copy { color: #6e6e73 !important; }
.footer-copy strong { color: #1d1d1f !important; }
.footer-legal-link { color: #6e6e73 !important; }
.footer-legal-link:hover { color: #1d1d1f !important; }
.footer-logo-img { filter: none !important; }

/* ============ LANGUAGE SWITCHER FLAGS ============ */
.language-switcher { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.language-switcher select { background: transparent; border: 1px solid rgba(0,0,0,0.15); border-radius: 6px; padding: 3px 6px; font-size: 13px; color: #1d1d1f; cursor: pointer; }

/* ============ DROPDOWN MENU Z-INDEX FIX ============ */
.nav-dropdown { z-index: 1000 !important; top: calc(var(--nav-h, 60px) + 44px) !important; }
.site-header { z-index: 999 !important; }
.announcement-bar { z-index: 998 !important; }

/* ============ MOBILE OPTIMIZATION ============ */
@media (max-width: 768px) {
  .header-inner { padding: 0 12px; gap: 8px; }
  .header-logo-text { font-size: 16px !important; }
  .header-logo img { height: calc(var(--nav-h, 50px) * 0.85) !important; }
  :root { --nav-h: 50px; }
  .announcement-bar { font-size: 11px; padding: 6px 12px; }
  main#main-content { padding-top: calc(var(--nav-h, 50px) + 38px) !important; }
  .footer-container { grid-template-columns: 1fr !important; gap: 24px; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .nav-dropdown { position: fixed !important; top: calc(var(--nav-h, 50px) + 38px) !important; left: 0 !important; right: 0 !important; width: 100% !important; max-height: 70vh; overflow-y: auto; }
}

@media (max-width: 480px) {
      .header-logo-text { display: inline; }
  .header-actions { gap: 6px; }
}

/* ============ ANNOUNCEMENT BAR SIMPLIFIED STRUCTURE ============ */
.announcement-bar-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  padding: 0 24px !important;
  height: 100% !important;
}
.announcement-center {
  flex: 1 !important;
  text-align: center !important;
}
.announcement-right {
  flex-shrink: 0 !important;
}
.announcement-text {
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.ann-cta-btn {
  font-size: 12px !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

/* ============ LANGUAGE SWITCHER STYLING ============ */
.lang-select {
  font-size: 13px !important;
  color: #1d1d1f !important;
  background: transparent !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  cursor: pointer !important;
  min-width: 64px !important;
}

/* ============ MOBILE MENU POSITIONING FIX ============ */
.mobile-nav {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 997 !important;
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(20px) !important;
  padding: 16px 24px !important;
  display: none;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}
.mobile-nav.open { display: block !important; }