/* HushKhan shop shared styles — Amrit Palace palette + Manrope */

:root {
  --forest: #14231B;
  --moss: #1D3126;
  --pine: #33513E;
  --kernel: #EFE7D4;
  --kernel-dim: #B8B09A;
  --resin: #D9A441;
  --ring: #2A4433;
  --font-display: 'Manrope', sans-sans-serif;
  --font-body: 'Manrope', sans-sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
  color: var(--kernel);
  background: var(--forest);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6, .display, .section-title, .ap-heading, .page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
strong, b { font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 900px) { .container { padding: 0 20px; } }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--resin); z-index: 9999; width: 0%;
  pointer-events: none;
}

/* Reveal animations */
.reveal, .auto-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible, .auto-reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.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; }
.reveal-delay-6 { transition-delay: 0.6s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .auto-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media (scripting: none) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .auto-reveal { opacity: 1; transform: none; }
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--forest); border-bottom: 1px solid var(--pine);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1320px; margin: 0 auto; padding: 0 40px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--kernel); text-decoration: none;
}
.logo-mark { width: 26px; height: 26px; color: var(--resin); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--kernel); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--resin); }
.header-right { display: flex; align-items: center; gap: 20px; }
.icon-btn {
  background: rgba(20,35,27,0.05); border: none; color: var(--kernel); cursor: pointer;
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%;
  transition: all 0.2s ease; position: relative;
}
.icon-btn:hover { background: rgba(20,35,27,0.10); color: var(--resin); }
.cart-count {
  position: absolute; top: -4px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--forest); color: var(--kernel); font-size: 0.65rem; font-weight: 700;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--pine);
}
.menu-btn { display: none; }
.lang-bar {
  display: inline-flex; align-items: center;
  border: 1px solid var(--pine); border-radius: 999px; padding: 3px 4px;
  background: transparent;
}
.lang-bar a {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 10px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  color: var(--kernel); text-decoration: none; transition: background 0.2s, color 0.2s;
}
.lang-bar a:not(:first-child)::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 14px; background: var(--pine);
}
.lang-bar a:hover { color: var(--resin); }
.lang-bar a.active { background: var(--forest); color: var(--kernel); border-radius: 999px; border: 1px solid var(--pine); }
.lang-bar a.active::before { display: none; }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--moss); z-index: 40; padding: 24px; flex-direction: column; gap: 16px; overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.2rem; font-weight: 600; padding: 8px 0; border-bottom: 1px solid var(--pine); }
@media (max-width: 1100px) { .nav-links { display: none; } .menu-btn { display: flex; } .header-inner { padding: 0 24px; } }

body.header-over-dark .header { background: transparent; border-bottom-color: rgba(51,81,62,0.2); }
body.header-over-dark .header .logo,
body.header-over-dark .header .nav-links a,
body.header-over-dark .header .icon-btn,
body.header-over-dark .header .lang-bar a { color: var(--kernel); }
body.header-over-dark .lang-bar { border-color: rgba(51,81,62,0.3); background: rgba(20,35,27,0.08); }
body.header-over-dark .lang-bar a.active { background: var(--moss); color: var(--kernel); }
body.header-over-dark .cart-count { border-color: var(--pine); }

.header-scrolled, body.header-over-dark .header-scrolled {
  background: var(--forest) !important; border-bottom-color: var(--pine) !important;
  box-shadow: 0 1px 0 rgba(20,35,27,0.04), 0 8px 30px rgba(20,35,27,0.06);
}
.header-scrolled .logo, .header-scrolled .nav-links a, .header-scrolled .icon-btn, .header-scrolled .lang-bar a { color: var(--kernel) !important; }
.header-scrolled .lang-bar { border-color: var(--pine) !important; background: rgba(20,35,27,0.04) !important; }
.header-scrolled .lang-bar a.active { background: var(--forest) !important; color: var(--kernel) !important; }

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,35,27,0.45); z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 460px; height: 100%;
  background: var(--moss); z-index: 70; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(20,35,27,0.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { padding: 22px 24px; border-bottom: 1px solid var(--pine); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-header h2 { font-size: 1.35rem; font-weight: 800; color: var(--kernel); }
.cart-drawer-header h2 span { font-size: 0.85rem; color: var(--kernel-dim); font-weight: 500; margin-left: 6px; }
.cart-close { background: none; border: none; font-size: 1.6rem; color: var(--kernel-dim); cursor: pointer; line-height: 1; padding: 4px; }
.cart-close:hover { color: var(--kernel); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-upsell { border: 1px solid var(--pine); border-radius: 18px; padding: 18px; margin-bottom: 20px; background: var(--moss); }
.cart-upsell-title { font-weight: 600; font-size: 0.95rem; color: var(--kernel); margin-bottom: 12px; }
.cart-upsell-product { display: flex; align-items: center; gap: 14px; }
.cart-upsell-product img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; background: var(--moss); }
.cart-upsell-product h4 { font-size: 0.95rem; font-weight: 600; color: var(--kernel); margin-bottom: 4px; }
.cart-upsell-product p { font-size: 0.85rem; color: var(--kernel-dim); }
.cart-upsell-product p s { margin-right: 6px; }
.btn-add-cart-sm { margin-left: auto; padding: 8px 18px; border-radius: 999px; border: none; background: var(--forest); color: var(--kernel); font-weight: 600; font-size: 0.85rem; cursor: pointer; }
.cart-items { margin-bottom: 24px; }
.cart-empty { text-align: center; color: var(--kernel-dim); padding: 40px 0; font-size: 0.95rem; }
.cart-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--pine); }
.cart-item-img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; background: var(--moss); }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--kernel); margin-bottom: 4px; }
.cart-item-option { font-size: 0.8rem; color: var(--kernel-dim); margin-bottom: 4px; }
.cart-item-sub { font-size: 0.75rem; color: var(--resin); font-weight: 600; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--pine); border-radius: 999px; overflow: hidden; background: var(--moss); }
.qty-btn { width: 30px; height: 30px; border: none; background: var(--moss); color: var(--kernel); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--moss); }
.qty-value { width: 28px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.cart-item-remove { background: none; border: none; color: var(--kernel-dim); font-size: 0.75rem; cursor: pointer; text-decoration: underline; }
.cart-item-remove:hover { color: var(--kernel); }
.cart-item-price { font-weight: 700; color: var(--resin); font-size: 0.95rem; min-width: 70px; text-align: right; }
.cart-also-bought { margin-top: 24px; }
.also-bought-list { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.also-bought-item { flex: 0 0 110px; text-align: center; }
.also-bought-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; background: var(--moss); margin-bottom: 8px; }
.also-bought-item p { font-size: 0.75rem; font-weight: 600; color: var(--kernel); margin-bottom: 4px; }
.also-bought-item button { padding: 5px 12px; border-radius: 999px; border: 1px solid var(--pine); background: transparent; color: var(--kernel); font-size: 0.7rem; font-weight: 600; cursor: pointer; }
.also-bought-item button:hover { background: var(--forest); color: var(--kernel); }
.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--pine); background: var(--moss); }
.cart-guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--kernel-dim); margin-bottom: 14px; }
.btn-checkout { width: 100%; padding: 16px 20px; border-radius: 999px; border: none; background: var(--forest); color: var(--kernel); font-weight: 700; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s ease; }
.btn-checkout:hover { background: var(--forest); transform: translateY(-2px); }
.btn-checkout s { opacity: 0.75; font-weight: 500; margin-left: 6px; }

/* Buttons */
.btn, .ap-ghost-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-button); text-decoration: none;
  font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em;
  transition: all 0.2s ease; border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--forest); color: var(--kernel); border-color: var(--pine); }
.btn-primary:hover { background: var(--forest); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--kernel); border-color: var(--pine); }
.btn-outline:hover { background: var(--forest); color: var(--kernel); }
.btn-light { background: transparent; color: var(--kernel); border-color: var(--pine); }
.btn-light:hover { background: var(--moss); color: var(--kernel); }
.btn-full { width: 100%; }

/* Page hero */
.page-hero {
  position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--kernel); overflow: hidden; padding: 140px 0 120px;
}
.page-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(20,35,27,0.65); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; max-width: 840px; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  border: 1px solid rgba(217,164,65,0.5); border-radius: 999px; color: var(--resin);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.page-hero h1 { font-size: 3.2rem; margin-bottom: 18px; color: var(--kernel); }
.page-hero p { font-size: 1.1rem; color: rgba(248,245,240,0.85); max-width: 640px; margin: 0 auto; line-height: 1.6; }
@media (max-width: 767px) { .page-hero { min-height: 340px; padding: 100px 0 80px; } .page-hero h1 { font-size: 2.2rem; } }

body:not(.header-over-dark) { padding-top: 72px; }

/* Shop hero */
.shop-hero { position: relative; background: var(--forest); color: var(--kernel); overflow: hidden; }
.shop-hero-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; align-items: center; }
.shop-hero-image { height: 100%; min-height: 70vh; position: relative; background: #14231B; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.shop-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.shop-hero-text { padding: 80px 60px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.shop-hero-eyebrow { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--resin); }
.shop-hero h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; color: var(--kernel); }
.shop-hero-desc { color: #B8B09A; font-size: 16px; line-height: 1.6; max-width: 480px; }
@media (max-width: 1023px) { .shop-hero-inner { grid-template-columns: 1fr; min-height: auto; } .shop-hero-image { min-height: 50vh; } .shop-hero-text { padding: 60px 40px; } }

/* Shop categories + catalog */
.shop-categories { background: var(--forest); padding: 24px 0; border-bottom: 1px solid var(--pine); }
.shop-category-list { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.shop-category { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--kernel-dim); background: none; border: none; padding: 8px 0; cursor: pointer; position: relative; transition: color 0.3s ease; }
.shop-category::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--forest); transition: width 0.3s ease; }
.shop-category:hover, .shop-category.active { color: var(--kernel); }
.shop-category.active::after { width: 100%; }
.shop-section { background: var(--forest); padding: 80px 0; }
.shop-catalog-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.shop-catalog-title h2 { font-size: 32px; color: var(--kernel); margin-bottom: 6px; }
.shop-catalog-title p { font-size: 14px; color: var(--kernel-dim); }
.shop-toolbar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.shop-count { font-size: 14px; color: var(--kernel); }
.shop-count strong { font-weight: 700; }
.shop-sort { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--kernel); }
.shop-sort select { border: 1px solid var(--pine); background: var(--forest); color: var(--kernel); font-size: 14px; padding: 8px 12px; cursor: pointer; font-family: var(--font-body); }
@media (max-width: 767px) { .shop-catalog-header { flex-direction: column; align-items: flex-start; } .shop-toolbar { width: 100%; justify-content: space-between; } }

/* Product grid */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.shop-card { position: relative; border-radius: var(--radius-card); overflow: hidden; display: flex; flex-direction: column; min-height: 460px; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease; background: var(--forest); color: var(--kernel); }
.shop-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(20,35,27,0.14); }
.shop-card.light { background: var(--moss); color: var(--kernel); }
.shop-card.light .shop-card-title, .shop-card.light .shop-card-tags, .shop-card.light .shop-card-rating, .shop-card.light .shop-card-rating span { color: var(--kernel); }
.shop-card.light .shop-card-price { background: var(--forest); color: var(--kernel); }
.shop-card.light .shop-card-price:hover { background: var(--resin); color: var(--kernel); }
.shop-card.light .shop-quickadd { border-color: rgba(51,81,62,0.2); background: rgba(20,35,27,0.08); color: var(--kernel); }
.shop-card-image { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 32px; min-height: 260px; }
.shop-card-img { display: block; width: 100%; height: 100%; }
.shop-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.shop-card:hover .shop-card-img img { transform: scale(1.08); }
.shop-card-badge { position: absolute; top: 16px; right: 16px; padding: 5px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: var(--resin); color: var(--kernel); z-index: 2; }
.shop-quickadd { position: absolute; bottom: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(51,81,62,0.3); background: rgba(20,35,27,0.25); color: #EFE7D4; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.shop-card:hover .shop-quickadd { background: rgba(20,35,27,0.5); }
.shop-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.shop-card-rating { display: flex; align-items: center; gap: 6px; color: var(--resin); font-size: 12px; font-weight: 600; }
.shop-card-rating span { opacity: 0.8; margin-left: 2px; }
.shop-card-title { font-size: 22px; line-height: 1.2; margin: 0; }
.shop-card-title a { color: inherit; }
.shop-card-tags { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; }
.shop-card-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.shop-card-price { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 999px; background: var(--forest); color: var(--kernel); font-size: 13px; font-weight: 700; transition: background 0.3s ease, color 0.3s ease; }
.shop-card-price:hover { background: var(--resin); color: var(--kernel); }
@media (max-width: 1023px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .shop-grid { grid-template-columns: 1fr; } }

/* Editorial card in grid */
.shop-editorial { grid-column: span 2; border-radius: var(--radius-card); overflow: hidden; min-height: 460px; display: grid; grid-template-columns: 1fr 1fr; position: relative; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease; color: var(--kernel); background: var(--forest); }
.shop-editorial:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(20,35,27,0.14); }
.shop-editorial-inner { padding: 48px; display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; }
.shop-editorial-tag { align-self: flex-start; padding: 6px 12px; border-radius: 999px; background: var(--resin); color: var(--kernel); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.shop-editorial-title { font-size: 36px; font-weight: 800; line-height: 1.1; margin: 0; }
.shop-editorial-desc { font-size: 14px; line-height: 1.6; color: #B8B09A; max-width: 320px; }
.shop-editorial-link { align-self: flex-start; padding: 12px 22px; border-radius: 999px; background: var(--forest); color: var(--kernel); font-size: 13px; font-weight: 700; transition: background 0.3s ease, color 0.3s ease; }
.shop-editorial-link:hover { background: var(--resin); color: var(--kernel); }
.shop-editorial-image { position: relative; overflow: hidden; }
.shop-editorial-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1023px) { .shop-editorial { grid-column: span 2; } }
@media (max-width: 767px) { .shop-editorial { grid-template-columns: 1fr; grid-column: span 1; } .shop-editorial-inner { padding: 32px; } }

/* Promo section */
.shop-promo { position: relative; min-height: 60vh; display: flex; align-items: center; background: var(--forest); color: var(--kernel); overflow: hidden; }
.shop-promo-bg { position: absolute; inset: 0; z-index: 0; }
.shop-promo-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.shop-promo-overlay { position: absolute; inset: 0; background: rgba(20,35,27,0.5); z-index: 1; }
.shop-promo-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 120px 24px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shop-promo-text .ap-heading, .shop-promo-text .ap-body, .shop-promo-text .ap-caption { color: var(--kernel); }
.shop-promo-image { border: 1px solid rgba(51,81,62,0.3); }
.shop-promo-image img { width: 100%; height: auto; display: block; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 900px) { .shop-promo-inner { grid-template-columns: 1fr; padding: 100px 24px; } }

/* Locations */
.shop-locations-hero { background: var(--moss); padding: 120px 0; }
.shop-locations-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shop-locations-hero-text { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; max-width: 560px; }
.shop-locations-map { padding: 0; border: none; background: transparent; overflow: hidden; }
.shop-locations-map img { width: 100%; height: auto; display: block; transform: scale(1.02); clip-path: inset(2% 2% 2% 2%); }
.shop-locations-list { background: var(--forest); padding: 100px 0; }
.shop-locations-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.shop-locations-search { display: flex; gap: 12px; flex-wrap: wrap; }
.shop-locations-search input, .shop-locations-search select { border: 1px solid var(--pine); background: var(--moss); color: var(--kernel); font-family: var(--font-body); font-size: 14px; padding: 12px 16px; min-width: 180px; }
.shop-locations-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-location-card { border: 1px solid var(--pine); padding: 24px; background: var(--moss); transition: border-color 0.3s ease, transform 0.3s ease; }
.shop-location-card:hover { border-color: var(--pine); transform: translateY(-4px); }
.shop-location-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--kernel); margin-bottom: 6px; }
.shop-location-meta { font-size: 13px; color: var(--kernel-dim); margin-bottom: 12px; line-height: 1.5; }
.shop-location-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.shop-location-tag { display: inline-block; padding: 4px 8px; border: 1px solid var(--pine); font-size: 11px; text-transform: uppercase; color: var(--kernel-dim); }
.shop-location-empty { font-size: 14px; color: var(--kernel-dim); padding: 20px; border: 1px solid var(--pine); text-align: left; background: var(--moss); }
@media (max-width: 1023px) { .shop-locations-hero-grid { grid-template-columns: 1fr; gap: 40px; } .shop-locations-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .shop-locations-cards { grid-template-columns: 1fr; } .shop-locations-hero-text { max-width: 100%; } }

/* Product detail */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0 100px; }
.product-gallery { display: flex; flex-direction: column; gap: 16px; }
.product-main-image { background: var(--moss); border-radius: var(--radius-card); height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 12px; flex-wrap: wrap; }
.product-thumb { background: var(--moss); border-radius: 12px; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb:hover, .product-thumb.active { border-color: var(--resin); }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-info h1 { font-size: 2.6rem; color: var(--kernel); }
.product-price { font-size: 1.8rem; font-weight: 700; color: var(--kernel); }
.product-price s { font-size: 1.2rem; color: var(--kernel-dim); font-weight: 500; margin-left: 12px; }
.product-description { color: var(--kernel-dim); line-height: 1.8; }
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { background: var(--moss); color: var(--kernel); padding: 6px 12px; border-radius: 999px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.size-selector { margin-bottom: 8px; }
.size-selector label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--kernel); margin-bottom: 10px; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-option { padding: 10px 18px; border: 1px solid var(--pine); border-radius: 999px; background: var(--forest); cursor: pointer; font-weight: 600; font-size: 0.85rem; transition: all 0.2s; }
.size-option.active { border-color: var(--pine); background: var(--forest); color: var(--kernel); }
.quantity { margin-bottom: 8px; }
.quantity label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--kernel); margin-bottom: 10px; }
.quantity input { width: 80px; padding: 12px; border: 1px solid var(--pine); border-radius: 999px; text-align: center; font-family: inherit; font-weight: 600; }
.product-actions { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 160px; }
.product-details { border-top: 1px solid var(--pine); padding-top: 24px; }
.detail-row { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(51,81,62,0.08); }
.detail-row span:first-child { font-weight: 700; color: var(--kernel); }
.detail-row span:last-child { color: var(--kernel-dim); }
@media (max-width: 1023px) { .product-layout { grid-template-columns: 1fr; padding: 60px 0 80px; } .product-main-image { height: 360px; } .product-actions .btn { width: 100%; } }

/* Cart page */
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 60px 0 100px; }
.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-summary-card { background: var(--moss); border-radius: var(--radius-card); padding: 32px; height: fit-content; border: 1px solid var(--pine); }
.cart-summary-card h3 { font-size: 1.3rem; color: var(--kernel); margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.95rem; color: var(--kernel-dim); }
.summary-row.total { border-top: 1px solid var(--pine); padding-top: 16px; font-weight: 700; font-size: 1.1rem; color: var(--kernel); }
.empty-cart { text-align: center; padding: 80px 24px; }
.empty-cart h2 { font-size: 1.8rem; color: var(--kernel); margin-bottom: 16px; }
.empty-cart p { color: var(--kernel-dim); margin-bottom: 24px; }
.page-cart-item { display: flex; align-items: center; gap: 20px; background: var(--moss); border-radius: var(--radius-card); padding: 24px; border: 1px solid var(--pine); }
.page-cart-item img { width: 100px; height: 100px; object-fit: cover; border-radius: 12px; }
.page-cart-item-info { flex: 1; }
.page-cart-item-info h3 { font-size: 1.1rem; color: var(--kernel); margin-bottom: 6px; }
.page-cart-item-info p { font-size: 0.85rem; color: var(--kernel-dim); }
.page-cart-item-actions { display: flex; align-items: center; gap: 16px; }
.page-cart-item-price { font-weight: 700; color: var(--resin); font-size: 1.1rem; min-width: 100px; text-align: right; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; padding: 40px 0 70px; } .page-cart-item { flex-wrap: wrap; } .page-cart-item-price { width: 100%; text-align: left; } }

/* Checkout */
.checkout-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 0 100px; }
.checkout-form { background: var(--moss); border-radius: var(--radius-card); padding: 32px; border: 1px solid var(--pine); }
.checkout-form h2 { font-size: 1.3rem; color: var(--kernel); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--kernel); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border: 1px solid var(--pine); border-radius: 12px; font-family: inherit; font-size: 0.95rem; background: var(--forest); color: var(--kernel); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--resin); }
.payment-options { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.payment-option { border: 1px solid var(--pine); border-radius: 12px; padding: 16px; text-align: center; cursor: pointer; flex: 1; min-width: 120px; background: var(--forest); transition: all 0.2s; }
.payment-option.active { border-color: var(--resin); background: rgba(217,164,65,0.08); }
@media (max-width: 1023px) { .checkout-layout { grid-template-columns: 1fr; padding: 40px 0 70px; } .form-grid { grid-template-columns: 1fr; } }

/* Footer (dark assembly) */
#footerV2 { background: #14231B; color: #EFE7D4; padding: 80px 0 24px; border-top: none; }
#footerV2 .footer-v2-inner { width: min(1180px, 92%); margin: 0 auto; }
#footerV2 .footer-v2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 32px; margin-bottom: 64px; }
#footerV2 .footer-v2-col h4 { font-family: Manrope, sans-sans-serif; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; margin: 0 0 18px; color: #EFE7D4; }
#footerV2 .footer-v2-col a { display: block; color: rgba(239,231,212,0.75); text-decoration: none; font-size: 0.9rem; font-weight: 500; line-height: 1.5; margin-bottom: 10px; transition: color 0.2s; }
#footerV2 .footer-v2-col a:hover { color: #EFE7D4; }
#footerV2 .footer-v2-sub p { color: rgba(239,231,212,0.75); font-size: 0.85rem; line-height: 1.6; margin: 0 0 14px; }
#footerV2 .footer-v2-form { display: flex; gap: 8px; margin-bottom: 12px; }
#footerV2 .footer-v2-form input { flex: 1; min-width: 0; background: rgba(29,49,38,0.1); border: 1px solid rgba(51,81,62,0.2); color: #EFE7D4; padding: 10px 14px; border-radius: 6px; font-size: 0.85rem; outline: none; }
#footerV2 .footer-v2-form input::placeholder { color: rgba(239,231,212,0.45); }
#footerV2 .footer-v2-form button { background: #1D3126; color: #EFE7D4; border: none; padding: 10px 16px; border-radius: 6px; font-weight: 800; font-size: 0.78rem; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
#footerV2 .footer-v2-form button:hover { background: rgba(29,49,38,0.85); }
#footerV2 .footer-v2-check { display: flex; align-items: flex-start; gap: 8px; font-size: 0.72rem; line-height: 1.4; cursor: pointer; color: rgba(239,231,212,0.55); }
#footerV2 .footer-v2-check input { margin-top: 2px; flex-shrink: 0; }
#footerV2 .footer-v2-pay { display: flex; flex-wrap: wrap; gap: 8px; }
#footerV2 .footer-v2-pay .pay-chip { background: #1D3126; color: #EFE7D4; padding: 5px 10px; border-radius: 4px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.5px; }
#footerV2 .footer-v2-brand { font-size: clamp(56px, 11vw, 170px); font-weight: 800; line-height: 0.85; letter-spacing: -0.04em; text-align: center; white-space: nowrap; margin-bottom: 48px; color: #EFE7D4; }
#footerV2 .footer-v2-brand .brand-sep { font-weight: 300; opacity: 0.8; }
#footerV2 .footer-v2-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; border-top: 1px solid rgba(51,81,62,0.15); padding-top: 24px; font-size: 0.72rem; color: rgba(239,231,212,0.55); }
#footerV2 .footer-v2-bottom-left { font-style: italic; font-family: 'Manrope', sans-sans-serif; color: rgba(239,231,212,0.85); }
#footerV2 .footer-v2-bottom-center { font-weight: 700; color: #EFE7D4; }
@media (max-width: 900px) { #footerV2 .footer-v2-grid { grid-template-columns: repeat(2, 1fr); } #footerV2 .footer-v2-bottom { flex-direction: column; text-align: center; } }
@media (max-width: 560px) { #footerV2 .footer-v2-grid { grid-template-columns: 1fr; } #footerV2 .footer-v2-brand { font-size: clamp(40px, 12vw, 70px); white-space: normal; } }

/* Utility */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }


/* Dark forest theme base */
body { background: var(--forest); color: var(--kernel); }
h1, h2, h3, h4, h5, h6, .display, .section-title, .page-hero h1, .partnership-hero h1, .shop-hero h1, .hero-title { font-family: 'Manrope', sans-sans-serif; }
