/** Shopify CDN: Minification failed

Line 1326:29 Expected identifier but found whitespace
Line 1550:0 Expected "}" to go with "{"

**/
/* ============================================
   SMAXCASE — PREMIUM DARK THEME
   Premium Phone Cases E-Commerce Store
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --bg-glass: rgba(255,255,255,0.04);
  --bg-glass-hover: rgba(255,255,255,0.08);
  --border-color: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent: #ffffff;
  --accent-red: #ff3b3b;
  --accent-green: #00c853;
  --accent-gold: #d4a853;
  --whatsapp-green: #25D366;
  --sale-badge: #000000;
  --sale-badge-text: #ffffff;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;
  --container-max: 1400px;
  --section-gap: clamp(40px, 6vw, 80px);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(255,255,255,0.05);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-primary); background: var(--bg-primary); color: var(--text-primary); line-height: 1.5; overflow-x: hidden; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

/* === ANNOUNCEMENT BAR — SINGLE LINE MARQUEE TICKER === */
.announcement-bar {
  background: linear-gradient(90deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.announcement-bar::before,
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.announcement-bar::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}
.announcement-bar::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}
.announce-content {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: marquee-scroll 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.announce-content span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  padding: 0 30px;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.header.scrolled { background: rgba(0,0,0,0.95); }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}
.header-logo img { height: 32px; width: auto; }
.header-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.header-logo-text span { font-weight: 300; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav-left { justify-self: start; }
.header-actions { justify-self: end; }
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.header-nav a:hover { color: var(--text-primary); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}
.header-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; justify-self: end; }
.header-action-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.header-action-btn:hover { color: var(--text-primary); background: var(--bg-glass-hover); }
.header-action-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--accent-red);
  color: #fff; font-size: 10px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn { display: none; }
.mobile-menu-btn-left { order: -1; }
.hamburger { width: 22px; height: 16px; position: relative; }
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-primary);
  position: absolute; left: 0;
  transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* === COLLECTION BANNER (iPhone 17) === */
.collection-banner {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}
.collection-banner a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.collection-banner a:hover { color: var(--text-primary); }
.collection-banner a svg { width: 16px; height: 16px; transition: transform 0.3s; }
.collection-banner a:hover svg { transform: translateX(4px); }

/* === NEW ARRIVAL SECTION === */
.new-arrival { padding: var(--section-gap) 0; }
.section-header {
  margin-bottom: clamp(24px, 3vw, 40px);
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
  text-align: center;
}
.section-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* === PRODUCT CAROUSEL === */
.product-carousel-wrapper { position: relative; }
.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.product-carousel::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  min-width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-glass);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--sale-badge);
  color: var(--sale-badge-text);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-color);
}
.product-card-info { padding: 18px 18px 14px; }
.product-card-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-pricing { display: flex; flex-direction: column; gap: 2px; }
.product-card-compare {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}
.product-card-price .from { font-size: 14px; font-weight: 400; }

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: var(--transition);
  background: transparent;
}
.carousel-btn:hover { border-color: var(--text-primary); color: var(--text-primary); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-counter { display: none; }

/* === FEATURED BANNER === */
.featured-banner {
  padding: var(--section-gap) 0;
}
.featured-banner-inner {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
  border: 1px solid var(--border-color);
}
.featured-banner-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-banner-centered .featured-banner-content {
  text-align: center;
  align-items: center;
}
.featured-banner-centered .featured-banner-desc {
  margin-left: auto;
  margin-right: auto;
}
.featured-banner-centered .featured-banner-features {
  align-items: center;
}
.featured-banner-content {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-banner-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.featured-banner-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.featured-banner-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}
.featured-banner-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.featured-banner-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.featured-banner-features li svg { width: 18px; height: 18px; color: var(--accent-green); flex-shrink: 0; }
.featured-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 14px 32px;
  border: 1.5px solid var(--text-primary);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  background: transparent;
  width: fit-content;
}
.featured-banner-cta:hover { background: var(--text-primary); color: var(--bg-primary); }
/* Featured banner image removed - centered layout */

/* === DISCOUNT BADGE ON PRODUCT IMAGES === */
.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-red);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  line-height: 1.3;
}

/* === ADD TO CART BUTTON ON PRODUCT CARDS === */
.product-card-atc {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: auto;
}
.product-card-atc:hover {
  opacity: 0.9;
}
.product-card-atc-form {
  margin-top: auto;
}
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-pricing {
  margin-top: auto;
}

/* === COLLECTIONS GRID === */
.collections-section { padding: var(--section-gap) 0; }
.collections-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}
.collections-header .section-title { margin-bottom: 0; text-align: center; }
.section-subtitle.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.view-all-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.view-all-link:hover { color: var(--text-primary); }
.view-all-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.view-all-link:hover svg { transform: translateX(4px); }

/* === PREMIUM CASES SECTION === */
.premium-section { padding: var(--section-gap) 0; }

/* === PROMO CODE BAR === */
.promo-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--section-gap) auto;
  max-width: var(--container-max);
}
.promo-bar-text {
  font-size: 15px;
  color: var(--text-secondary);
}
.promo-bar-text strong { color: var(--text-primary); font-weight: 700; }
.promo-bar-code {
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo-code {
  background: var(--bg-glass-hover);
  border: 1px dashed var(--border-hover);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}
.promo-copy-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.promo-copy-btn:hover { opacity: 0.85; }

/* === NEWSLETTER === */
.newsletter-section {
  padding: var(--section-gap) 0;
  text-align: center;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.newsletter-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: var(--border-hover); }
.newsletter-btn {
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { opacity: 0.85; }

/* === FOOTER === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { height: 28px; width: auto; }
.footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { color: var(--text-primary); border-color: var(--text-primary); }
.social-link svg { width: 16px; height: 16px; }
.footer-column h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text-primary); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; font-size: 13px; color: var(--text-muted);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright { font-size: 12px; color: var(--text-muted); }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments svg { width: 38px; height: 24px; opacity: 0.5; }

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 998;
}
.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn svg { width: 28px; height: 28px; }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 160px;
  right: 30px;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 50px rgba(0,0,0,0.3);
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.whatsapp-popup-header {
  background: var(--whatsapp-green);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-popup-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.whatsapp-popup-info h4 { color: #fff; font-size: 14px; font-weight: 600; }
.whatsapp-popup-info p { color: rgba(255,255,255,0.8); font-size: 12px; }
.whatsapp-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: pointer;
}
.whatsapp-popup-close:hover { opacity: 1; }
.whatsapp-popup-body {
  padding: 20px;
  background: #ECE5DD;
}
.whatsapp-popup-msg {
  background: #fff;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  position: relative;
  max-width: 90%;
}
.whatsapp-popup-msg::after {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.whatsapp-popup-msg .time {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}
.whatsapp-popup-footer {
  padding: 12px 20px;
  background: #fff;
}
.whatsapp-popup-footer a {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--whatsapp-green);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.whatsapp-popup-footer a:hover { background: #20BA5C; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--text-primary); color: var(--bg-primary); }
.back-to-top svg { width: 20px; height: 20px; }

/* === CART PAGE — ENHANCED === */
.cart-page { padding: var(--section-gap) 0; min-height: 60vh; }
.cart-page .section-title { margin-bottom: 8px; }
.cart-items-count { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.cart-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  animation: fadeInUp 0.4s ease forwards;
}
.cart-item-image {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.cart-item-variant { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 8px;
}
.cart-item-qty button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  background: var(--bg-glass);
  transition: var(--transition-fast);
}
.cart-item-qty button:hover { background: var(--bg-glass-hover); color: var(--text-primary); }
.cart-item-qty span {
  width: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.cart-item-price { font-size: 18px; font-weight: 700; text-align: right; white-space: nowrap; }
.cart-item-remove {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  display: inline-block;
  transition: var(--transition-fast);
}
.cart-item-remove:hover { color: var(--accent-red); }

.cart-summary {
  margin-top: 32px;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.cart-summary-row.total {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 8px;
}
.cart-summary-row.total span:last-child { font-size: 24px; font-weight: 800; }
.cart-summary-label { font-size: 14px; color: var(--text-secondary); }
.cart-summary-value { font-size: 16px; font-weight: 600; }
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 18px;
  margin-top: 24px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.cart-checkout-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cart-continue-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: underline;
}
.cart-continue-link:hover { color: var(--text-primary); }

.cart-empty {
  text-align: center;
  padding: 80px 0;
}
.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-empty-icon svg { width: 36px; height: 36px; color: var(--text-muted); }
.cart-empty h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 32px; }

/* === PRODUCT PAGE — ENHANCED === */
.main-product { padding: var(--section-gap) 0; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}
.product-image-wrapper img { width: 100%; height: auto; display: block; }
.product-info { position: sticky; top: 100px; }
.product-vendor { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.product-title-main { font-size: clamp(24px, 3vw, 36px); font-weight: 800; text-transform: uppercase; margin-bottom: 16px; line-height: 1.15; }
.product-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.product-price-compare { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.product-price-current { font-size: 28px; font-weight: 700; }
.product-description { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.product-add-btn {
  width: 100%;
  padding: 18px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.product-add-btn:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }

/* === PAGE TEMPLATES (About, Contact, Shipping, Collections List) === */
.page-section {
  padding: var(--section-gap) 0;
  min-height: 60vh;
}
.page-hero {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
}
.page-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-input, .form-textarea {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit {
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--text-secondary); }
.contact-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.contact-card a:hover { color: var(--text-primary); }

/* About Page */
.about-content { max-width: 800px; margin: 0 auto; }
.about-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-value-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}
.about-value-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-glass-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.about-value-icon svg { width: 24px; height: 24px; color: var(--text-secondary); }
.about-value-card h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.about-value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Shipping Policy Page */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-block {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
  transition: var(--transition);
}
.policy-block:hover { border-color: var(--border-hover); }
.policy-block h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-block h3 svg { width: 20px; height: 20px; color: var(--accent-green); }
.policy-block p, .policy-block li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.policy-block ul { padding-left: 0; margin-top: 12px; }
.policy-block li { margin-bottom: 8px; padding-left: 20px; position: relative; }
.policy-block li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); }

/* Collections List Page */
.collections-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.collection-list-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.collection-list-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.collection-list-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-glass);
}
.collection-list-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.collection-list-card:hover .collection-list-card-image img { transform: scale(1.05); }
.collection-list-card-info { padding: 20px; }
.collection-list-card-info h3 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.collection-list-card-info p { font-size: 13px; color: var(--text-muted); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger animation for cards */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* Hover animations */
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-4px); }
.hover-glow { transition: var(--transition); }
.hover-glow:hover { box-shadow: var(--shadow-glow); }

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 1024px) {
  .product-card { flex: 0 0 calc(50% - 10px); }
  .featured-banner-inner { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-info { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .mobile-menu-btn-left { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; justify-self: start; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-logo { justify-self: center; }
  .product-card { flex: 0 0 calc(80% - 10px); min-width: 260px; }
  .promo-bar { flex-direction: column; gap: 16px; text-align: center; padding: 20px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .collections-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-values { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 80px; right: 20px; }
  .whatsapp-popup { bottom: 150px; right: 20px; width: 290px; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-price { width: 100%; text-align: left; margin-top: 8px; }
}

@media (max-width: 480px) {
  .product-card { flex: 0 0 85%; min-width: 240px; }
  .section-title { font-size: 28px; }
  .whatsapp-btn { width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .cart-item-image { width: 80px; height: 80px; }
}

/* === MOBILE NAV OVERLAY === */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-overlay a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
}
.mobile-nav-close svg { width: 24px; height: 24px; }

/* === HERO SLIDER === */.hero-slide-image { display: block; position: relative; right: auto; top: auto; transform: none; max-width: 100%; opacity: 1; margin-top: 16px; }

.hero-slider-section { width: 
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  box-sizing: border-box;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.hero-slide-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
  padding: 6px 18px;
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--radius-pill);
}
.hero-slide-title {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero-slide-desc {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--text-primary);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.hero-slide-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hero-slide-cta svg { width: 16px; height: 16px; }
.hero-slide-image {
  position: absolute;
  right: -20%;
  top: 35%;
  transform: translateX(-50%) translateY(-50%);
 
  max-width: 70%;
  z-index: 1;
  opacity: 100;
}
.hero-slide-image img { width: 100%; border-radius: var(--radius-lg); }

/* Slider dots and arrows removed - auto-slide only */

.hero-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-color);
  z-index: 5;
}
.hero-slider-progress-bar {
  height: 100%;
  width: 0%;

@media (max-width: 768px) {
  .hero-slide { min-height: 220px; padding: 32px 0 48px; }
  .hero-slide-image { display: none; }
}

/* === HOT SALE SECTION === */
.hot-sale-section { padding: var(--section-gap) 0; }
.hot-sale-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.hot-sale-fire { font-size: clamp(28px, 4vw, 42px); line-height: 1; }
.hot-sale-badge-row .section-title { margin-bottom: 0; }
.hot-badge {
  background: var(--accent-red) !important;
  color: #fff !important;
  border: none !important;
  animation: pulse-hot 2s ease-in-out infinite;
}
@keyframes pulse-hot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,59,59,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,59,59,0); }
}
.hot-sale-card { border-color: rgba(255,59,59,0.15); }
.hot-sale-card:hover { border-color: rgba(255,59,59,0.3); }

/* === CONTACT CTA CARD === */
.contact-cta-section { padding: var(--section-gap) 0; }
.contact-cta-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}
.contact-cta-card:hover { border-color: var(--border-hover); }
.contact-cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.contact-cta-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 14px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto 32px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-cta-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-cta-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.contact-cta-method svg { width: 18px; height: 18px; }
.contact-cta-method:hover { transform: translateY(-2px); }
.whatsapp-method { border-color: rgba(37,211,102,0.3); }
.whatsapp-method:hover { background: var(--whatsapp-green); color: #fff; border-color: var(--whatsapp-green); }
.whatsapp-method svg { color: var(--whatsapp-green); }
.whatsapp-method:hover svg { color: #fff; }
.email-method:hover { background: var(--text-primary); color: var(--bg-primary); }
.phone-method:hover { background: var(--text-primary); color: var(--bg-primary); }

@media (max-width: 480px) {
  .contact-cta-methods { flex-direction: column; align-items: center; }
  .contact-cta-method { width: 100%; max-width: 260px; justify-content: center; }
}

/* === OVERFLOW FIX === */
html, body { overflow-x: hidden; max-width: 100vw; }
.container { overflow: visible; max-width: var(--container-max); box-sizing: border-box; }
section, .footer, .header { overflow-x: hidden; }
img { max-width: 100%; }
*, *::before, *::after { box-sizing: border-box; }
