/* ═══════════════════════════════════════════════════════════
   ZULE STORE - Main Stylesheet
   Design: Elegant, Modern, Beauty & Personal Care
   ═══════════════════════════════════════════════════════════ */

:root {
  --zule-primary: #5c7a5c;
  --zule-primary-dark: #4a6b4a;
  --zule-secondary: #9b6b4a;
  --zule-accent: #d4a850;
  --zule-gold: #c8964a;
  --zule-dark: #2a2520;
  --zule-light: #f7f3ed;
  --zule-gradient: linear-gradient(135deg, #5c7a5c 0%, #9b6b4a 100%);
  --zule-gradient-soft: linear-gradient(135deg, #e8f0e8 0%, #f0e8e0 100%);
  --shadow-sm: 0 2px 8px rgba(92, 122, 92, 0.12);
  --shadow-md: 0 4px 20px rgba(92, 122, 92, 0.18);
  --shadow-lg: 0 8px 40px rgba(92, 122, 92, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

/* ─── LOADING SCREEN ────────────────────────────────────────── */
.loading-screen {
  position: fixed; inset: 0; background: var(--zule-dark);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
.loading-screen.fade-out { opacity: 0; visibility: hidden; }
.zule-logo-loader { display: flex; gap: 4px; font-size: 3rem; font-weight: 900; }
.zule-logo-loader span { color: white; animation: popLetter .6s ease forwards; opacity: 0; }
.zule-logo-loader .z { animation-delay: .1s; color: var(--zule-accent); }
.zule-logo-loader .u { animation-delay: .2s; }
.zule-logo-loader .l { animation-delay: .3s; }
.zule-logo-loader .e { animation-delay: .4s; }
@keyframes popLetter { from { opacity: 0; transform: translateY(20px) scale(.8); } to { opacity: 1; transform: none; } }
.loading-bar { width: 200px; height: 4px; background: rgba(255,255,255,.2); border-radius: 4px; margin-top: 20px; overflow: hidden; }
.loading-progress { height: 100%; background: var(--zule-gradient); border-radius: 4px; animation: loadBar 1.2s ease forwards; }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ─── TOP BAR ───────────────────────────────────────────────── */
.top-bar {
  background: var(--zule-gradient);
  color: white;
  padding: 8px 0;
  font-size: .78rem;
}
.top-bar a { color: white; }
.top-bar a:hover { color: var(--zule-gold); }

/* Country Selector */
.country-selector { gap: 4px; }
.country-btn {
  color: rgba(255,255,255,.7); text-decoration: none;
  padding: 2px 10px; border-radius: 50px;
  font-size: .78rem; font-weight: 600;
  transition: all .2s;
}
.country-btn:hover { color: white; background: rgba(255,255,255,.15); }
.country-btn.active { color: white; background: rgba(255,255,255,.25); font-weight: 700; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar-zule {
  background: rgba(26, 26, 46, .97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 75, 140, .2);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: all .3s;
}
.navbar-zule .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .88rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.navbar-zule .nav-link:hover { color: white !important; background: rgba(255,255,255,.08); }

/* Logo */
.brand-logo { line-height: 1; }
.brand-z { font-size: 1.8rem; font-weight: 900; color: var(--zule-accent); font-family: 'Playfair Display', serif; }
.brand-ule { font-size: 1.8rem; font-weight: 900; color: white; font-family: 'Playfair Display', serif; }
.brand-tagline { font-size: .55rem; letter-spacing: 4px; color: rgba(255,255,255,.5); margin-top: -4px; }

/* Search Form */
.search-form { max-width: 380px; width: 100%; }
.search-input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}
.search-input::placeholder { color: rgba(255,255,255,.4); }
.search-input:focus { background: rgba(255,255,255,.15); border-color: var(--zule-accent); box-shadow: none; color: white; }
.btn-search {
  background: var(--zule-gradient);
  border: none;
  color: white;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}

/* Cart Button */
.cart-btn {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 6px 10px;
  border-radius: 50%;
  display: flex;
  transition: all .2s;
}
.cart-btn:hover { color: var(--zule-accent); transform: scale(1.1); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: #e63946; color: white;
  font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 50px; display: flex;
  align-items: center; justify-content: center;
  animation: badgePulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(230,57,70,.7);
}
@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,.7); }
  50%  { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}
.btn-nav-cart {
  background: var(--zule-gradient); color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: .85rem; padding: 8px 16px;
  font-weight: 600;
}
.btn-nav-cart:hover { color: white; opacity: .9; transform: translateY(-1px); }
.cart-badge-nav {
  position: absolute; top: -7px; right: -7px;
  background: #e63946; color: white;
  font-size: .6rem; font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 50px; display: inline-flex;
  align-items: center; justify-content: center;
  animation: badgePulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(230,57,70,.7);
  border: 2px solid var(--zule-dark);
}

/* Dropdown */
.dropdown-menu-zule {
  background: var(--zule-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 220px;
}
.dropdown-menu-zule .dropdown-item {
  color: rgba(255,255,255,.8);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .88rem;
  transition: all .2s;
}
.dropdown-menu-zule .dropdown-item:hover { background: rgba(255,255,255,.08); color: white; }
.dropdown-menu-zule .dropdown-divider { border-color: rgba(255,255,255,.1); }

/* Flash */
.flash-container { position: fixed; top: 80px; right: 16px; z-index: 1050; max-width: 360px; }
.flash-toast { border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero-video-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: rgba(42, 37, 32, 0.65); z-index: 1;
}
.hero-zule-img { position: relative; z-index: 2; }
.hero-section {
  background: var(--zule-dark);
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.min-vh-hero { min-height: 85vh; }
.hero-particles {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(92,122,92,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(155,107,74,.2) 0%, transparent 50%);
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(92,122,92,.2); color: var(--zule-accent);
  border: 1px solid rgba(92,122,92,.4);
  padding: 6px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-highlight {
  background: var(--zule-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 30px;
}
.btn-hero-primary {
  background: var(--zule-gradient);
  color: white; border: none;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(92,122,92,.4);
}
.btn-hero-primary:hover { color: white; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(92,122,92,.5); }
.btn-hero-secondary {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,.3);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  margin-left: 12px; transition: all .3s;
}
.btn-hero-secondary:hover { color: white; border-color: white; background: rgba(255,255,255,.1); }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--zule-accent); }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
.hero-image-container {
  width: 420px; height: 420px;
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-circle-1 { width: 320px; height: 320px; background: rgba(92,122,92,.12); animation-delay: 0s; }
.hero-circle-2 { width: 240px; height: 240px; background: rgba(155,107,74,.15); animation-delay: -2s; }
.hero-circle-3 { width: 160px; height: 160px; background: rgba(212,168,80,.1); animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-main-img { position: relative; z-index: 2; text-align: center; }
.hero-img-placeholder {
  width: 200px; height: 200px;
  background: var(--zule-gradient);
  border-radius: 50%; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.mini-card {
  position: absolute; background: rgba(255,255,255,.95);
  border-radius: 12px; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md); font-size: .85rem; font-weight: 600;
  z-index: 3;
}
.mini-card-1 { top: 30px; right: -20px; }
.mini-card-2 { bottom: 80px; left: -30px; }
.mini-card-3 { bottom: 20px; right: -10px; }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
.hero-wave svg { display: block; }

/* ─── BENEFITS BAR ──────────────────────────────────────────── */
.benefits-bar { background: white; box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.benefit-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: var(--radius-sm);
  transition: all .2s;
}
.benefit-item:hover { background: var(--zule-light); }
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--zule-gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
  flex-shrink: 0;
}
.benefit-text strong { display: block; font-size: .88rem; color: var(--zule-dark); }
.benefit-text small { color: #999; font-size: .75rem; }

/* ─── SECTIONS ──────────────────────────────────────────────── */
.bg-light-zule { background: var(--zule-light); }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--zule-primary);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--zule-dark);
  line-height: 1.2;
}
.highlight {
  background: var(--zule-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── CATEGORY CARDS ────────────────────────────────────────── */
.category-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 12px;
  background: white;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--zule-gradient);
  opacity: 0; transition: opacity .3s;
}
.category-card:hover { border-color: var(--zule-primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-card:hover::before { opacity: 1; }
.category-card:hover .cat-icon,
.category-card:hover .cat-name,
.category-card:hover .cat-arrow { color: white; position: relative; z-index: 1; }
.cat-icon { font-size: 2rem; color: var(--zule-primary); margin-bottom: 8px; transition: all .3s; position: relative; z-index: 1; }
.cat-name { font-size: .82rem; font-weight: 600; color: var(--zule-dark); transition: all .3s; position: relative; z-index: 1; }
.cat-arrow { font-size: .7rem; color: #aaa; margin-top: 4px; transition: all .3s; position: relative; z-index: 1; }

/* ─── PRODUCT CARDS ─────────────────────────────────────────── */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92,122,92,.08);
  transition: all .3s;
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(92,122,92,.2); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: #f8f8f8; }
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.08); }
.badge-featured {
  position: absolute; top: 10px; left: 10px;
  background: var(--zule-gradient); color: white;
  font-size: .7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,46,.6);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity .3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-quick-add {
  background: var(--zule-gradient); color: white;
  border: none; border-radius: 50px;
  padding: 10px 20px; font-size: .85rem; font-weight: 600;
  transition: all .2s;
}
.btn-quick-add:hover { color: white; transform: scale(1.05); }
.btn-quick-view {
  background: rgba(255,255,255,.15); color: white;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.btn-quick-view:hover { background: white; color: var(--zule-primary); }
.product-info { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: .72rem; color: var(--zule-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.product-name a {
  color: var(--zule-dark); text-decoration: none;
  font-weight: 600; font-size: .88rem; line-height: 1.4;
}
.product-name a:hover { color: var(--zule-primary); }
.product-rating { display: flex; align-items: center; gap: 4px; margin: 4px 0; }
.stars-small i { font-size: .7rem; }
.product-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 8px 0; }
.price-current { font-size: 1.1rem; font-weight: 800; color: var(--zule-primary); }
.price-original { font-size: .8rem; color: #aaa; text-decoration: line-through; }
.price-discount {
  background: #e8f5e9; color: #2e7d32;
  font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 50px;
}
.btn-add-cart {
  background: transparent;
  border: 2px solid var(--zule-primary);
  color: var(--zule-primary);
  border-radius: 50px; font-size: .82rem; font-weight: 600;
  padding: 8px; transition: all .2s;
  margin-top: auto;
}
.btn-add-cart:hover { background: var(--zule-gradient); color: white; border-color: transparent; }
.btn-quick-buy {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: white; border: none;
  border-radius: 50px; font-size: .78rem; font-weight: 600;
  padding: 7px; transition: all .2s;
}
.btn-quick-buy:hover { opacity: .88; color: white; transform: translateY(-1px); }

/* ─── PROMO BANNER ──────────────────────────────────────────── */
.promo-banner { background: var(--zule-dark); }
.promo-card {
  background: var(--zule-gradient);
  border-radius: var(--radius);
  padding: 40px;
}
.promo-badge {
  display: inline-block; background: rgba(255,255,255,.2);
  color: white; padding: 4px 12px; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.promo-title { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 8px; }
.promo-card p { color: rgba(255,255,255,.8); margin-bottom: 16px; }
.promo-icons span { color: rgba(255,255,255,.7); font-size: .85rem; margin-right: 16px; }
.btn-promo {
  background: white; color: var(--zule-primary);
  font-weight: 700; font-size: 1rem;
  padding: 14px 30px; border-radius: 50px;
  border: none; transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-promo:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.3); color: var(--zule-primary-dark); }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonial-card {
  background: white; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92,122,92,.1);
  transition: all .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--zule-gold); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: #666; font-style: italic; line-height: 1.7; }
.testimonial-author { color: var(--zule-primary); font-size: .85rem; margin-top: 12px; }

/* ─── PAGE HEADERS ──────────────────────────────────────────── */
.page-header {
  background: var(--zule-dark);
  padding: 40px 0 30px;
  position: relative;
}
.page-header-sm {
  background: var(--zule-gradient);
  padding: 30px 0;
  margin-bottom: 0;
}
.page-title {
  font-size: 2rem; font-weight: 800;
  color: white;
}
.page-header .breadcrumb-item { font-size: .85rem; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-header .breadcrumb-item.active { color: white; }
.page-header .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ─── SHOP SIDEBAR ──────────────────────────────────────────── */
.sidebar-card {
  background: white; border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92,122,92,.08);
}
.sidebar-title {
  font-weight: 700; color: var(--zule-dark);
  font-size: .95rem; margin-bottom: 0;
}
.filter-label { font-size: .82rem; font-weight: 600; color: #666; display: block; margin-bottom: 8px; }
.filter-options { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-tag {
  background: #f5f5f5; color: #555;
  padding: 4px 12px; border-radius: 50px;
  font-size: .78rem; font-weight: 500;
  text-decoration: none; transition: all .2s;
  border: 1px solid transparent;
}
.filter-tag:hover, .filter-tag.active { background: var(--zule-gradient); color: white; border-color: transparent; }
.shipping-row { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; }
.shipping-info .shipping-row div small { color: #888; display: block; }

/* ─── SHOP TOOLBAR ──────────────────────────────────────────── */
.shop-toolbar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.search-bar-shop { flex: 1; min-width: 200px; }
.results-count { color: #888; font-size: .85rem; white-space: nowrap; }

/* ─── PRODUCT DETAIL ────────────────────────────────────────── */
.product-detail-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); position: relative;
  background: #f8f8f8;
}
.product-detail-img { width: 100%; height: auto; object-fit: cover; max-height: 500px; }
.detail-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--zule-gradient); color: white;
  padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700;
}
.detail-brand { font-size: .78rem; color: var(--zule-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.detail-title { font-size: 1.5rem; font-weight: 800; color: var(--zule-dark); margin: 8px 0; line-height: 1.3; }
.detail-price-current { font-size: 2.2rem; font-weight: 900; color: var(--zule-primary); }
.detail-price-original { font-size: 1rem; color: #aaa; text-decoration: line-through; margin-left: 10px; }
.detail-discount-badge {
  background: var(--zule-gradient); color: white;
  font-size: .75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; margin-left: 8px;
}
.stock-ok { color: #2e7d32; font-size: .88rem; font-weight: 600; }
.stock-ok i { color: #4caf50; }
.stock-low { color: #e65100; font-size: .88rem; font-weight: 600; }
.stock-out { color: #c62828; font-size: .88rem; font-weight: 600; }
.qty-cart-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-control {
  display: flex; align-items: center;
  border: 2px solid #e0e0e0; border-radius: 50px; overflow: hidden;
}
.qty-btn {
  background: none; border: none;
  width: 40px; height: 44px;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  color: var(--zule-dark); transition: all .2s;
}
.qty-btn:hover { background: var(--zule-light); }
.qty-input {
  border: none; outline: none; text-align: center;
  width: 50px; height: 44px; font-weight: 700; font-size: 1rem;
}
.btn-add-to-cart-detail {
  flex: 1; background: var(--zule-gradient); color: white;
  border: none; border-radius: 50px;
  padding: 12px 24px; font-weight: 700; font-size: 1rem;
  min-width: 200px; transition: all .3s;
  box-shadow: 0 4px 15px rgba(92,122,92,.3);
}
.btn-add-to-cart-detail:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(92,122,92,.4); }
.btn-buy-now {
  background: var(--zule-dark); color: white;
  border: none; border-radius: 50px;
  padding: 12px; font-weight: 700; font-size: 1rem;
  transition: all .3s;
}
.btn-buy-now:hover { background: #2a2a4e; color: white; transform: translateY(-2px); }
.shipping-detail-box {
  background: var(--zule-light); border-radius: var(--radius-sm);
  padding: 16px; border: 1px solid rgba(92,122,92,.1);
}
.shipping-detail-row { display: flex; align-items: flex-start; gap: 10px; }
.payment-methods-detail { background: #f9f9f9; border-radius: var(--radius-sm); padding: 12px; }
.payment-icons-row { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-badge {
  background: white; border: 1px solid #e0e0e0;
  padding: 6px 12px; border-radius: 8px;
  font-size: .8rem; font-weight: 600; color: #555;
}

/* ─── CART ──────────────────────────────────────────────────── */
.cart-item-card {
  display: flex; align-items: center; gap: 16px;
  background: white; border-radius: var(--radius);
  padding: 16px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: all .2s;
}
.cart-item-card:hover { box-shadow: var(--shadow-md); }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { color: var(--zule-dark); font-weight: 600; font-size: .9rem; text-decoration: none; line-height: 1.4; }
.cart-item-name:hover { color: var(--zule-primary); }
.cart-item-price { color: #888; font-size: .82rem; margin-top: 4px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.qty-control-sm {
  display: flex; align-items: center;
  border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden;
}
.qty-btn-sm { background: none; border: none; width: 30px; height: 32px; font-size: 1rem; font-weight: 700; cursor: pointer; }
.qty-display { width: 36px; text-align: center; font-weight: 700; font-size: .9rem; }
.cart-item-subtotal { font-weight: 800; color: var(--zule-primary); font-size: 1rem; min-width: 70px; text-align: right; }
.cart-remove { color: #ccc; font-size: 1.2rem; transition: color .2s; }
.cart-remove:hover { color: #e53935; }
.cart-summary-card {
  background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(92,122,92,.1);
}
.summary-title { font-weight: 800; color: var(--zule-dark); margin-bottom: 20px; }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: .9rem; }
.summary-line.total { border: none; font-size: 1.1rem; padding-top: 12px; }
.summary-shipping-note { color: #888; font-size: .78rem; background: #f9f9f9; padding: 8px 12px; border-radius: 8px; }
.btn-checkout {
  background: var(--zule-gradient); color: white;
  border: none; border-radius: 50px;
  padding: 14px; font-weight: 700; font-size: 1rem;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(92,122,92,.3);
}
.btn-checkout:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(92,122,92,.4); }
.payment-badge-sm { background: #f5f5f5; padding: 4px 10px; border-radius: 8px; font-size: .75rem; font-weight: 600; }
.security-badges { font-size: .8rem; color: #888; }
.empty-cart { padding: 60px 0; }
.empty-cart-icon { font-size: 5rem; color: #ddd; }

/* ─── CHECKOUT ──────────────────────────────────────────────── */
.checkout-steps { display: flex; align-items: center; gap: 0; margin-top: 12px; }
.step {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 600;
}
.step span {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.step.active { color: white; }
.step.active span { background: white; color: var(--zule-primary); }
.step-line { flex: 1; height: 2px; background: rgba(255,255,255,.2); min-width: 30px; margin: 0 8px; }
.checkout-card {
  background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
}
.checkout-card-title { font-weight: 700; color: var(--zule-dark); margin-bottom: 20px; font-size: 1rem; }
.checkout-input { border-radius: var(--radius-sm) !important; border: 1.5px solid #e0e0e0 !important; }
.checkout-input:focus { border-color: var(--zule-primary) !important; box-shadow: 0 0 0 3px rgba(92,122,92,.1) !important; }
.shipping-cost-display {
  background: #f5f5f5; border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: .9rem; font-weight: 600;
  border-left: 4px solid #ccc;
}
.shipping-cost-display.lima { background: #e8f5e9; border-color: #4caf50; color: #2e7d32; }
.shipping-cost-display.provincias { background: #fff3e0; border-color: #ff9800; color: #e65100; }

/* Payment Method Cards */
.payment-methods-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.payment-method-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 8px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all .2s; text-align: center; position: relative;
}
.payment-method-card.active { border-color: var(--zule-primary); background: #f0f5f0; }
.payment-radio { position: absolute; opacity: 0; }
.pm-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 6px;
}
.pm-yape { background: #7b2d8b; color: white; }
.pm-paypal { background: #003087; color: white; }
.pm-visa { background: #1a1f71; color: white; }
.pm-info strong { display: block; font-size: .82rem; color: var(--zule-dark); }
.pm-info small { font-size: .72rem; color: #888; }
.pm-check { font-size: 1.1rem; color: var(--zule-primary); position: absolute; top: 8px; right: 8px; opacity: 0; }
.payment-method-card.active .pm-check { opacity: 1; }
.order-summary-card {
  background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(92,122,92,.1);
}
.summary-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: .85rem;
}
.summary-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.summary-item-name { font-weight: 600; font-size: .82rem; }
.summary-item-qty { color: #888; font-size: .78rem; }
.security-info { font-size: .8rem; color: #888; }

/* Invoice type selector */
.invoice-type-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 20px; border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all .2s; text-align: center; position: relative; flex: 1;
}
.invoice-type-card.active { border-color: var(--zule-primary); background: #f0f5f0; }
.invoice-type-card strong { display: block; font-size: .88rem; color: var(--zule-dark); margin-top: 6px; }
.invoice-type-card small { font-size: .72rem; color: #888; }

/* Venezuela payment method icons */
.pm-pago-movil { background: linear-gradient(135deg, #007bff, #0056b3); color: white; }
.pm-usdt { background: linear-gradient(135deg, #26a17b, #1a7a5e); color: white; }
.pm-transfer { background: linear-gradient(135deg, #2d6a4f, #1b4332); color: white; }

/* ─── PAYMENT METHODS STRIP ─────────────────────────────────── */
.payment-methods-strip {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 10px 0;
  overflow: hidden;
}
.payment-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: stripScroll 22s linear infinite;
  width: max-content;
}
.payment-strip-track:hover { animation-play-state: paused; }
.payment-strip-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 22px;
  font-size: .78rem; font-weight: 600;
  color: #555;
  white-space: nowrap;
  border-right: 1px solid #dee2e6;
}
.payment-strip-item i { font-size: 1.1rem; }
.payment-strip-divider { color: #dee2e6; padding: 0 8px; font-size: 1.2rem; }
@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PAYMENT PAGES ─────────────────────────────────────────── */
.payment-page-container {
  min-height: 80vh;
  background: var(--zule-light);
  padding: 20px 0;
}
.payment-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.payment-card-header {
  padding: 28px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.yape-header { background: linear-gradient(135deg, #7b2d8b, #c84b8c); }
.paypal-header { background: linear-gradient(135deg, #003087, #009cde); }
.visa-header { background: linear-gradient(135deg, #1a1f71, #0052cc); }
.payment-card-header .yape-logo-area,
.payment-card-header .paypal-logo-area,
.payment-card-header .visa-logo-area { display: flex; align-items: center; gap: 10px; color: white; }
.payment-card-header h4 { color: white; margin: 0; font-weight: 700; }
.payment-card-header small { color: rgba(255,255,255,.7); font-size: .75rem; display: block; }
.total-display { text-align: right; }
.total-display span { display: block; color: rgba(255,255,255,.7); font-size: .78rem; }
.total-display strong { color: white; font-size: 1.6rem; font-weight: 900; }
.payment-card-body { padding: 28px; }
.yape-qr-container { display: flex; justify-content: center; }
.qr-placeholder {
  width: 180px; height: 180px;
  border: 3px dashed #e0e0e0; border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #f9f9f9;
}
.yape-number-display {
  text-align: center; font-size: 1rem;
  background: #f9f3ff; padding: 12px; border-radius: 12px;
}
.text-purple { color: #7b2d8b !important; }
.yape-amount-display { text-align: center; font-size: .9rem; color: #555; }
.voucher-upload-area {
  border: 2px dashed #e0e0e0; border-radius: var(--radius-sm);
  padding: 32px; text-align: center; cursor: pointer;
  transition: all .2s; background: #fafafa;
}
.voucher-upload-area:hover { border-color: var(--zule-primary); background: #fdf2f8; }
.voucher-label { cursor: pointer; display: block; }
.upload-icon { font-size: 2.5rem; color: #ccc; margin-bottom: 8px; }
.voucher-label strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.voucher-label small { color: #888; display: block; font-size: .8rem; }
.order-info-box {
  background: #f9f9f9; border-radius: var(--radius-sm);
  padding: 16px; border: 1px solid #e0e0e0;
}
.btn-yape-confirm {
  background: linear-gradient(135deg, #7b2d8b, #c84b8c);
  color: white; border: none; border-radius: 50px;
  padding: 14px; font-size: 1rem; font-weight: 700;
  transition: all .3s;
}
.btn-yape-confirm:hover { color: white; opacity: .9; transform: translateY(-2px); }
.btn-visa-pay {
  background: linear-gradient(135deg, #1a1f71, #0052cc);
  color: white; border: none; border-radius: 50px;
  padding: 14px; font-size: 1rem; font-weight: 700;
  transition: all .3s;
}
.btn-visa-pay:hover { color: white; opacity: .9; transform: translateY(-2px); }
.security-badges-row { display: flex; justify-content: center; gap: 12px; }
.sec-badge { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: #888; }
.card-form .form-control { border-radius: var(--radius-sm); }

/* ─── ORDER CONFIRMATION ─────────────────────────────────────── */
.confirmation-section { background: var(--zule-light); min-height: 80vh; }
.confirmation-card {
  background: white; border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-lg);
  text-align: center;
}
.confirmation-icon { font-size: 5rem; margin-bottom: 16px; }
.confirm-title { font-weight: 800; font-size: 2rem; color: var(--zule-dark); margin-bottom: 8px; }
.order-number-display {
  background: var(--zule-light); border-radius: 12px;
  padding: 12px 24px; display: inline-block; margin: 12px auto;
}
.order-number-display small { display: block; color: #888; font-size: .78rem; }
.order-number-display strong { font-size: 1.2rem; color: var(--zule-primary); }
.order-detail-box {
  background: #f9f9f9; border-radius: var(--radius-sm);
  padding: 20px; text-align: left; margin: 20px 0;
}
.confirm-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid #f0f0f0;
}
.confirm-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.confirm-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.btn-primary-zule {
  background: var(--zule-gradient); color: white;
  border: none; border-radius: 50px; padding: 10px 24px;
  font-weight: 600; transition: all .3s;
}
.btn-primary-zule:hover { color: white; opacity: .9; transform: translateY(-2px); }
.btn-outline-primary-zule {
  background: transparent; color: var(--zule-primary);
  border: 2px solid var(--zule-primary); border-radius: 50px;
  padding: 8px 22px; font-weight: 600; transition: all .3s;
}
.btn-outline-primary-zule:hover { background: var(--zule-gradient); color: white; border-color: transparent; }
.btn-whatsapp {
  background: #25d366; color: white; border: none;
  border-radius: 50px; padding: 10px 24px; font-weight: 600; transition: all .3s;
}
.btn-whatsapp:hover { background: #1ea855; color: white; }

/* ─── PAGINATION ────────────────────────────────────────────── */
.pagination-zule .page-link {
  border: 1px solid #e0e0e0; color: var(--zule-primary);
  border-radius: 8px !important; margin: 0 3px;
  font-weight: 600;
}
.pagination-zule .page-item.active .page-link {
  background: var(--zule-gradient); border-color: transparent;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer-zule { background: white; position: relative; }
.footer-wave { overflow: hidden; height: 60px; }
.footer-wave svg { height: 60px; width: 100%; }
.footer-content { background: var(--zule-dark); padding: 50px 0 30px; }
.brand-logo-footer .brand-z { font-size: 2rem; font-weight: 900; color: var(--zule-accent); font-family: 'Playfair Display', serif; }
.brand-logo-footer .brand-ule { font-size: 2rem; font-weight: 900; color: white; font-family: 'Playfair Display', serif; }
.brand-logo-footer .brand-tagline { font-size: .55rem; letter-spacing: 4px; color: rgba(255,255,255,.4); }
.footer-desc { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem; transition: all .2s;
}
.social-btn:hover { background: var(--zule-primary); color: white; }
.social-btn.whatsapp:hover { background: #25d366; }
.footer-title { color: white; font-weight: 700; font-size: .9rem; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--zule-accent); }
.footer-contact .contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-contact .contact-item i { color: var(--zule-accent); }
.footer-contact .contact-item a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-contact .contact-item a:hover { color: var(--zule-accent); }
.payment-icons { display: flex; flex-wrap: wrap; gap: 6px; }
.badge-payment {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  padding: 5px 12px; border-radius: 8px; font-size: .78rem; font-weight: 600;
}
.footer-divider { border-color: rgba(255,255,255,.1); margin: 30px 0 20px; }
.footer-copyright { color: rgba(255,255,255,.4); font-size: .82rem; }

/* ─── NAVBAR LOGO ───────────────────────────────────────────── */
.navbar-logo { max-height: 50px; width: auto; object-fit: contain; }

/* ─── FOOTER SEDES ───────────────────────────────────────────── */
.footer-sede {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px; font-size: .75rem;
  color: rgba(255,255,255,.5);
}
.footer-sede a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-sede a:hover { color: var(--zule-accent); }
.footer-sede strong { color: rgba(255,255,255,.8); display: block; }
.footer-sede small { color: rgba(255,255,255,.3); }
.sede-flag { font-size: 1.2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

/* ─── BACK TO TOP & FLOAT ────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--zule-gradient); color: white;
  border: none; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0;
  transition: opacity .3s, transform .3s;
  z-index: 1000;
}
.back-to-top.show { opacity: 1; }
.back-to-top:hover { transform: translateY(-3px); }
.cart-float {
  position: fixed; bottom: 80px; right: 20px;
  background: var(--zule-gradient); color: white;
  text-decoration: none; padding: 10px 16px;
  border-radius: 50px; display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg); z-index: 999; font-size: .88rem;
}
.cart-float:hover { color: white; transform: translateY(-2px); }
.cart-float-badge {
  background: var(--zule-gold); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
}
.cart-float-total { font-weight: 700; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section { min-height: 70vh; padding: 60px 0 40px; }
  .hero-title { font-size: 1.8rem; }
  .btn-hero-secondary { margin-left: 0; margin-top: 8px; }
  .hero-actions { display: flex; flex-direction: column; align-items: flex-start; }
  .payment-methods-grid { grid-template-columns: 1fr; }
  .promo-card { padding: 24px; }
  .promo-title { font-size: 1.4rem; }
  .confirm-actions { flex-direction: column; }
  .confirm-actions .btn { width: 100%; }
}
