/* ===== VELOCITY — Premium E-Commerce Stylesheet ===== */

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

:root {
  --gold: #C8A961;
  --gold-light: #e2d1a0;
  --gold-dark: #a68b3e;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark2: #2a2a2a;
  --dark3: #333;
  --gray: #888;
  --gray-light: #aaa;
  --gray-bg: #f5f5f5;
  --white: #fff;
  --cream: #faf8f5;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --gold-shadow: 0 4px 20px rgba(200,169,97,0.2);
  --gold-glow: 0 0 30px rgba(200,169,97,0.3);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-body); background: var(--cream); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* --- Announcement Bar --- */
.announcement { background: var(--black); color: var(--gold); text-align: center; padding: 8px 16px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; height: 35px; display: flex; align-items: center; justify-content: center; }
.announcement span { animation: announcePulse 3s ease-in-out infinite; }
@keyframes announcePulse { 0%,100%{opacity:1} 50%{opacity:0.7} }

/* --- Header --- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.header.scrolled { backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); background: rgba(10,10,10,0.82); border-bottom: 1px solid rgba(200,169,97,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1400px; margin: 0 auto; }
.logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.logo small { font-size: 9px; letter-spacing: 4px; display: block; color: var(--gray-light); font-family: var(--font-body); font-weight: 400; text-transform: uppercase; margin-top: -2px; }
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a { color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.5px; position: relative; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.header-icons { display: flex; align-items: center; gap: 16px; }
.icon-btn { color: var(--white); font-size: 20px; position: relative; transition: var(--transition); padding: 4px; }
.icon-btn:hover { color: var(--gold); }
.cart-count { position: absolute; top: -4px; right: -8px; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* --- Mobile Menu --- */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(10,10,10,0.98); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); backdrop-filter: blur(20px); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--white); font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: 2px; transition: var(--transition); position: relative; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .menu-close { position: absolute; top: 20px; right: 20px; color: var(--white); font-size: 32px; }

/* --- Search Overlay --- */
.search-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1001; background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; padding: 80px 20px 20px; transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.search-overlay.open { transform: translateY(0); }
.search-overlay .search-close { position: absolute; top: 24px; right: 24px; color: var(--white); font-size: 28px; }
.search-input-wrap { width: 100%; max-width: 600px; position: relative; }
.search-input-wrap input { width: 100%; padding: 16px 20px 16px 50px; background: var(--dark2); border: 1px solid rgba(200,169,97,0.3); border-radius: 50px; color: var(--white); font-size: 16px; transition: var(--transition); }
.search-input-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 20px rgba(200,169,97,0.15); }
.search-input-wrap input::placeholder { color: var(--gray); }
.search-input-wrap .search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gray); }
.search-results { width: 100%; max-width: 600px; margin-top: 20px; max-height: 60vh; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.search-result-item:hover { background: var(--dark2); }
.search-result-item img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); }
.search-result-item .info { flex: 1; }
.search-result-item .info h4 { color: var(--white); font-size: 14px; font-weight: 500; }
.search-result-item .info p { color: var(--gold); font-size: 13px; font-weight: 600; }
.search-no-results { text-align: center; color: var(--gray); padding: 40px; font-size: 15px; }

/* --- Hero Slider --- */
.hero { position: relative; width: 100%; height: 75vh; min-height: 500px; max-height: 800px; overflow: hidden; background: var(--dark); margin-top: 56px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; padding: 20px; }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(32px,7vw,64px); color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-content p { color: rgba(255,255,255,0.85); font-size: clamp(14px,2.5vw,18px); max-width: 500px; margin-bottom: 28px; font-weight: 300; }
.hero-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; background: var(--gold); color: var(--black); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border-radius: 50px; transition: var(--transition); box-shadow: var(--gold-shadow); }
.hero-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--gold-glow); }
.hero-arrows { position: absolute; top: 50%; left: 0; right: 0; z-index: 3; display: flex; justify-content: space-between; padding: 0 16px; transform: translateY(-50%); }
.hero-arrow { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: var(--white); font-size: 20px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.hero-arrow:hover { background: var(--gold); color: var(--black); }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: var(--transition); cursor: pointer; }
.hero-dot.active { background: var(--gold); width: 30px; border-radius: 5px; }

/* --- Cinematic Scroll Showcase --- */
.cinematic-showcase {
  position: relative;
  height: 300vh;
  background: var(--black);
}

.cinematic-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-slide .cine-bg {
  position: absolute;
  inset: -40px;
  will-change: transform;
  transition: none;
}

.cinematic-slide .cine-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cinematic-slide .cine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}

.cinematic-slide .cine-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  will-change: transform, opacity;
  max-width: 600px;
}

.cinematic-slide .cine-content .cine-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.cinematic-slide .cine-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.cinematic-slide .cine-content p {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 17px);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cinematic-slide .cine-content .cine-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--gold-shadow);
  transition: var(--transition);
}

.cinematic-slide .cine-content .cine-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.cinematic-progress {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.cinematic-progress .cp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.cinematic-progress .cp-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

@media(max-width: 768px) {
  .cinematic-showcase { height: 250vh; }
  .cinematic-slide .cine-bg { inset: -20px; }
}

/* --- Section Styles --- */
.section { padding: 60px 20px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(26px,5vw,40px); font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.section-header p { color: var(--gray); font-size: 15px; max-width: 500px; margin: 0 auto; }
.section-header .gold-line { width: 60px; height: 2px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }

/* --- Category Cards --- */
.categories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(min-width:768px) { .categories-grid { gap: 24px; } }
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); }
.cat-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 1; }
.cat-card-info h3 { font-family: var(--font-display); color: var(--white); font-size: clamp(16px,3vw,22px); font-weight: 600; margin-bottom: 4px; }
.cat-card-info span { color: var(--gold-light); font-size: 13px; font-weight: 400; }

/* --- Product Grid --- */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media(min-width:640px) { .products-grid { grid-template-columns: repeat(3,1fr); gap: 20px; } }
@media(min-width:1024px) { .products-grid { grid-template-columns: repeat(4,1fr); gap: 24px; } }

/* --- Product Card --- */
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease; position: relative; cursor: pointer; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px -12px rgba(200,169,97,0.25); }
.product-card .img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--gray-bg); }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; z-index: 1; }
.badge-bestseller { background: var(--gold); color: var(--black); }
.badge-new { background: var(--white); color: var(--dark); }
.badge-sale { background: #e74c3c; color: var(--white); }
.product-card .card-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 1; }
.product-card:hover .card-overlay { opacity: 1; }
.card-overlay span { padding: 10px 24px; background: var(--gold); color: var(--black); border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; transform: translateY(10px); transition: transform 0.3s ease; }
.product-card:hover .card-overlay span { transform: translateY(0); }
.product-card .card-info { padding: 14px 16px 18px; }
.product-card .card-info .card-cat { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-card .card-info h3 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card .card-info .card-price { display: flex; align-items: center; gap: 8px; }
.product-card .card-info .price-now { font-size: 16px; font-weight: 700; color: var(--dark); }
.product-card .card-info .price-old { font-size: 13px; color: var(--gray); text-decoration: line-through; }
.product-card .card-info .price-off { font-size: 11px; color: #e74c3c; font-weight: 600; }

/* --- Skeleton Loading --- */
.skeleton { background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%); background-size: 200% 100%; animation: skeletonShine 1.5s infinite; }
@keyframes skeletonShine { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Product Detail --- */
.detail-page { padding-top: 100px; padding-bottom: 40px; max-width: 1200px; margin: 0 auto; }
.detail-back { display: inline-flex; align-items: center; gap: 6px; color: var(--gray); font-size: 14px; margin-bottom: 24px; cursor: pointer; transition: var(--transition); }
.detail-back:hover { color: var(--gold); }
.detail-grid { display: grid; gap: 32px; }
@media(min-width:768px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
.detail-gallery { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-bg); aspect-ratio: 1; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { font-family: var(--font-display); font-size: clamp(24px,4vw,32px); font-weight: 700; margin-bottom: 8px; }
.detail-info .detail-cat { color: var(--gray); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.detail-info .detail-desc { color: var(--dark3); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.detail-info .detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.detail-info .detail-price .now { font-size: 28px; font-weight: 700; color: var(--dark); }
.detail-info .detail-price .old { font-size: 18px; color: var(--gray); text-decoration: line-through; }
.detail-info .detail-price .off { font-size: 14px; color: #e74c3c; font-weight: 600; background: rgba(231,76,60,0.1); padding: 4px 10px; border-radius: 50px; }

/* --- Variants --- */
.variant-group { margin-bottom: 20px; }
.variant-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.variant-options { display: flex; gap: 10px; flex-wrap: wrap; }
.variant-opt { padding: 8px 18px; border: 2px solid var(--dark2); border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--dark); transition: var(--transition); cursor: pointer; }
.variant-opt:hover, .variant-opt.active { border-color: var(--gold); color: var(--gold); background: rgba(200,169,97,0.05); }
.variant-color { width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent; transition: var(--transition); cursor: pointer; position: relative; }
.variant-color.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,97,0.3); }

/* --- Quantity Selector --- */
.qty-selector { display: inline-flex; align-items: center; border: 2px solid var(--dark2); border-radius: var(--radius-sm); overflow: hidden; }
.qty-selector button { width: 40px; height: 40px; font-size: 18px; color: var(--dark); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-selector button:hover { background: var(--gray-bg); color: var(--gold); }
.qty-selector span { width: 48px; text-align: center; font-weight: 600; font-size: 16px; }

/* --- Buttons --- */
.detail-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.btn-primary { padding: 14px 32px; background: var(--gold); color: var(--black); font-weight: 600; font-size: 14px; letter-spacing: 0.5px; border-radius: 50px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--gold-shadow); }
.btn-whatsapp { padding: 14px 32px; background: #25D366; color: var(--white); font-weight: 600; font-size: 14px; border-radius: 50px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-share { padding: 14px 20px; background: var(--dark); color: var(--white); font-size: 18px; border-radius: 50px; transition: var(--transition); }
.btn-share:hover { background: var(--dark2); color: var(--gold); }

/* --- Category Page --- */
.category-page { padding-top: 100px; padding-bottom: 40px; max-width: 1400px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.cat-header { text-align: center; margin-bottom: 32px; }
.cat-header h1 { font-family: var(--font-display); font-size: clamp(28px,5vw,42px); font-weight: 700; margin-bottom: 8px; }
.cat-header p { color: var(--gray); font-size: 15px; }
.sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.sort-bar span { color: var(--gray); font-size: 13px; }
.sort-bar select { padding: 8px 16px; border: 1px solid #ddd; border-radius: 50px; background: var(--white); color: var(--dark); font-size: 13px; }

/* --- Cart Drawer --- */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 420px; background: var(--white); z-index: 2001; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #eee; }
.cart-drawer-header h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.cart-drawer-header button { color: var(--gray); font-size: 24px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-info .item-variant { font-size: 12px; color: var(--gray); margin-bottom: 6px; }
.cart-item-info .item-price { font-size: 15px; font-weight: 700; color: var(--gold-dark); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item-qty button { width: 28px; height: 28px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; display: flex; align-items: center; justify-content: center; color: var(--dark); }
.cart-item-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { color: #e74c3c; font-size: 12px; cursor: pointer; margin-top: 4px; font-weight: 500; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty svg { width: 64px; height: 64px; margin: 0 auto 16px; opacity: 0.3; }
.cart-footer { padding: 20px 24px; border-top: 1px solid #eee; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span { font-size: 14px; color: var(--gray); }
.cart-total strong { font-size: 20px; font-weight: 700; }
.cart-checkout { width: 100%; padding: 14px; background: var(--gold); color: var(--black); font-weight: 600; font-size: 14px; letter-spacing: 0.5px; border-radius: 50px; transition: var(--transition); text-align: center; }
.cart-checkout:hover { background: var(--gold-light); }

/* --- WhatsApp Float --- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 1500; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: var(--white); font-size: 28px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); animation: whatsappPulse 2s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes whatsappPulse { 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 10px rgba(37,211,102,0.1)} }

/* --- Footer --- */
.footer { background: var(--black); color: var(--white); padding: 60px 20px 24px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media(min-width:768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-about .footer-logo { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.footer-about p { color: var(--gray); font-size: 14px; line-height: 1.8; max-width: 360px; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links a { display: block; color: var(--gray); font-size: 14px; padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--gray); font-size: 14px; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid var(--dark2); padding-top: 24px; text-align: center; color: var(--gray); font-size: 13px; }
.footer-bottom .heart { color: var(--gold); }

/* --- Admin Panel --- */
.admin-page { padding: 80px 20px 40px; max-width: 1200px; margin: 0 auto; }
.admin-page h1 { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 24px; }
.admin-login { max-width: 400px; margin: 60px auto; text-align: center; }
.admin-login input { width: 100%; padding: 14px 20px; border: 2px solid var(--dark2); border-radius: var(--radius); font-size: 15px; margin-bottom: 16px; transition: var(--transition); }
.admin-login input:focus { border-color: var(--gold); }
.admin-login button { width: 100%; padding: 14px; background: var(--gold); color: var(--black); font-weight: 600; border-radius: var(--radius); font-size: 15px; transition: var(--transition); }
.admin-login button:hover { background: var(--gold-light); }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-tab { padding: 10px 20px; background: var(--white); border: 1px solid #ddd; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--dark); transition: var(--transition); }
.admin-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.admin-card { background: var(--white); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow); }
.admin-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { text-align: left; padding: 10px 12px; background: var(--gray-bg); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; }
.admin-table tr:hover td { background: rgba(200,169,97,0.03); }
.admin-btn { padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; transition: var(--transition); }
.admin-btn-danger { background: #fee; color: #e74c3c; }
.admin-btn-danger:hover { background: #e74c3c; color: var(--white); }
.status-badge { padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 600; }
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-shipped { background: #cce5ff; color: #004085; }

/* --- Features Strip --- */
.features { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; background: var(--white); border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
@media(min-width:768px) { .features { grid-template-columns: repeat(4,1fr); } }
.feature-item { text-align: center; padding: 28px 16px; border-right: 1px solid #eee; }
.feature-item:last-child { border-right: none; }
@media(max-width:767px) { .feature-item:nth-child(odd) { border-right: 1px solid #eee; } .feature-item:nth-child(2n) { border-right: none; } }
.feature-item .feat-icon { font-size: 28px; margin-bottom: 10px; }
.feature-item h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--dark); }
.feature-item p { font-size: 11px; color: var(--gray); }

/* --- Toast --- */
.toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark); color: var(--white); padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 500; z-index: 9999; opacity: 0; transition: var(--transition); white-space: nowrap; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* --- Lazy Load Fade --- */
.lazy-img { opacity: 0; transition: opacity 0.5s ease; }
.lazy-img.loaded { opacity: 1; }

/* --- Checkout Page --- */
.checkout-page { padding-top: 100px; padding-bottom: 40px; max-width: 800px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.checkout-page h1 { font-family: var(--font-display); font-size: clamp(28px,5vw,38px); font-weight: 700; margin-bottom: 8px; }
.checkout-page .subtitle { color: var(--gray); font-size: 15px; margin-bottom: 32px; }
.checkout-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #eee; align-items: center; }
.checkout-item img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); }
.checkout-item-info { flex: 1; }
.checkout-item-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.checkout-item-info .ci-variant { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.checkout-item-info .ci-price { font-size: 15px; font-weight: 700; color: var(--gold-dark); }
.checkout-item-qty { font-size: 14px; color: var(--gray); font-weight: 500; }
.checkout-summary { background: var(--white); border-radius: var(--radius); padding: 24px; margin-top: 24px; box-shadow: var(--shadow); }
.checkout-summary h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.checkout-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--dark3); }
.checkout-row.total { border-top: 2px solid var(--dark); margin-top: 8px; padding-top: 16px; font-weight: 700; font-size: 18px; }
.checkout-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.checkout-actions .btn-whatsapp, .checkout-actions .btn-primary { justify-content: center; width: 100%; font-size: 15px; padding: 16px; }
.checkout-empty { text-align: center; padding: 80px 20px; }
.checkout-empty h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 12px; color: var(--dark); }
.checkout-empty p { color: var(--gray); margin-bottom: 24px; }