/** Shopify CDN: Minification failed

Line 60:12 Expected identifier but found whitespace
Line 60:14 Unexpected "{"
Line 60:23 Expected ":"
Line 60:67 Expected ":"
Line 997:0 Unexpected "}"

**/
/* ============================================
   KAYA LEATHER STUDIO — Theme Stylesheet v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --gd:    #1a4a2e;
  --gm:    #2d6a47;
  --gl:    #7aaa8a;
  --gp:    #d5e8dc;
  --cream: #f5f0e8;
  --cream2:#ede8df;
  --blk:   #111111;
  --dg:    #555555;
  --mg:    #888888;
  --lg:    #e0e0e0;
  --wh:    #ffffff;

  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Jost', sans-serif;

  --transition: 0.25s ease;
  --max-width: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-weight: 400;
  color: var(--blk);
  background: var(--wh);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--fd); font-weight: 400; }
.label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mg);
}

.header-logo-img {
  display: block;
  max-width: {{ section.settings.logo_max_width | default: 160 }}px;
  width: auto;
  height: auto;
  max-height: 52px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fd);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--gd);
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  background: var(--gd);
  color: var(--wh);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 30px;
  font-family: var(--fb);
  font-weight: 400;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gm); }

.btn-outline {
  display: inline-block;
  border: 0.5px solid var(--blk);
  color: var(--blk);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  font-family: var(--fb);
  font-weight: 400;
  transition: background var(--transition), color var(--transition);
  background: none;
  cursor: pointer;
}
.btn-outline:hover { background: var(--blk); color: var(--wh); }

.btn-ghost {
  display: inline-block;
  border: 0.5px solid var(--gp);
  color: var(--gp);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  font-family: var(--fb);
  font-weight: 400;
  transition: background var(--transition);
  background: none;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(213,232,220,0.1); }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--gd);
  color: var(--gp);
  text-align: center;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--wh);
  border-bottom: 0.5px solid var(--lg);
}
.header-inner {
  max-width: 100%;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blk);
  font-weight: 400;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--gd); }
.header-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header-icons a,
.header-icons button {
  color: var(--blk);
  transition: color var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}
.header-icons a:hover,
.header-icons button:hover { color: var(--gd); }
.header-icons svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gd);
  color: var(--wh);
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--blk);
  transition: all 0.3s ease;
}

/* ── Mobile Nav Drawer ── */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--wh);
  z-index: 300;
  padding: 32px 28px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px;
  color: var(--blk);
}
.nav-drawer-logo {
  font-family: var(--fd);
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--gd);
  margin-bottom: 36px;
  margin-top: 8px;
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.nav-drawer-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blk);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--lg);
  font-weight: 400;
}
.nav-drawer-footer {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: 0.5px solid var(--lg);
}
.nav-drawer-footer a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mg);
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--wh);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,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: 0.5px solid var(--lg);
}
.cart-drawer-title {
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: 0.05em;
}
.cart-drawer-close { color: var(--blk); padding: 4px; }
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  text-align: center;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cart-empty p {
  font-size: 13px;
  color: var(--mg);
  letter-spacing: 0.05em;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--lg);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  background: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cart-item-variant {
  font-size: 11px;
  color: var(--mg);
  margin-bottom: 8px;
}
.cart-item-price {
  font-size: 12px;
  color: var(--dg);
}
.cart-item-remove {
  font-size: 10px;
  color: var(--mg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 6px;
  display: block;
}
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 0.5px solid var(--lg);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.cart-shipping-note {
  font-size: 10px;
  color: var(--mg);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.cart-checkout-btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.cart-view-link {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mg);
  text-decoration: underline;
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  border-top: 0.5px solid var(--lg);
  border-bottom: 0.5px solid var(--lg);
  padding: 11px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.marquee-track span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mg);
}
.marquee-track .sep {
  color: var(--gd);
  font-size: 13px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero ── */
.hero {
  background: var(--cream);
  height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: var(--cream);
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 44px;
  color: var(--blk);
  margin-bottom: 8px;
  line-height: 1.15;
}
.hero-content p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dg);
  margin-bottom: 22px;
}
.hero-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mg);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-dot.active { background: var(--gd); }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--blk);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.8);
  transition: background var(--transition);
}
.hero-arrow:hover { background: var(--wh); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  padding: 52px 16px 32px;
}
.section-header .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mg);
  display: block;
  margin-bottom: 8px;
}
.section-header h2 { font-size: 30px; }

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lg);
}
.product-card {
  background: var(--wh);
  cursor: pointer;
  overflow: hidden;
  display: block;
  transition: none;
}
.product-card-img {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.product-card-img .img-primary,
.product-card-img .img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.product-card-img .img-primary  { z-index: 1; transform: translateX(0); }
.product-card-img .img-secondary { z-index: 2; transform: translateX(100%); }
.product-card:hover .product-card-img .img-primary  { transform: translateX(-100%); }
.product-card:hover .product-card-img .img-secondary { transform: translateX(0); }
.product-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-info {
  padding: 14px 16px 18px;
}
.product-card-name {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--blk);
}
.product-card-price {
  font-size: 12px;
  color: var(--dg);
}
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--gd);
  color: var(--gp);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
}

/* ── View All ── */
.view-all-wrap {
  text-align: center;
  padding: 0 0 52px;
}

/* ── Lifestyle Strip ── */
.lifestyle-strip {
  display: flex;
  gap: 1px;
  background: var(--lg);
  overflow: hidden;
}
.lifestyle-item {
  flex: 1;
  aspect-ratio: 2 / 3;
  background: var(--cream2);
  overflow: hidden;
  position: relative;
}
.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lifestyle-item:hover img { transform: scale(1.04); }

/* ── Editorial Banner ── */
.editorial-banner {
  background: var(--gd);
  padding: 72px 32px;
  text-align: center;
}
.editorial-banner .lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gl);
  display: block;
  margin-bottom: 12px;
}
.editorial-banner h2 {
  font-family: var(--fd);
  font-size: 44px;
  color: var(--gp);
  margin-bottom: 8px;
  font-weight: 400;
}
.editorial-banner p {
  font-size: 12px;
  color: var(--gl);
  margin-bottom: 26px;
  letter-spacing: 0.06em;
}

/* ── Featured Collection Section ── */
.featured-collection {
  padding: 0 0 64px;
}

/* ── Product Page ── */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 70vh;
}
.product-gallery {
  position: relative;
  background: var(--cream);
}
.product-main-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-thumbs {
  display: flex;
  gap: 1px;
  background: var(--lg);
  border-top: 1px solid var(--lg);
}
.product-thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.product-thumb.active,
.product-thumb:hover { opacity: 1; }
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info-panel {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-info-panel .label { margin-bottom: 10px; }
.product-info-panel h1 {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-info-price {
  font-size: 18px;
  color: var(--blk);
  margin-bottom: 28px;
  font-family: var(--fb);
  font-weight: 300;
}
.product-info-price s {
  color: var(--mg);
  font-size: 14px;
  margin-right: 8px;
}
.variant-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mg);
  margin-bottom: 10px;
  margin-top: 20px;
}
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
  border: 0.5px solid var(--lg);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--wh);
  color: var(--blk);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--fb);
}
.variant-btn:hover,
.variant-btn.active {
  border-color: var(--blk);
  background: var(--blk);
  color: var(--wh);
}
.product-description {
  font-size: 13px;
  line-height: 1.8;
  color: var(--dg);
  margin: 24px 0;
}
.add-to-cart-btn {
  width: 100%;
  background: var(--gd);
  color: var(--wh);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 24px;
  font-family: var(--fb);
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  margin-top: 8px;
}
.add-to-cart-btn:hover { background: var(--gm); }
.add-to-cart-btn:disabled {
  background: var(--lg);
  color: var(--mg);
  cursor: not-allowed;
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 0.5px solid var(--lg);
}
.product-meta-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--dg);
  letter-spacing: 0.04em;
}
.product-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gd);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ── Collection Page ── */
.collection-header {
  padding: 52px 32px 36px;
  text-align: center;
  border-bottom: 0.5px solid var(--lg);
}
.collection-header h1 { font-size: 36px; margin-bottom: 8px; }
.collection-header p {
  font-size: 12px;
  color: var(--mg);
  letter-spacing: 0.06em;
  max-width: 500px;
  margin: 0 auto;
}
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 0.5px solid var(--lg);
}
.collection-count {
  font-size: 11px;
  color: var(--mg);
  letter-spacing: 0.06em;
}
.sort-select {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0.5px solid var(--lg);
  padding: 8px 12px;
  font-family: var(--fb);
  background: var(--wh);
  color: var(--blk);
  cursor: pointer;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--lg);
  padding: 0 0 64px;
}

/* ── Footer ── */
.site-footer { background: #111; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 32px 48px;
}
.footer-logo {
  font-family: var(--fd);
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--gp);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 11px;
  color: #6a9a72;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a9a72;
  margin-bottom: 14px;
  font-family: var(--fb);
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 11px;
  color: #aacaaf;
  margin-bottom: 9px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gp); }
.footer-bottom {
  border-top: 0.5px solid #222;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 10px;
  color: #4a6a4e;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a { transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gl); }

/* ── Placeholder SVG ── */
.placeholder-svg {
  width: 100%;
  height: 100%;
  fill: var(--cream2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-nav { display: none; }
  .hero-content h1 { font-size: 30px; }
  .hero { height: 380px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .product-page { grid-template-columns: 1fr; }
  .product-info-panel { padding: 32px 24px; }
  .lifestyle-strip { flex-wrap: wrap; }
  .lifestyle-item { min-width: calc(50% - 1px); }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 14px 20px; text-align: center; }
  .editorial-banner h2 { font-size: 32px; }
  .editorial-banner { padding: 52px 20px; }
  .header-inner { padding: 0 20px; }
  .header-logo-img { max-height: 48px; }
  .header-logo { font-size: 20px; letter-spacing: 0.16em; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cart-drawer { width: 100vw; }
  .hero-content h1 { font-size: 26px; }
}


/* ============================================
   AUTHENTICATION PAGE
   ============================================ */

/* ── Hero ── */
.auth-hero {
  background: var(--gd);
  padding: 72px 32px 64px;
  text-align: center;
}
.auth-hero-inner { max-width: 640px; margin: 0 auto; }
.auth-hero .label {
    background: #d8c3a5;
    color: #1f1f1f;
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 14px;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 600;
    border-radius: 2px;
}
}
.auth-hero h1 {
  font-size: 48px;
  color: var(--gp);
  margin-bottom: 16px;
  line-height: 1.1;
}
.auth-hero-sub {
  font-size: 13px;
  color: var(--gl);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ── Form Section ── */
.auth-form-section {
  background: var(--cream);
  padding: 64px 32px;
}
.auth-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.auth-form-card {
  background: var(--wh);
  border: 0.5px solid var(--lg);
  padding: 40px;
}
.auth-form-label {
  font-family: var(--fd);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--blk);
}
.auth-form-hint {
  font-size: 12px;
  color: var(--mg);
  margin-bottom: 24px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.auth-input-row {
  display: flex;
  gap: 0;
  border: 0.5px solid var(--lg);
  transition: border-color 0.2s ease;
}
.auth-input-row:focus-within { border-color: var(--gd); }
.auth-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--fb);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--blk);
  background: var(--wh);
  text-transform: uppercase;
}
.auth-input::placeholder {
  color: var(--mg);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.auth-submit-btn {
  flex-shrink: 0;
  border-left: 0.5px solid var(--lg);
  padding: 14px 28px;
  font-size: 10px;
}
.auth-input-note {
  font-size: 10px;
  color: var(--mg);
  letter-spacing: 0.08em;
  margin-top: 10px;
}

/* ── Result cards ── */
.auth-result {
  background: var(--wh);
  border: 0.5px solid var(--lg);
  padding: 40px;
  text-align: center;
  animation: authFadeIn 0.4s ease;
}
@keyframes authFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.auth-result-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.auth-result-icon svg {
  width: 26px;
  height: 26px;
}
.auth-result-icon--success {
  background: #d5e8dc;
  color: var(--gd);
}
.auth-result-icon--fail {
  background: #fde8e8;
  color: #a33232;
}
.auth-result-icon--warn {
  background: #fef3d5;
  color: #8a6500;
}

.auth-result-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.auth-result-badge--success { background: var(--gp); color: var(--gd); }
.auth-result-badge--fail    { background: #fde8e8; color: #a33232; }
.auth-result-badge--warn    { background: #fef3d5; color: #8a6500; }

.auth-result-title {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--blk);
}
.auth-result-sub {
  font-size: 12px;
  color: var(--mg);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.auth-result-body {
  font-size: 13px;
  color: var(--dg);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 28px;
}
.auth-result-body a { color: var(--gd); text-decoration: underline; }

.auth-result-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--lg);
  border: 0.5px solid var(--lg);
  margin-bottom: 28px;
}
.auth-meta-item {
  background: var(--cream);
  padding: 14px 12px;
  text-align: center;
}
.auth-meta-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg);
  margin-bottom: 5px;
}
.auth-meta-value {
  font-size: 11px;
  color: var(--blk);
  letter-spacing: 0.06em;
}
.auth-meta-verified { color: var(--gd); font-weight: 500; }

.auth-care-block {
  background: var(--cream);
  border: 0.5px solid var(--lg);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 24px;
}
.auth-care-heading {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg);
  margin-bottom: 12px;
}
.auth-care-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth-care-list li {
  font-size: 12px;
  color: var(--dg);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.auth-care-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gl);
  font-size: 11px;
}

.auth-verify-another { margin-top: 4px; }

/* ── How it works ── */
.auth-how-section {
  padding: 72px 32px;
  background: var(--wh);
}
.auth-how-inner { max-width: 900px; margin: 0 auto; }
.auth-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 40px;
}
.auth-step { text-align: center; }
.auth-step-num {
  font-family: var(--fd);
  font-size: 40px;
  color: var(--gp);
  margin-bottom: 14px;
  line-height: 1;
}
.auth-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--blk);
}
.auth-step p {
  font-size: 12px;
  color: var(--mg);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ── Trust bar ── */
.auth-trust-bar {
  background: var(--gd);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.auth-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gl);
}
.auth-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gl);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.auth-trust-sep {
  color: var(--gm);
  font-size: 16px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .auth-hero h1 { font-size: 34px; }
  .auth-hero { padding: 52px 20px 44px; }
  .auth-form-section { padding: 40px 20px; }
  .auth-form-card, .auth-result { padding: 28px 20px; }
  .auth-result-meta { grid-template-columns: 1fr; }
  .auth-steps { grid-template-columns: 1fr; gap: 32px; }
  .auth-how-section { padding: 52px 20px; }
  .auth-trust-bar { gap: 14px; }
  .auth-trust-sep { display: none; }
}

@media (max-width: 480px) {
  .auth-input-row { flex-direction: column; }
  .auth-submit-btn { border-left: none; border-top: 0.5px solid var(--lg); width: 100%; text-align: center; }
}
/* Darken body text */
body, p, li, span, .product-description {
  color: #1a1a1a !important;
}

/* Bold green product price */
#product-price,
.product-info-price,
span#product-price {
  color: #2e7d32 !important;
  font-weight: 700 !important;
}
/* Reduce gap between price and description */
.product-info-price,
#product-price,
.product-description {
  margin-bottom: 8px !important;
  margin-top: 0px !important;
}
/* Sharper, larger description text */
.product-description,
.product-description p,
.product-description span,
.product-description li {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #1a1a1a !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}
.product-card-name {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.product-card-price {
    color: #2e7d32 !important;
    font-weight: 800 !important;
}

.product-card-info {
    padding-top: 14px;
}

.product-card:hover img {
    transform: scale(1.02);
    transition: 0.3s ease;
}/* Luxury collection grid polish */
.collection-grid {
  gap: 1px !important;
  background: #ddd !important;
}

.product-card {
  background: #f7f7f7 !important;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-img {
  background: #f5f0ea !important;
  overflow: hidden;
}

.product-card img {
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card-info {
  padding: 16px 18px 20px !important;
  background: #f8f8f8 !important;
}

.product-card-name {
  font-weight: 800 !important;
  color: #111 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px !important;
  line-height: 1.4;
  margin-bottom: 8px;
}

.product-card-price {
  color: #2c4a2e !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em;
}

/* Softer product images */
.product-card img {
  width: 100%;
  height: auto;
  display: block;
}/* KAYA Add to Bag Button */
.add-to-cart-btn {
    background: #2c4a2e !important;
    border: 1px solid #2c4a2e !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    background: #233c25 !important;
    border-color: #233c25 !important;
}/* Buy It Now Button */
.buy-now-btn {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    background: #111 !important;
    border: 1px solid #111 !important;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.buy-now-btn:hover {
    background: #000 !important;
}.page h1,
.page-title,
.rte h1 {
    font-size: 32px !important;
    font-weight: 400;
    letter-spacing: -0.02em;
}/* White text on dark green sections */
/* White text on dark green authentication sections */
.auth-hero,
.auth-hero h1,
.auth-hero p,
.auth-trust-bar,
.auth-trust-item,
.auth-trust-item span {
  color: #ffffff !important;
}

.auth-trust-item svg {
  stroke: #ffffff !important;
}.product-detail-img,
.product-main img,
.product__media img {
  object-fit: contain !important;
  object-position: center top !important;
}