* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #8B1A2B;
  --primary-dark: #5C101B;
  --secondary: #D4A853;
  --accent: #C4952A;
  --cream: #FFF8F0;
  --beige: #F5E6D3;
  --dark: #2C1810;
  --text: #3C2415;
  --text-light: #6B5A3E;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* === HEADER === */
.header-top {
  background: var(--primary-dark);
  color: var(--secondary);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
}

nav {
  background: var(--white);
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo h1 {
  font-size: 26px;
  color: var(--primary);
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

@media (max-width: 600px) {
  .logo-img { height: 36px; width: 36px; }
  .logo h1 { font-size: 20px; }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-icons {
  display: flex;
  gap: 18px;
}

.nav-icons a {
  color: var(--text);
  font-size: 17px;
  transition: var(--transition);
}

.nav-icons a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* === PAGE BANNER === */
.page-banner {
  min-height: 26vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #A02030 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='rgba(212,168,83,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 8px;
}

.page-banner-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.subcategory-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.subcategory-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.subcategory-nav a:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.subcategory-nav img {
  width: 18px;
  height: 22px;
  object-fit: contain;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #A02030 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 30px 5% 50px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='rgba(212,168,83,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212,168,83,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 8px 25px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-install-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.btn-install-hero:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn-install-hero {
    padding: 12px 22px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}

.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,83,0.3);
}

.hero-categories {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  width: 100%;
  margin-top: 50px;
}

.hero-categories .category-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 200px;
}

.hero-categories .category-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.hero-categories .category-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--secondary);
}

.hero-categories .category-img {
  background: transparent;
  height: 200px;
  padding: 0;
}

.hero-categories .category-info h2 {
  color: var(--white);
}

.hero-categories .category-info p {
  color: rgba(255, 255, 255, 0.7);
}

.hero-categories .category-info::before {
  background: var(--secondary);
}

.hero-categories .btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
}

.hero-categories .btn-outline:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--dark);
  margin-bottom: 12px;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider span {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--secondary);
  position: relative;
}

.divider span::before,
.divider span::after {
  content: '◆';
  position: absolute;
  font-size: 8px;
  color: var(--primary);
  top: 50%;
  transform: translateY(-50%);
}

.divider span::before { left: -12px; }
.divider span::after { right: -12px; }

.divider.left {
  justify-content: flex-start;
}

/* === CATEGORIES === */
.category-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(44, 24, 16, 0.18);
  border-color: var(--secondary);
}

.category-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FBF0E0 0%, #F1E0C7 100%);
  position: relative;
  overflow: hidden;
}

.category-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(139, 26, 43, 0) 55%, rgba(44, 24, 16, 0.35) 100%);
  pointer-events: none;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.category-img img.icon-svg {
  object-fit: contain;
  width: auto;
  height: 72%;
  padding: 12px;
}

.category-card:hover .category-img img {
  transform: scale(1.08);
}

.category-img img.category-icon {
  height: 65%;
}

.category-img img.kids-icon {
  height: 55%;
  padding: 14px;
}

.category-img img.kids-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-categories .category-card.kids-card .category-links a {
  padding: 5px 12px;
  font-size: 11px;
}

.hero-categories .category-card.kids-card .category-info {
  padding: 16px 14px 18px;
}

.category-info {
  padding: 24px 20px 26px;
  text-align: center;
  position: relative;
}

.category-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: var(--secondary);
}

.category-info h2 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 6px;
}

.category-info p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
  min-height: 20px;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.category-links a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
}

.category-links a:hover {
  background: var(--accent);
  color: var(--dark);
}

.category-links a.btn-outline {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 0;
  padding: 8px 20px;
}

.category-links a.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 26, 43, 0.3);
}

/* === PRODUCTS === */
.products {
  padding: 80px 5%;
  background: linear-gradient(135deg, #3A060E 0%, #5C101B 40%, #8B1A2B 75%, #A02030 100%);
}

.products .section-header .subtitle {
  color: var(--secondary);
}

.products .section-header h2 {
  color: var(--white);
}

.products .divider span {
  background: var(--secondary);
}

.products .product-card {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid-fixed {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
}

.product-grid-fixed .product-img-link {
  max-height: 220px;
}

.product-grid-fixed .product-img-link .product-img-main,
.product-grid-fixed .product-img-link .product-img-hover {
  height: 220px;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .product-grid-fixed {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid-fixed .product-card img,
  .product-grid-fixed .product-img-link {
    height: 160px;
    max-height: 160px;
  }
}

@media (max-width: 400px) {
  .product-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-grid-fixed .product-card img,
  .product-grid-fixed .product-img-link {
    height: 130px;
    max-height: 130px;
  }
}

.product-grid-home {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}

@media (max-width: 700px) {
  .product-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.product-grid-home .product-card img {
  aspect-ratio: auto;
  border-radius: 8px;
}

.subcat-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.subcat-tabs .subcat-tab {
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.subcat-tabs .subcat-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.subcat-tabs .subcat-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(44, 24, 16, 0.12);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  border-radius: 3px;
}

.product-badge.sale {
  background: #E8590C;
}

.product-badge.soldout {
  background: #6B7280;
  top: auto;
  bottom: 12px;
}

.product-card.sold-out img {
  filter: grayscale(0.9);
  opacity: 0.7;
}

.product-card.sold-out .btn-add {
  background: #9CA3AF;
  cursor: not-allowed;
}

.product-card.sold-out .btn-add:hover {
  opacity: 1;
  transform: none;
}

.btn-refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.install-app-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(139, 26, 43, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.install-app-btn.visible {
  display: inline-flex;
  animation: installPulse 2.5s ease-in-out infinite;
}

.install-app-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@keyframes installPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(139, 26, 43, 0.35); }
  50% { box-shadow: 0 6px 30px rgba(139, 26, 43, 0.6); }
}

.btn-refresh:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--beige);
  transition: transform 0.3s ease;
}

.product-img-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.product-img-link .product-img-main,
.product-img-link .product-img-hover {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--beige);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.product-img-link .product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-img-link:hover .product-img-hover {
  opacity: 1;
}

.product-img-link:hover .product-img-main {
  opacity: 0;
}

.product-img-link img {
  cursor: zoom-in;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: zoom-out;
}

.product-lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  background: #fff;
}

.product-lightbox .pl-close {
  position: absolute;
  top: 16px;
  right: 22px;
  color: #fff;
  font-size: 38px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

/* === QUICK VIEW MODAL (Amazon-style) === */
.quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 5200;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quickview-box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  padding: 0 0 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
}

.quickview-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}

.quickview-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  overflow: hidden;
  cursor: zoom-in;
}

.quickview-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  display: block;
}

.quickview-tap {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 8px;
  border-radius: 20px;
}

.quickview-body {
  padding: 18px 24px 0;
}

.quickview-body h2 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
}

.quickview-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin: 6px 0 12px;
}

.quickview-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin: 12px 0 8px;
}

.quickview-size {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--beige);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  cursor: pointer;
}

.quickview-note {
  min-height: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 10px 0 8px;
}

/* === VARIANT PICKER MODAL === */
.product-variant-meta {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin: 2px 0 8px;
}

.btn-var {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-var:hover {
  background: var(--primary);
  color: var(--white);
}

.variant-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vm-box {
  position: relative;
  display: flex;
  gap: 22px;
  background: var(--white);
  border-radius: 10px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.vm-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 34px;
  line-height: 1;
  color: #777;
  cursor: pointer;
  z-index: 2;
}

.vm-close:hover {
  color: var(--primary);
}

.vm-img-wrap {
  flex: 0 0 260px;
}

.vm-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--beige);
}

.vm-body {
  flex: 1;
  min-width: 0;
}

.vm-body h3 {
  font-size: 19px;
  color: var(--dark);
  margin: 0 0 4px;
}

.vm-price {
  font-size: 17px;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 14px;
}

.vm-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin: 14px 0 8px;
}

.vm-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vm-size {
  padding: 8px 16px;
  border: 2px solid var(--beige);
  background: var(--cream);
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.vm-size.active,
.vm-size:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.vm-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vm-swatch {
  width: 52px;
  height: 62px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--beige);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.vm-swatch.light {
  border-color: #ccc;
}

.vm-swatch.active,
.vm-swatch:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
}

.vm-selected {
  min-height: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 14px 0 8px;
}

.vm-empty {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.vm-add {
  width: 100%;
}

@media (max-width: 600px) {
  .vm-box {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }
  .vm-img-wrap {
    flex: none;
    width: 100%;
    max-height: 260px;
  }
  .vm-img {
    aspect-ratio: 1 / 1;
  }
}

.product-info {
  padding: 12px;
}

.product-info h3 {
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 4px;
}

.product-category {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 400;
  margin-right: 8px;
}

.btn-add {
  width: 100%;
  padding: 9px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 6px;
}

.btn-add:hover {
  background: var(--primary-dark);
}

/* === INLINE SIZE / COLOR PICKER (dropdown style) === */
.pc-var {
  margin-top: 6px;
}

.pc-size {
  width: 100%;
  box-sizing: border-box;
  padding: 7px 8px;
  margin-bottom: 6px;
  border: 1px solid var(--beige);
  border-radius: 6px;
  background: #fff;
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.pc-add {
  width: 100%;
  padding: 8px;
  font-size: 11px;
}

.pc-add:disabled {
  background: #bbb;
  cursor: not-allowed;
}

.pc-note {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 6px;
  min-height: 16px;
}

/* === BANNER === */
.banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(212,168,83,0.1)'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.banner-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
}

.banner-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
  font-size: 16px;
}

/* === ABOUT === */
.about {
  padding: 80px 5%;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-img {
  background: var(--beige);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
}

.about-img img {
  height: 100%;
  object-fit: contain;
}

.about-text .subtitle {
  margin-bottom: 4px;
}

.about-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--dark);
  margin: 8px 0 15px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.feature i {
  color: var(--primary);
  font-size: 16px;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 80px 5%;
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.customer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.customer h3 {
  font-size: 15px;
  color: var(--dark);
}

.customer span {
  font-size: 12px;
  color: var(--text-light);
}

/* === NEWSLETTER === */
.newsletter {
  padding: 20px 5%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  text-align: center;
}

.newsletter-content {
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
}

.newsletter-content p {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 12px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 380px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 9px 14px;
  border: none;
  font-size: 13px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
  padding: 9px 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* === POLICY PAGES === */
.policy-section {
  padding: 45px 5%;
  background: var(--cream);
  min-height: 60vh;
}

.policy-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 40px 45px;
}

.policy-box h1 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--dark);
  margin-bottom: 6px;
}

.policy-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 22px;
}

.policy-box h2 {
  font-size: 20px;
  color: var(--primary);
  margin: 26px 0 10px;
}

.policy-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

.policy-box ul {
  margin: 0 0 14px 20px;
  list-style: disc;
}

.policy-box li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 6px;
}

.policy-box table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 14px;
}

.policy-box th, .policy-box td {
  border: 1px solid #EAD9C0;
  padding: 10px 12px;
  text-align: left;
}

.policy-box th {
  background: #FBF0E0;
  color: var(--dark);
}

.policy-box a {
  color: var(--primary);
  text-decoration: underline;
}

.policy-back {
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.policy-back:hover {
  text-decoration: underline;
}

/* === CONTACT === */
.contact {
  padding: 80px 5%;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info p i {
  color: var(--primary);
  width: 20px;
  font-size: 16px;
}

.contact-wa-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-wa-link:hover {
  color: #25D366;
}

.contact-form-note {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border: 2px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid var(--beige);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

/* === FOOTER === */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* === FILTER BUTTONS === */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-categories {
    gap: 20px;
    max-width: 640px;
  }
  .hero-categories .category-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
    gap: 20px;
  }

  .nav-links.show {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .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);
  }

  .nav-icons {
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding: 50px 5% 70px;
  }

  .hero-categories {
    gap: 16px;
    margin-top: 40px;
  }
  .hero-categories .category-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-categories {
    gap: 14px;
  }
  .hero-categories .category-card {
    flex: 0 0 100%;
    min-width: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* === CART BADGE === */
.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* === CART DRAWER === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1001;
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}

.cart-drawer.show {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--beige);
}

.cart-header h3 {
  font-size: 22px;
  color: var(--dark);
}

.cart-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  padding: 5px;
}

.cart-close:hover {
  color: var(--primary);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 25px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--beige);
  position: relative;
}

.cart-item img {
  width: 70px;
  height: 85px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--beige);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
}

.cart-variant {
  font-size: 12px;
  font-weight: 600;
  color: #777;
  margin-bottom: 2px;
}

.cart-item-info p {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--beige);
  background: var(--cream);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  color: var(--text);
}

.cart-qty button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cart-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.cart-remove {
  position: absolute;
  top: 15px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 14px;
}

.cart-remove:hover {
  color: var(--primary);
}

.cart-empty {
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
}

.cart-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--beige);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.cart-total span {
  color: var(--primary);
}

/* === CHECKOUT MODAL === */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-modal.show {
  display: flex;
}

.checkout-box {
  background: var(--white);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
}

.checkout-box h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 5px;
}

.checkout-box .sub {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.order-summary {
  background: var(--cream);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 20px;
}

.order-summary p {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

.order-summary p span {
  font-weight: 600;
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  border-top: 1px solid var(--beige);
  padding-top: 12px;
  margin-top: 10px;
}

.order-total span {
  color: var(--primary);
}

.payment-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 10px;
}

.checkout-form input {
  padding: 12px 16px;
  border: 1px solid var(--beige);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  width: 100%;
}

.checkout-form input:focus {
  border-color: var(--primary);
}

.checkout-row {
  display: flex;
  gap: 12px;
}

.btn-place-order {
  background: var(--primary);
  color: var(--white);
}

.btn-place-order:hover {
  background: var(--primary-dark);
}

.btn-place-order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-pay-upi {
  background: #7F3F97;
  color: var(--white);
}

.btn-pay-upi:hover {
  background: #6A3480;
}

.btn-whatsapp {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1DA851;
}

.checkout-hint {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.checkout-hint strong {
  color: #333;
}

.order-note {
  margin-top: 15px;
  padding: 12px;
  background: #E8F5E9;
  border-radius: 6px;
  font-size: 14px;
  color: #2E7D32;
  text-align: center;
}

.hidden {
  display: none;
}

/* === TOAST === */
.cart-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1200;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cart-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
  }

  .checkout-box {
    padding: 20px;
  }
}

/* === ADMIN MODE === */
.admin-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 30px;
  display: none;
  align-items: center;
  gap: 14px;
  z-index: 1300;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  font-size: 14px;
}

.admin-bar span {
  color: var(--secondary);
  font-weight: 600;
}

.admin-bar button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.admin-bar button:hover {
  background: var(--primary-dark);
}

body.admin-mode .product-price {
  outline: 2px dashed var(--accent);
  outline-offset: 3px;
  cursor: pointer;
  border-radius: 4px;
}

body.admin-mode .product-card img {
  outline: 2px dashed var(--accent);
  outline-offset: 3px;
  cursor: pointer;
}

.admin-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1300;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  text-align: center;
}

.admin-toast.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
  .admin-bar {
    width: 92vw;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Lightbox for product images */
.product-card img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  text-align: center;
  max-width: 92vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 92vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  cursor: zoom-out;
}

.lightbox-caption {
  color: #fff;
  font-size: 15px;
  margin-top: 12px;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 34px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* Footer brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand h3 {
  margin: 0;
  font-size: 18px;
}

@media (max-width: 600px) {
  .footer-logo { height: 38px; width: 38px; }
}

/* Install help modal (Samsung Internet workaround) */
.install-help {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 20px;
}

.install-help.open {
  display: flex;
}

.install-help-box {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.install-help-box h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.install-help-box p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.install-help-steps {
  text-align: left;
  margin: 0 0 18px;
  padding: 0 0 0 20px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

.install-help-secure {
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
}

.install-help-playprotect {
  background: #FFF3E0;
  color: #B26A00;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.install-help-box .btn-primary,
.install-help-box .btn-outline {
  margin: 6px 4px;
}

.install-help-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.videos-section {
  padding: 50px 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding-top: 10px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
  display: block;
}

.video-caption {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    justify-items: center;
  }
  .video-card video {
    max-width: 420px;
  }
}

/* === TRACK ORDER PAGE === */
.track-section {
  padding: 60px 20px;
  max-width: 560px;
  margin: 0 auto;
  min-height: 60vh;
}

.track-box {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.track-box h2 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 6px;
}

.track-sub {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.track-form {
  display: flex;
  gap: 10px;
}

.track-form input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--beige);
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  text-transform: uppercase;
}

.track-form input:focus {
  border-color: var(--secondary);
}

.track-error {
  color: #C62828;
  font-size: 14px;
  margin-top: 10px;
  min-height: 18px;
}

.track-result {
  margin-top: 24px;
  border-top: 1px solid var(--beige);
  padding-top: 20px;
}

.track-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.track-head h3 {
  font-size: 18px;
  color: var(--dark);
}

.track-meta {
  color: var(--text-light);
  font-size: 13px;
}

.track-timeline {
  position: relative;
  padding: 6px 0;
}

.track-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 26px;
}

.track-step:last-child {
  padding-bottom: 0;
}

.track-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-right: 14px;
  z-index: 1;
}

.track-step.done .track-dot {
  background: var(--primary);
}

.track-line {
  position: absolute;
  top: 28px;
  bottom: -2px;
  left: 13px;
  width: 2px;
  background: var(--beige);
}

.track-step.done .track-line {
  background: var(--primary);
}

.track-step-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}

.track-step.done .track-step-info strong {
  color: var(--dark);
}

.track-step-info span {
  font-size: 12.5px;
  color: var(--text-light);
}

.track-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--beige);
  margin-top: 6px;
}

.track-amount span {
  color: var(--text-light);
  font-size: 14px;
}

.track-amount strong {
  color: var(--primary);
  font-size: 18px;
}

.track-help {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin: 16px 0 12px;
}

.track-back {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.track-back i {
  margin-right: 6px;
}

.track-tracking {
  margin: 10px 0;
}

.track-tracking-box {
  background: var(--beige);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-tracking-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.track-tracking-box strong {
  font-size: 15px;
  color: var(--dark);
  word-break: break-all;
}

.track-tracking-link {
  margin-top: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.track-tracking-link i {
  margin-left: 4px;
  font-size: 12px;
}

.badge-track {
  background: #E3F2FD;
  color: #1565C0;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
}

.admin-tracking {
  margin-top: 16px;
  border-top: 1px solid var(--beige);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-tracking h4 {
  font-size: 16px;
  color: var(--dark);
}

.admin-tracking label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-light);
}

.admin-tracking input {
  padding: 9px 12px;
  border: 1px solid var(--beige);
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.admin-tracking input:focus {
  border-color: var(--secondary);
}

.admin-whatsapp-msg {
  margin-top: 16px;
  border-top: 1px solid var(--beige);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-whatsapp-msg h4 {
  font-size: 16px;
  color: var(--dark);
}

.admin-whatsapp-msg .btn-link {
  align-self: flex-start;
}

.admin-wa-hint {
  font-size: 12px;
  color: var(--text-light);
}
