:root {
  --bg: #f6f0e7;
  --surface: rgba(255, 252, 247, 0.84);
  --surface-solid: #fffaf4;
  --ink: #1e1a17;
  --muted: #675d55;
  --line: rgba(30, 26, 23, 0.1);
  --accent: #f2a320;
  --accent-dark: #da8b09;
  --dark: #1c1a18;
  --shadow: 0 22px 56px rgba(39, 29, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(242, 163, 32, 0.16), transparent 18%),
    radial-gradient(circle at top left, rgba(112, 93, 72, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf7f1 0%, #f0e7da 100%);
}

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

button {
  font: inherit;
}

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

.shipping-bar {
  padding: 10px 16px;
  text-align: center;
  background: #161412;
  color: #fff9ef;
  font-size: 0.92rem;
}

.site-header,
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--dark);
  color: #fff9ef;
  font-family: "Syne", sans-serif;
  font-weight: 800;
}

.brand-badge img{
  width: 40px;

}

.brand p,
.brand small,
.eyebrow,
.stock-badge,
.offer-copy,
.trust-points,
.rating-line,
.details-list,
.faq-list p {
  margin: 0;
}

.brand p,
h1,
h2,
h3,
.bundle-price,
.cart-total strong,
.cart-header h2 {
  font-family: sans-serif;
}

.brand p {
  font-size: 1.06rem;
  font-weight: 700;
}

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

.cart-toggle,
.btn,
.bundle-option,
.add-to-cart,
.cart-close,
.thumb {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff9ef;
}

.cart-toggle span {
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.page-shell {
  padding: 26px 0 80px;
}

.product-hero,
.feature-band,
.benefits-grid,
.split-section {
  display: grid;
  gap: 22px;
}

.product-hero {
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
}

.gallery-column,
.offer-column,
.feature-band article,
.benefits-grid article,
.info-card,
.faq-list details,
.image-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.gallery-column,
.offer-column {
  padding: 24px;
  border-radius: 34px;
}

.gallery-main {
  overflow: hidden;
  border-radius: 28px;
  background: #ece2d2;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumb {
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: transparent;
  border: 2px solid transparent;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb.active,
.thumb:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.stock-badge,
.eyebrow {
  display: inline-flex;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.stock-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(242, 163, 32, 0.14);
  color: #8a5a00;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.97;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.rating-line strong {
  color: var(--ink);
}

.price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 18px;
  margin: 22px 0;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff1d8, #fff8ef);
  border: 1px solid rgba(242, 163, 32, 0.22);
}

.price-box small,
.bundle-copy small {
  display: block;
  color: var(--muted);
}

.price-box s {
  color: var(--muted);
}

.price-box strong {
  font-size: clamp(2rem, 4vw, 3rem);
}

.discount-badge {
  margin-left: auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
}

.offer-copy,
.section-heading p,
.benefits-grid p,
.info-card p,
.faq-list p,
.feature-band p {
  color: var(--muted);
  line-height: 1.7;
}

.bundle-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.bundle-option {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: var(--surface-solid);
  border: 1px solid rgba(30, 26, 23, 0.08);
  border-radius: 24px;
}

.bundle-option:hover,
.bundle-option.featured {
  transform: translateY(-2px);
  border-color: rgba(242, 163, 32, 0.5);
}

.bundle-tag {
  position: absolute;
  top: -10px;
  left: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.bundle-copy strong {
  display: block;
  margin-bottom: 3px;
}

.bundle-price {
  font-size: 1.4rem;
  font-weight: 800;
}

.cta-stack {
  display: grid;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.btn:hover,
.bundle-option:hover,
.cart-toggle:hover,
.cart-close:hover,
.add-to-cart:hover {
  transform: translateY(-2px);
}

.btn-primary,
.add-to-cart {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover,
.add-to-cart:hover {
  background: var(--accent-dark);
  color: #fffdf8;
}

.btn-secondary {
  background: rgba(28, 26, 24, 0.08);
  color: var(--ink);
}

.trust-points {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-left: 20px;
  color: var(--muted);
}

.feature-band {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.feature-band article,
.benefits-grid article,
.info-card,
.image-card {
  padding: 24px;
  border-radius: 28px;
}

.feature-band strong,
.benefits-grid h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.section {
  padding-top: 78px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.info-card h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
}

.eyebrow {
  color: #8a5a00;
}

.image-card img,
.media-card img {
  width: 100%;
  border-radius: 20px;
}

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

.split-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 1fr 1fr;
}

.text-card.dark {
  background: #1b1816;
  color: #fffaf2;
}

.text-card.dark p,
.text-card.dark .eyebrow,
.text-card.dark .details-list {
  color: rgba(255, 250, 242, 0.78);
}

.details-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  padding-top: 10px;
}

.site-footer {
  margin-top: 88px;
  padding: 0 0 36px;
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 38px 28px;
  text-align: center;
  color: #fff9ef;
  background:
    linear-gradient(180deg, rgba(24, 20, 18, 0.98), rgba(17, 15, 13, 0.98)),
    linear-gradient(135deg, rgba(242, 163, 32, 0.08), transparent 35%);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(18, 14, 12, 0.24);
}

.footer-title,
.footer-copy {
  margin: 0;
}

.footer-intro {
  max-width: 760px;
  margin: 0 auto 26px;
}

.footer-eyebrow {
  color: rgba(242, 163, 32, 0.88);
  margin-bottom: 10px;
}

.footer-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 10px;
}

.footer-subtitle {
  margin: 0;
  color: rgba(255, 249, 239, 0.72);
  line-height: 1.7;
}

.seal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.seal-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.seal-card img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  color: rgba(255, 249, 239, 0.76);
  font-size: 0.96rem;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  padding: 24px;
  background: rgba(255, 248, 241, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: -18px 0 60px rgba(22, 17, 13, 0.18);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  z-index: 20;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.4rem;
  background: rgba(30, 26, 23, 0.08);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
}

.cart-item,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cart-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item p,
.cart-item small,
.empty-state,
.cart-total span {
  margin: 0;
  color: var(--muted);
}

.cart-footer {
  display: grid;
  gap: 18px;
}

.cart-checkout {
  width: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 10, 7, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 980px) {
  .product-hero,
  .feature-band,
  .benefits-grid,
  .split-section,
  .split-section.reverse,
  .seal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .page-shell,
  .footer-shell {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-column,
  .offer-column,
  .feature-band article,
  .benefits-grid article,
  .info-card,
  .image-card {
    padding: 18px;
  }

  h1 {
    font-size: 2.45rem;
  }

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

  .price-box,
  .bundle-option {
    align-items: start;
    flex-direction: column;
  }

  .seal-card {
    min-height: 132px;
  }

  .seal-card img {
    max-height: 88px;
  }

  .footer-shell {
    padding: 28px 18px 24px;
  }
}
