:root {
  --bg: #f6f1eb;
  --bg-soft: #fbf8f4;
  --text: #1f1a17;
  --muted: #6f655d;
  --line: rgba(31, 26, 23, 0.1);
  --primary: #3d2b1f;
  --primary-2: #6b4c35;
  --accent: #c48b5a;
  --white: #ffffff;
  --success: #1d7a43;
  --danger: #b42318;
  --shadow: 0 14px 45px rgba(31, 26, 23, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.logo-text {
  font-size: 1.08rem;
  letter-spacing: 0.3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 999px;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* Hero */
.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(196, 139, 90, 0.14);
  color: var(--primary-2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: -1.8px;
}

.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 30px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  background: #2f2016;
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--white);
}

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

.hero-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 280px;
}

.hero-badge strong {
  display: block;
  margin-bottom: 6px;
}

/* Sections */
.section {
  padding: 44px 0 80px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin: 0 0 8px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 600px;
}

/* Cards */
.grid-3,
.grid-4,
.products-grid {
  display: grid;
  gap: 24px;
}

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

.grid-4,
.products-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid rgba(31, 26, 23, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card {
  padding: 26px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.product-card {
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 12px;
  letter-spacing: 0.3px;
}

.product-body {
  padding: 20px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.product-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.product-actions .btn {
  min-height: 46px;
  padding: 0 18px;
}

/* Highlight section */
.highlight {
  padding: 80px 0;
}

.highlight-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.highlight-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.highlight-content {
  padding: 42px;
}

.highlight-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin: 0 0 16px;
}

.highlight-content p {
  color: var(--muted);
  margin: 0 0 26px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
}

/* Reviews */
.review-card {
  padding: 26px;
}

.review-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1rem;
}

.review-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.review-card strong {
  font-size: 0.98rem;
}

/* Page hero */
.page-hero {
  padding: 56px 0 28px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  letter-spacing: -1.5px;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 780px;
}

/* Product detail */
.product-detail {
  padding: 30px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.product-gallery {
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.product-panel {
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.product-panel h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.product-panel .product-subtitle {
  color: var(--muted);
  margin-bottom: 22px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.meta-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--bg-soft);
}

.meta-box span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-row select,
.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 0 16px;
  outline: none;
}

.form-row textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

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

.qty-wrap input {
  max-width: 120px;
  text-align: center;
}

.product-panel .btn {
  width: 100%;
}

/* Cart */
.cart-section {
  padding: 24px 0 80px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.cart-items,
.cart-summary,
.info-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
}

.cart-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.cart-item-controls input {
  width: 80px;
  min-height: 44px;
  text-align: center;
}

.cart-item-price {
  text-align: right;
  font-weight: 700;
  font-size: 1.05rem;
}

.remove-btn {
  border: 0;
  background: none;
  color: var(--danger);
  cursor: pointer;
  padding: 0;
  font-weight: 600;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-of-type {
  border-bottom: 0;
}

.summary-total {
  font-size: 1.2rem;
  font-weight: 700;
}

.empty-cart {
  text-align: center;
  padding: 30px 0 12px;
  color: var(--muted);
}

/* Contact / checkout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Footer */
.site-footer {
  background: #1f1a17;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
  padding: 56px 0 28px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 16px;
  font-size: 0.94rem;
}

/* Utility */
.mt-0 {
  margin-top: 0;
}

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(29, 122, 67, 0.08);
  color: var(--success);
  font-weight: 600;
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .highlight-wrap,
  .product-layout,
  .cart-layout,
  .two-col {
    grid-template-columns: 1fr;
  }

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

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

  .product-gallery img {
    height: 460px;
  }

  .hero-card img {
    height: 460px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 18px 16px 22px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .grid-4,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .highlight {
    padding: 32px 0 60px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-price {
    text-align: left;
  }

  .product-meta {
    grid-template-columns: 1fr;
  }
}
/* ===== V2 PREMIUM ===== */

.topbar {
  background: #1a1512;
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  letter-spacing: 0.2px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
}

.cart-icon {
  font-size: 1rem;
}

.hero-premium {
  padding: 44px 0 28px;
}

.hero-premium-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-premium-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
  margin: 0 0 20px;
  letter-spacing: -2.3px;
  max-width: 760px;
}

.hero-premium-copy p {
  font-size: 1.08rem;
  max-width: 620px;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.metric-box {
  background: var(--white);
  border: 1px solid rgba(31, 26, 23, 0.06);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 16px 18px;
  min-width: 150px;
}

.metric-box strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 4px;
}

.metric-box span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-premium-visual {
  position: relative;
}

.hero-image-main {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-main img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 14px 16px;
  min-width: 190px;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.floating-card strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

.fc-1 {
  top: 26px;
  right: -18px;
}

.fc-2 {
  bottom: 34px;
  left: -18px;
}

.brand-strip {
  padding: 16px 0 8px;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-strip-inner span {
  background: var(--white);
  border: 1px solid rgba(31,26,23,0.06);
  border-radius: 999px;
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  font-weight: 600;
  color: var(--primary-2);
  box-shadow: var(--shadow);
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 0.78rem;
}

.premium-head h2 {
  margin-top: 0;
}

.premium-products .product-card {
  border-radius: 22px;
  overflow: hidden;
}

.premium-products .product-media img {
  height: 340px;
}

.premium-products .product-body {
  padding: 22px;
}

.premium-products .product-body h3 {
  font-size: 1.15rem;
}

.split-showcase {
  padding: 40px 0 82px;
}

.split-showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin: 0 0 16px;
  letter-spacing: -1.3px;
}

.split-copy p {
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 600px;
}

.split-card {
  display: flex;
  justify-content: center;
}

.subscription-card {
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, #ffffff 0%, #f6efe8 100%);
  border: 1px solid rgba(31,26,23,0.07);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.subscription-label {
  display: inline-block;
  background: rgba(196, 139, 90, 0.14);
  color: var(--primary-2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.subscription-card h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.subscription-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.subscription-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 20px;
}

.subscription-price strong {
  font-size: 2.3rem;
  line-height: 1;
}

.subscription-price span {
  color: var(--muted);
}

.subscription-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.subscription-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(31,26,23,0.08);
}

.editorial-section {
  padding: 0 0 82px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.editorial-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.editorial-copy {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 40px;
}

.editorial-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  margin: 0 0 16px;
}

.editorial-copy p {
  color: var(--muted);
  margin: 0 0 20px;
}

.text-link {
  font-weight: 700;
  color: var(--primary);
}

.premium-review {
  border-radius: 22px;
}

.premium-page-hero {
  padding: 56px 0 16px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-pill {
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.shop-meta {
  color: var(--muted);
  font-weight: 600;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.cart-drawer.active {
  pointer-events: auto;
}

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
  opacity: 0;
  transition: 0.3s ease;
}

.cart-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.35s ease;
}

.cart-drawer.active .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer.active .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-head h3 {
  margin: 0;
}

.cart-close {
  border: 0;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 16px 20px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-item img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
}

.drawer-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.drawer-item p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.drawer-item strong {
  font-size: 0.96rem;
}

.cart-drawer-footer {
  border-top: 1px solid var(--line);
  padding: 18px 20px 20px;
  display: grid;
  gap: 12px;
}

.drawer-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.06rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .hero-premium-grid,
  .split-showcase-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-image-main img {
    height: 520px;
  }

  .fc-1,
  .fc-2 {
    position: static;
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    min-height: auto;
  }

  .brand-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-premium-copy h1 {
    font-size: 2.5rem;
  }

  .hero-image-main img {
    height: 420px;
  }

  .editorial-copy {
    padding: 28px;
  }

  .subscription-card {
    padding: 26px;
  }
}
.hero-premium {
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(196, 139, 90, 0.16) 0%, rgba(196, 139, 90, 0) 70%);
  pointer-events: none;
}

.hero-premium::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(61, 43, 31, 0.08) 0%, rgba(61, 43, 31, 0) 72%);
  pointer-events: none;
}

.hero-premium-copy,
.hero-premium-visual {
  position: relative;
  z-index: 2;
}

.hero-image-main {
  border: 1px solid rgba(255,255,255,0.35);
}

.floating-card {
  border: 1px solid rgba(31, 26, 23, 0.08);
}

.floating-card strong {
  font-weight: 600;
}
.product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(31, 26, 23, 0.06);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(31, 26, 23, 0.12);
  border-color: rgba(196, 139, 90, 0.22);
}

.product-media {
  background: #efe7df;
}

.product-media img {
  transition: transform 0.45s ease;
}

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

.product-body h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.product-body p {
  min-height: 48px;
}

.price {
  letter-spacing: -0.4px;
}

.badge {
  background: rgba(31, 26, 23, 0.88);
  backdrop-filter: blur(8px);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cart-icon {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.back-nav {
  padding: 8px 0 0;
}

.back-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.back-button:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.back-nav {
  padding: 8px 0 0;
}

.back-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.back-button:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.product-rating {
  font-size: 0.9rem;
  color: #c48b5a;
  margin: 8px 0 12px;
  font-weight: 600;
}

.rating-text {
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
}

.trust-line {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #1f1a17;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.product-card {
  transition: all .35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

.product-panel h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.product-subtitle {
  color: var(--muted);
  margin-bottom: 22px;
}

.product-detail .info-card {
  background: var(--bg-soft);
}

@media (max-width: 768px) {
  .product-detail .two-col {
    grid-template-columns: 1fr !important;
  }
}