/* =============================================
   KAKAU — Section & Component Styles (Desktop)
   ============================================= */

/* --- Site Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease;
}

.site-header.site-header--scrolled {
  background: rgba(22, 3, 2, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 243, 233, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.site-header.site-header--scrolled .site-header__inner {
  /* padding-bottom: 20px; */
  padding-bottom: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding: 0;
}

.site-header__logo {
  width: 258px;
  height: auto;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
}

.site-header__nav-link {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-cream);
  transition: opacity 0.2s ease;
}

.site-header__nav-link:hover {
  opacity: 0.75;
}

.site-header__nav-link--active {
  color: var(--color-gold);
}

.site-header__cart-icon {
  width: 15px;
  height: 16px;
}

.site-header__mobile-actions {
  display: none;
}

.site-header__cart-link--mobile {
  display: none;
}

.site-header__menu-btn {
  padding: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__menu-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 21px;
  height: 12px;
}

.site-header__menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-cream);
  border-radius: 1px;
}

.site-header__drawer-header {
  display: none;
}

.site-header__drawer-overlay {
  display: none;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 832px;
  padding-top: var(--site-header-height);
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.hero-section__glow {
  position: absolute;
  top: 218px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-section__glow-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hero-section__chocolate {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  /* width: 1280px; */
  width: 100%;
  /* height: 720px; */
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-section__chocolate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .container {
  position: relative;
  z-index: 3;
  height: 100%;
}

.hero-section__content {
  position: relative;
  padding-top: var(--hero-content-gap);
  min-height: unset;
}

/* .hero-section__left {
  max-width: 480px;
} */

.hero-section__title {
  font-family: var(--font-body);
  font-size: var(--text-6xl);
  font-weight: 900;
  color: var(--color-cream);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-section__tagline {
  margin-top: 10px;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.4;
}

.hero-section__tagline-light {
  font-weight: 400;
}

.hero-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 93px;
  padding: 5px 20px 10px;
  background-color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}

.hero-section__cta:hover {
  background-color: #8f260c;
}

.hero-section__year {
  position: absolute;
  top: 287px;
  right: 0;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--color-cream);
  line-height: 1;
  white-space: nowrap;
}

/* --- Our Story Section --- */
.our-story-section {
  position: relative;
  padding: 51px 0 0px;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
  z-index: 2;
  isolation: isolate;
}

.our-story-section__watermark {
  position: absolute;
  top: 318px;
  left: 0;
  width: 100%;
  /* height: 526px; */
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.our-story-section__watermark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.our-story-section .container {
  position: relative;
  z-index: 1;
}

.our-story-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 745px);
  align-items: start;
  column-gap: 16px;
}

.our-story-section__label {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 33px 0 0;
}

.our-story-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.our-story-section__label-text {
  font-size: 25px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1;
}

.our-story-section__main {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 745px;
}

.our-story-section__heading {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--color-cream);
  line-height: normal;
  width: 100%;
  margin: 0;
}

.our-story-section__heading-line {
  display: block;
}

.our-story-section__heading-line--indent {
  padding-left: 185px;
}

.our-story-section__highlight {
  background-color: var(--color-accent);
  color: var(--color-cream);
  padding: 0 6px;
  line-height: 52px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.our-story-section__body {
  position: relative;
  width: 100%;
  max-width: 642px;
  margin-top: 7px;
  margin-left: 0;
  background-color: var(--color-primary-dark);
  padding: 39px 32px 40px 33px;
  box-sizing: border-box;
}

.our-story-section__paragraph {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-cream);
  text-align: justify;
  line-height: 1.45;
  width: 100%;
  max-width: 577px;
  margin: 0;
}

.our-story-section__paragraph+.our-story-section__paragraph {
  margin-top: 24px;
}

.our-story-section__link {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  margin-top: 32px;
}

.our-story-section__link-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: normal;
}

.our-story-section__link-arrow {
  width: 11px;
  height: 11px;
}

/* --- Top Collections Section --- */
.top-collections-section {
  position: relative;
  padding: 78px 0 118px;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
  z-index: 3;
}

.top-collections-section__divider {
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  height: 149px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.top-collections-section__divider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-collections-section__divider-bottom {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  width: 100%;
  height: 159px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.top-collections-section__divider-bottom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-collections-section .container {
  position: relative;
  z-index: 1;
}

.top-collections-section__layout {
  position: relative;
}

.top-collections-section__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 207px 0 20px;
}

.top-collections-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.top-collections-section__label-text {
  font-size: 25px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1;
}

.top-collections-section__scroll {
  position: relative;
  overflow: visible;
}

.top-collections-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 283px);
  justify-content: center;
  column-gap: 16px;
  align-items: start;
}

.top-collections-section__card {
  width: 283px;
}

.top-collections-section__card--offset-1 {
  margin-top: 121px;
}

.top-collections-section__card--offset-2 {
  margin-top: 40px;
}

.top-collections-section__card--offset-3 {
  margin-top: 0;
}

.top-collections-section__card--offset-4 {
  margin-top: 52px;
}

.top-collections-section__card-image-wrap {
  position: relative;
  width: 283px;
  height: 343px;
  background-color: var(--color-gold);
  overflow: hidden;
}

.top-collections-section__card-image {
  display: block;
  width: 283px;
  height: 335px;
  object-fit: cover;
}

.top-collections-section__card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 331px;
  background: linear-gradient(to bottom, rgba(22, 3, 2, 0) 0%, var(--color-primary-dark) 100%);
  pointer-events: none;
}

.top-collections-section__card-info {
  position: absolute;
  left: 19px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.top-collections-section__card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: normal;
  margin: 0;
}

.top-collections-section__card-subtitle {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: normal;
  margin: 0;
}

/* --- Process Section --- */
.process-section {
  position: relative;
  min-height: 1070px;
  padding: 0;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.process-section__illustration-left {
  position: absolute;
  top: 317px;
  left: -115px;
  width: 580px;
  height: 580px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.process-section__illustration-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section__illustration-right {
  position: absolute;
  top: 317px;
  left: calc(69% - 13.33px);
  width: 580px;
  height: 580px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.process-section__illustration-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section__pattern-band {
  position: absolute;
  top: 869px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: 201px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.process-section__pattern-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section__layout {
  position: relative;
}

.process-section__label {
  position: absolute;
  top: 51px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  white-space: nowrap;
}

.process-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.process-section__label-text {
  font-size: 25px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1;
}

.process-section__label-text--mobile {
  display: none;
}

.process-section__heading {
  position: absolute;
  top: 128px;
  left: 50%;
  transform: translateX(-50%);
  width: 745px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--color-cream);
  text-align: center;
  line-height: normal;
  margin: 0;
}

.process-section__heading-line {
  display: block;
}

.process-section__highlight {
  background-color: var(--color-accent);
  color: var(--color-cream);
  padding: 0 8px;
  line-height: 52px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.process-section__steps {
  position: absolute;
  top: 321px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 84px;
  width: 339px;
  margin: 0;
}

.process-section__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 245px;
}

.process-section__step--wide {
  width: 343px;
}

.process-section__step-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: normal;
  margin: 0;
  width: 100%;
}

.process-section__step-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.7px;
  line-height: normal;
  margin: 0;
  width: 100%;
}

/* --- Best Sellers Section --- */
.best-sellers-section {
  position: relative;
  padding: 0px 0 120px;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
}

.best-sellers-section__pattern {
  position: absolute;
  /*top: 213px;*/
  top: 0;
  left: -52px;
  width: calc(100% + 104px);
  opacity: 0.12;
  pointer-events: none;
}

.best-sellers-section__pattern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-sellers-section__pattern-bottom {
  position: absolute;
  bottom: -64px;
  left: -48px;
  width: calc(100% + 96px);
  opacity: 0.12;
  pointer-events: none;
  transform: scaleY(-1) rotate(180deg);
  display: none;
}

.best-sellers-section__pattern-bottom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-sellers-section__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--section-label-gap);
  margin-bottom: 78px;
  position: relative;
  z-index: 1;
}

.best-sellers-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.best-sellers-section__label-text {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-cream);
}

.best-sellers-section__scroll {
  overflow: visible;
}

.best-sellers-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 283px);
  justify-content: center;
  /* column-gap: 16px;
  row-gap: 16px; */
  position: relative;
  z-index: 1;
}

.best-sellers-section__card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-accent);
  padding: 25px 10px 13px 9px;
  width: 283px;
}

.best-sellers-section__card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.best-sellers-section__card:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.best-sellers-section__card:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.best-sellers-section__card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.best-sellers-section__card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.best-sellers-section__card:nth-child(6) {
  grid-column: 1;
  grid-row: 3;
}

.best-sellers-section__card:nth-child(7) {
  grid-column: 2;
  grid-row: 3;
}

.best-sellers-section__card:nth-child(8) {
  grid-column: 4;
  grid-row: 3;
}

.best-sellers-section__card-image-wrap {
  position: relative;
  width: 100%;
  height: 268px;
  overflow: hidden;
}

.best-sellers-section__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-sellers-section__card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22, 3, 2, 0) 0%, var(--color-primary-dark) 100%);
  pointer-events: none;
}

.best-sellers-section__card-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px 10px 10px;
}

.best-sellers-section__card-title {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1.3;
}

.best-sellers-section__card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.best-sellers-section__card-stars {
  width: 60px;
  height: 12px;
}

.best-sellers-section__card-rating-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.best-sellers-section__card-bought {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-cream);
}

.best-sellers-section__card-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.best-sellers-section__card-price-current {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.best-sellers-section__card-price-symbol {
  font-size: 15px;
  font-weight: 400;
}

.best-sellers-section__card-price-mrp {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.best-sellers-section__card-delivery {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.best-sellers-section__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5px 20px 10px;
  background-color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}

.best-sellers-section__card-btn:hover {
  background-color: #0d0101;
}

.best-sellers-section__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.best-sellers-section__card-link .best-sellers-section__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Footer Section --- */
.footer-section {
  position: relative;
  padding: 44px 0 0;
  background-color: var(--color-gold);
  overflow: hidden;
  /* min-height: 702px; */
}

.footer-section__watermark {
  /* position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); */
  /* width: 1990px;
  height: 395px; */
  /* opacity: 0.4; */
  /* pointer-events: none; */
  width: 100%;
}

.footer-section__watermark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  margin-top: 120px;
}

.footer-section__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.footer-section__heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-primary-dark);
  line-height: 1.1;
}

.footer-section__columns {
  display: flex;
  gap: 82px;
}

.footer-section__column-title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-section__address {
  font-style: normal;
  margin-bottom: 15px;
}

.footer-section__address-line {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.4;
  font-family: var(--font-body);
}

.footer-section__social-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.footer-section__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section__social-text {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  width: 75px;
}

.footer-section__social-arrow {
  width: 13px;
  height: 12px;
  transform: rotate(320deg);
}


/* =============================================
   Medium — max-width: 1279px (2-column fallback)
   ============================================= */
@media (max-width: 1279px) and (min-width: 1025px) {
  .top-collections-section__label {
    margin: 160px 0 32px;
  }

  .top-collections-section__grid {
    grid-template-columns: repeat(2, minmax(0, 283px));
    justify-content: center;
    row-gap: 24px;
  }

  .top-collections-section__card--offset-1,
  .top-collections-section__card--offset-2,
  .top-collections-section__card--offset-3,
  .top-collections-section__card--offset-4 {
    margin-top: 0;
  }

  .top-collections-section__card-image-wrap,
  .top-collections-section__card-image {
    width: 100%;
    max-width: 283px;
  }

  .best-sellers-section__grid {
    grid-template-columns: repeat(2, minmax(0, 283px));
    justify-content: center;
  }

  .best-sellers-section__card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}


/* =============================================
   Tablet — max-width: 1024px
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --site-header-height: 120px;
    --hero-content-gap: 100px;
  }

  /* Hero Section */
  .hero-section {
    min-height: unset;
    padding-bottom: 76px;
  }

  .hero-section__glow {
    width: 80%;
    top: 180px;
    width: 100%;
  }
  .hero-section__glow-img {
    height: unset;
  }

  .hero-section__chocolate {
    width: 100%;
    height: 560px;
  }

  .hero-section__title {
    font-size: 90px;
  }

  .hero-section__year {
    font-size: 72px;
    right: 20px;
  }

  .hero-section__content {
    padding-top: var(--hero-content-gap);
    height: unset;
  }

  .hero-section__cta {
    margin-top: 60px;
  }

  .site-header__nav-list {
    gap: 32px;
  }

  /* Our Story Section */
  .our-story-section {
    padding: 48px 0 60px;
    overflow-x: clip;
  }

  .our-story-section__watermark {
    top: 220px;
    height: 420px;
    left: 0;
    right: auto;
    width: 100%;
  }

  .our-story-section__layout {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .our-story-section__label {
    margin: 0 0 32px;
  }

  .our-story-section__main {
    max-width: 100%;
    width: 100%;
  }

  .our-story-section__heading {
    width: 100%;
    font-size: 32px;
  }

  .our-story-section__heading-line--indent {
    padding-left: 80px;
  }

  .our-story-section__highlight {
    line-height: 44px;
  }

  .our-story-section__body {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin-top: 32px;
    margin-left: 0;
    padding: 32px 24px;
    box-sizing: border-box;
  }

  .our-story-section__paragraph {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    min-height: auto;
    text-align: justify;
  }

  .our-story-section__paragraph + .our-story-section__paragraph {
    margin-top: 20px;
  }

  .our-story-section__link {
    justify-content: flex-start;
    width: auto;
  }

  /* Top Collections Section */
  .top-collections-section {
    padding: 114px 0 142px;
  }

  .top-collections-section__layout {
    padding-bottom: 0;
  }

  .top-collections-section__divider {
    top: 60px;
    height: 120px;
  }

  .top-collections-section__divider-bottom {
    height: 120px;
  }

  .top-collections-section__label {
    margin: 60px 0 32px;
  }

  .top-collections-section__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding);
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .top-collections-section__scroll::-webkit-scrollbar {
    display: none;
  }

  .top-collections-section__grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    grid-template-columns: unset;
    justify-content: flex-start;
  }

  .top-collections-section__card {
    flex-shrink: 0;
    width: 283px;
  }

  .top-collections-section__card--offset-1,
  .top-collections-section__card--offset-2,
  .top-collections-section__card--offset-3,
  .top-collections-section__card--offset-4 {
    margin-top: 0;
  }

  .top-collections-section__card-image-wrap,
  .top-collections-section__card-image {
    width: 100%;
    max-width: 283px;
  }

  .top-collections-section__card-image-wrap {
    height: 343px;
  }

  .top-collections-section__card-image {
    height: 335px;
    object-fit: cover;
  }

  /* Best Sellers Section */
  .best-sellers-section__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding);
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .best-sellers-section__scroll::-webkit-scrollbar {
    display: none;
  }

  .best-sellers-section__grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    grid-template-columns: unset;
    justify-content: flex-start;
  }

  .best-sellers-section__card {
    flex-shrink: 0;
    width: 283px;
  }

  .best-sellers-section__card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .best-sellers-section__card-image-wrap {
    height: 268px;
  }

  /* Process Section */
  .process-section {
    min-height: auto;
  }

  .process-section__layout {
    min-height: auto;
    padding-bottom: 210px;
  }

  .process-section__pattern-band {
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }

  .process-section__label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 40px;
  }

  .process-section__heading {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    font-size: 32px;
    margin-bottom: 60px;
  }

  .process-section__highlight {
    line-height: 44px;
  }

  .process-section__steps {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    gap: 60px;
    margin: 0 auto;
  }

  .process-section__illustration-left,
  .process-section__illustration-right {
    top: 200px;
    width: 400px;
    height: 400px;
    opacity: 0.12;
  }

  .process-section__illustration-right {
    left: auto;
    right: -80px;
  }

  /* Footer Section */
  .footer-section__grid {
    flex-direction: column;
    gap: 48px;
  }

  .footer-section__heading {
    font-size: 48px;
  }

  .footer-section__columns {
    gap: 48px;
  }
  .best-sellers-section__pattern-bottom {
    display: none;
  }
}


/* =============================================
   Mobile — max-width: 768px (Figma: 402px frame)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --section-label-gap: 8px;
    --site-header-height: 68px;
    --hero-content-gap: 47px;
  }

  /* Site Header */
  .site-header.site-header--scrolled {
    background: rgba(22, 3, 2, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 243, 233, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  }

  .site-header.site-header--scrolled .site-header__inner {
    /* padding-bottom: 16px; */
    padding-bottom: 0;
  }

  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .site-header__logo {
    width: 135px;
  }

  .site-header__nav--desktop {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    z-index: 120;
    background: rgba(22, 3, 2, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 243, 233, 0.1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
    padding: 0;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.35s ease,
      visibility 0.35s ease;
  }

  .site-header__nav--desktop.site-header__nav--open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-header__drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    padding: 20px var(--container-padding);
    border-bottom: 1px solid rgba(255, 243, 233, 0.08);
  }

  .site-header__drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 0;
  }

  .site-header__drawer-close-icon {
    position: relative;
    width: 20px;
    height: 20px;
  }

  .site-header__drawer-close-icon::before,
  .site-header__drawer-close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--color-cream);
    border-radius: 1px;
  }

  .site-header__drawer-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header__drawer-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-header__drawer-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(22, 3, 2, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .site-header__drawer-overlay.site-header__drawer-overlay--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.site-header-menu-open {
    overflow: hidden;
  }

  body.site-header-menu-open .site-header__mobile-actions {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 32px var(--container-padding) 48px;
  }

  .site-header__nav-link {
    font-size: 18px;
  }

  .site-header__nav-item--cart {
    display: none;
  }

  .site-header__cart-link--mobile {
    display: flex;
    align-items: center;
    line-height: 0;
  }

  .site-header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 130;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  /* Hero Section */
  .hero-section {
    min-height: 614px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-section__glow {
    /* top: 236px; */
    top: 0;
    width: 781px;
    height: 302px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-section__glow-img {
    object-fit: contain;
  }

  .hero-section__chocolate {
    top: 188px;
    left: 50%;
    /* transform: translateX(-42%); */
    width: 752px;
    height: 423px;
  }

  .hero-section__content {
    padding-top: calc(var(--site-header-height) + var(--hero-content-gap));
    min-height: 550px;
  }

  .hero-section__left {
    /* max-width: 365px; */
    position: relative;
    z-index: 4;
  }

  .hero-section__title {
    font-size: 82px;
    line-height: 1;
  }

  .hero-section__tagline {
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.45;
  }

  .hero-section__year {
    position: absolute;
    top: 215px;
    right: 12px;
    margin-top: 0;
    font-size: 70px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
  }

  .hero-section__cta {
    position: absolute;
    top: 398px;
    right: 0px;
    margin-top: 0;
    font-size: 18px;
    padding: 5px 20px 10px;
    z-index: 4;
  }

  /* Our Story Section */
  .our-story-section {
    padding: 37px 0 0px;
    overflow-x: clip;
  }

  .our-story-section__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
  }

  .our-story-section__watermark {
    top: 130px;
    left: auto;
    right: -80%;
    width: 188%;
    height: 311px;
    opacity: 0.14;
  }

  .our-story-section__label {
    margin: 0 0 31px;
    gap: 8px;
  }

  .our-story-section__label-bar {
    width: 19px;
    height: 7px;
  }

  .our-story-section__label-text {
    font-size: 14px;
  }

  .our-story-section__main {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .our-story-section__heading {
    font-size: 18px;
    width: 100%;
    text-align: left;
  }

  .our-story-section__heading-line--indent {
    padding-left: 0;
  }

  .our-story-section__highlight {
    line-height: 28px;
    padding: 0 4px;
  }

  .our-story-section__body {
    width: 100%;
    /* max-width: min(235px, 100%); */
    margin-top: 28px;
    margin-left: auto;
    margin-right: 0;
    min-height: auto;
    padding: 0;
    background-color: transparent;
  }

  .our-story-section__paragraph {
    font-size: 12px;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    text-align: right;
  }

  .our-story-section__paragraph + .our-story-section__paragraph {
    margin-top: 18px;
  }

  .our-story-section__link {
    margin-top: 20px;
    gap: 10px;
    justify-content: flex-end;
    width: 100%;
  }

  .our-story-section__link-text {
    font-size: 10px;
  }

  .our-story-section__link-arrow {
    width: 5px;
    height: 5px;
  }

  /* Top Collections Section */
  .top-collections-section {
    padding: 47px 0 112px;
  }

  .top-collections-section__layout {
    padding-bottom: 0;
  }

  .top-collections-section__divider {
    top: 47px;
    height: 47px;
  }

  .top-collections-section__divider-bottom {
    height: 89px;
  }

  .top-collections-section__label {
    margin: 60px 0 36px;
    justify-content: center;
    gap: 8px;
  }

  .top-collections-section__label-bar {
    width: 19px;
    height: 7px;
  }

  .top-collections-section__label-text {
    font-size: 14px;
  }

  .top-collections-section__scroll {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding);
    scrollbar-width: none;
  }

  .top-collections-section__scroll::-webkit-scrollbar {
    display: none;
  }

  .top-collections-section__grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    grid-template-columns: unset;
  }

  .top-collections-section__card {
    flex-shrink: 0;
    width: 283px;
  }

  .top-collections-section__card--offset-1,
  .top-collections-section__card--offset-2,
  .top-collections-section__card--offset-3,
  .top-collections-section__card--offset-4 {
    margin-top: 0;
  }

  .top-collections-section__card-image-wrap {
    width: 283px;
    height: 343px;
  }

  .top-collections-section__card-image {
    width: 283px;
    height: 335px;
  }

  .top-collections-section__card-title {
    font-size: 20px;
  }

  .top-collections-section__card-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
  }

  /* Process Section */
  .process-section {
    min-height: auto;
    padding-top: 48px;
  }

  .process-section__layout {
    min-height: auto;
    padding-bottom: 72px;
  }

  .process-section__illustration-left,
  .process-section__illustration-right {
    display: none;
  }

  .process-section__pattern-band {
    top: auto;
    bottom: 0;
    height: 64px;
    transform: translateX(-50%);
  }

  .process-section__label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 36px;
    gap: 8px;
    justify-content: center;
  }

  .process-section__label-bar {
    width: 19px;
    height: 7px;
  }

  .process-section__label-text {
    font-size: 14px;
  }

  .process-section__label-text--desktop {
    display: none;
  }

  .process-section__label-text--mobile {
    display: inline;
  }

  .process-section__heading {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 364px;
    margin: 0 auto 60px;
    font-size: 18px;
    text-align: center;
  }

  .process-section__highlight {
    line-height: 28px;
    padding: 0 6px;
  }

  .process-section__steps {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    gap: 50px;
    max-width: 339px;
    margin: 0 auto;
  }

  .process-section__step,
  .process-section__step--wide {
    width: 100%;
    max-width: 339px;
  }

  .process-section__step-title {
    font-size: 20px;
  }

  .process-section__step-desc {
    font-size: 14px;
    letter-spacing: 0.7px;
  }

  /* Best Sellers Section */
  .best-sellers-section {
    padding: 48px 0 72px;
  }

  .best-sellers-section__pattern {
    top: 138px;
    height: 613px;
    width: 941px;
    left: 50%;
    transform: translateX(-50%);
  }

  .best-sellers-section__pattern-bottom {
    display: none;
  }

  .best-sellers-section__label {
    margin-bottom: 54px;
    gap: 8px;
  }

  .best-sellers-section__label-bar {
    width: 19px;
    height: 7px;
  }

  .best-sellers-section__label-text {
    font-size: 14px;
  }

  .best-sellers-section__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding);
    scrollbar-width: none;
  }

  .best-sellers-section__scroll::-webkit-scrollbar {
    display: none;
  }

  .best-sellers-section__grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    grid-template-columns: unset;
    justify-content: flex-start;
  }

  .best-sellers-section__card {
    flex-shrink: 0;
    width: 283px;
    padding: 25px 10px 13px 9px;
  }

  .best-sellers-section__card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .best-sellers-section__card-image-wrap {
    height: 268px;
  }

  .best-sellers-section__card-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .best-sellers-section__card-rating-text,
  .best-sellers-section__card-bought,
  .best-sellers-section__card-price-mrp,
  .best-sellers-section__card-delivery {
    font-size: 12px;
  }

  .best-sellers-section__card-price-current {
    font-size: 24px;
  }

  .best-sellers-section__card-price-symbol {
    font-size: 15px;
  }

  .best-sellers-section__card-btn {
    font-size: 23px;
    padding: 5px 20px 10px;
  }

  /* Footer Section */
  .footer-section {
    min-height: 456px;
    padding: 12px 0 0;
  }

  .footer-section__grid {
    flex-direction: column;
    gap: 38px;
  }

  .footer-section__heading {
    font-size: 44px;
    line-height: 1.05;
  }

  .footer-section__columns {
    flex-direction: row;
    gap: 82px;
  }

  .footer-section__column-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-section__address-line {
    font-size: 16px;
  }

  .footer-section__social-text {
    font-size: 16px;
    width: 75px;
  }

  .footer-section__social-list {
    gap: 19px;
  }

  .footer-section__social-arrow {
    width: 13px;
    height: 12px;
  }

  .footer-section__watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .footer-section__watermark-img {
    margin-top: 0;
    object-position: center bottom;
  }
}


/* =============================================
   Shop Page
   ============================================= */

.page-shop .site-header {
  background: rgba(22, 3, 2, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* border-bottom-color: rgba(255, 243, 233, 0.1); */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.shop-section {
  position: relative;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
  padding-bottom: 120px;
}

.shop-section__hero {
  position: relative;
  padding-top: calc(var(--site-header-height) + 48px);
  padding-bottom: 64px;
  overflow: hidden;
}

.shop-section__pattern {
  position: absolute;
  top: 0px;
  left: -52px;
  width: calc(100% + 104px);
  opacity: 0.1;
  pointer-events: none;
}

.shop-section__pattern-img {
  width: 100%;
  object-fit: cover;
}

.shop-section__pattern-bottom {
  position: absolute;
  bottom: -64px;
  left: -48px;
  width: calc(100% + 96px);
  opacity: 0.1;
  pointer-events: none;
  transform: scaleY(-1) rotate(180deg);
}

.shop-section__pattern-bottom-img {
  width: 100%;
  object-fit: cover;
}

.shop-section__hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.shop-section__label {
  display: flex;
  align-items: center;
  gap: var(--section-label-gap);
  margin-bottom: 24px;
}

.shop-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.shop-section__label-text {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-cream);
}

.shop-section__title {
  font-family: var(--font-body);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-cream);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.shop-section__subtitle {
  margin-top: 16px;
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  max-width: 520px;
}

.shop-section__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
  padding-top: 44px;
}

.shop-section__sidebar-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.shop-section__category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-section__category-btn {
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-cream);
  border: 1px solid rgba(255, 243, 233, 0.15);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-section__category-btn:hover,
.shop-section__category-btn--active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-cream);
}

.shop-section__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 243, 233, 0.12);
}

.shop-section__count {
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-cream);
}

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

.shop-section__sort-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.shop-section__sort-select {
  appearance: none;
  min-width: 160px;
  padding: 8px 36px 8px 12px;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
  background-color: var(--color-primary-dark);
  border: 1px solid rgba(255, 243, 233, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23fff3e9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  color-scheme: dark;
}

.shop-section__sort-select option {
  background-color: #160302;
  color: #fff3e9;
}

.shop-section__filters-scroll {
  display: none;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop-section__filters-scroll::-webkit-scrollbar {
  display: none;
}

.shop-section__filters {
  display: flex;
  gap: 10px;
  width: max-content;
}

.shop-section__filter-chip {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
  border: 1px solid rgba(255, 243, 233, 0.2);
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.shop-section__filter-chip:hover,
.shop-section__filter-chip--active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary-dark);
}

.shop-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  justify-content: start;
}

.shop-section__grid-scroll {
  overflow: visible;
}

.shop-section__card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-accent);
  padding: 25px 10px 13px 9px;
  width: 100%;
}

.shop-section__card-image-wrap {
  position: relative;
  width: 100%;
  height: 268px;
  overflow: hidden;
}

.shop-section__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-section__card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22, 3, 2, 0) 0%, var(--color-primary-dark) 100%);
  pointer-events: none;
}

.shop-section__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 10px 6px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-primary-dark);
  background-color: var(--color-gold);
}

.shop-section__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px 10px 10px;
}

.shop-section__card-category {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 243, 233, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-section__card-title {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1.3;
  min-height: 52px;
}

.shop-section__card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-section__card-stars {
  width: 60px;
  height: 12px;
}

.shop-section__card-rating-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.shop-section__card-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-section__card-price-current {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.shop-section__card-price-symbol {
  font-size: 15px;
  font-weight: 400;
}

.shop-section__card-price-mrp {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.shop-section__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
  padding: 5px 20px 10px;
  background-color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}

.shop-section__card-btn:hover {
  background-color: #0d0101;
}

.shop-section__load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.shop-section__load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px 12px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  border: 1px solid rgba(251, 176, 59, 0.4);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.shop-section__load-more:hover {
  background-color: rgba(251, 176, 59, 0.08);
  border-color: var(--color-gold);
}

@media (max-width: 1279px) {
  .shop-section__grid {
    grid-template-columns: repeat(2, minmax(0, 283px));
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .shop-section__hero {
    padding-top: calc(var(--site-header-height) + 32px);
    padding-bottom: 48px;
  }

  .shop-section__title {
    font-size: 48px;
  }

  .shop-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
  }

  .shop-section__sidebar {
    display: none;
  }

  .shop-section__filters-scroll {
    display: block;
    margin-left: calc(var(--container-padding) * -1);
    margin-right: calc(var(--container-padding) * -1);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .shop-section__grid-scroll {
    overflow: visible;
  }

  .shop-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .shop-section__card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page-shop .site-header.site-header--scrolled {
    background: rgba(22, 3, 2, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 243, 233, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  }

  .shop-section {
    padding-bottom: 72px;
  }

  .shop-section__hero {
    padding-top: calc(var(--site-header-height) + 36px);
    padding-bottom: 20px;
  }

  .shop-section__pattern {
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: min(941px, 200vw);
    opacity: 0.08;
  }

  .shop-section__pattern-bottom {
    display: none;
  }

  .shop-section__hero-content {
    max-width: none;
  }

  .shop-section__label {
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .shop-section__label-bar {
    width: 19px;
    height: 7px;
  }

  .shop-section__label-text {
    font-size: 14px;
  }

  .shop-section__title {
    font-size: 32px;
    text-align: center;
  }

  .shop-section__subtitle {
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .shop-section__layout {
    gap: 20px;
    padding-top: 16px;
  }

  .shop-section__toolbar {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .shop-section__count {
    font-size: 14px;
  }

  .shop-section__sort {
    width: auto;
    margin-left: auto;
    flex-shrink: 0;
  }

  .shop-section__sort-label {
    display: none;
  }

  .shop-section__sort-select {
    min-width: 140px;
    font-size: 12px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .shop-section__filters-scroll {
    display: block;
    margin-left: calc(var(--container-padding) * -1);
    margin-right: calc(var(--container-padding) * -1);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin-bottom: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shop-section__filters-scroll::-webkit-scrollbar {
    display: none;
  }

  .shop-section__filter-chip {
    padding: 6px 12px;
    font-size: 11px;
  }

  .shop-section__grid-scroll {
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .shop-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .shop-section__card {
    width: 100%;
    max-width: none;
    padding: 12px 6px 10px;
  }

  .shop-section__card-image-wrap {
    height: 140px;
  }

  .shop-section__card-body {
    gap: 6px;
    padding: 10px 4px 4px;
  }

  .shop-section__card-category {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .shop-section__card-title {
    font-size: 12px;
    min-height: auto;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .shop-section__card-rating {
    gap: 6px;
  }

  .shop-section__card-stars {
    width: 48px;
    height: 10px;
  }

  .shop-section__card-rating-text,
  .shop-section__card-price-mrp {
    font-size: 10px;
  }

  .shop-section__card-price {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-section__card-price-current {
    font-size: 18px;
  }

  .shop-section__card-price-symbol {
    font-size: 12px;
  }

  .shop-section__card-btn {
    font-size: 14px;
    padding: 4px 8px 6px;
    margin-top: 2px;
  }

  .shop-section__card-badge {
    top: 6px;
    left: 6px;
    font-size: 9px;
    padding: 2px 6px 4px;
  }

  .shop-section__load-more-wrap {
    margin-top: 32px;
  }

  .shop-section__load-more {
    font-size: 20px;
    padding: 6px 24px 10px;
    width: 100%;
    max-width: none;
  }
}


/* =============================================
   Product Detail Page
   ============================================= */

.page-product .site-header {
  background: rgba(22, 3, 2, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* border-bottom-color: rgba(255, 243, 233, 0.1); */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.shop-section__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.shop-section__card-link .shop-section__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-section {
  position: relative;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
  padding-top: calc(var(--site-header-height) + 24px);
  padding-bottom: 120px;
}

.product-section__pattern {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 104px);
  opacity: 0.08;
  pointer-events: none;
}

.product-section__pattern-img {
  width: 100%;
  object-fit: cover;
}

.product-section__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
  font-weight: 500;
}

.product-section__breadcrumb-link {
  color: rgba(255, 243, 233, 0.65);
  transition: color 0.2s ease;
}

.product-section__breadcrumb-link:hover {
  color: var(--color-gold);
}

.product-section__breadcrumb-sep {
  color: rgba(255, 243, 233, 0.35);
}

.product-section__breadcrumb-current {
  color: var(--color-cream);
}

.product-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.product-section__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-section__main-image-wrap {
  position: relative;
  background-color: var(--color-accent);
  padding: 24px 16px 16px;
  overflow: hidden;
}

.product-section__main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.product-section__main-gradient {
  position: absolute;
  inset: 24px 16px 16px;
  background: linear-gradient(to bottom, rgba(22, 3, 2, 0) 60%, var(--color-primary-dark) 100%);
  pointer-events: none;
}

.product-section__badge {
  position: absolute;
  top: 36px;
  left: 28px;
  z-index: 1;
  padding: 4px 10px 6px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-primary-dark);
  background-color: var(--color-gold);
}

.product-section__thumbs {
  display: flex;
  gap: 12px;
}

.product-section__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  line-height: 0;
  transition: border-color 0.2s ease;
}

.product-section__thumb--active,
.product-section__thumb:hover {
  border-color: var(--color-gold);
}

.product-section__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-section__category {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-section__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.2;
}

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

.product-section__stars {
  width: 60px;
  height: 12px;
}

.product-section__rating-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.product-section__bought {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-cream);
}

.product-section__price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.product-section__price-current {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.product-section__price-symbol {
  font-size: 20px;
  font-weight: 400;
}

.product-section__price-mrp {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
}

.product-section__delivery {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold);
}

.product-section__description {
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.85);
  line-height: 1.6;
  max-width: 520px;
}

.product-section__actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 8px;
}

.product-section__quantity {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 243, 233, 0.2);
  flex-shrink: 0;
}

.product-section__quantity-btn {
  width: 44px;
  height: 48px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1;
  transition: background-color 0.2s ease;
}

.product-section__quantity-btn:hover {
  background-color: rgba(255, 243, 233, 0.06);
}

.product-section__quantity-input {
  width: 48px;
  height: 48px;
  border: none;
  border-left: 1px solid rgba(255, 243, 233, 0.2);
  border-right: 1px solid rgba(255, 243, 233, 0.2);
  background: transparent;
  font-family: inherit;
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-cream);
  text-align: center;
  -moz-appearance: textfield;
}

.product-section__quantity-input::-webkit-outer-spin-button,
.product-section__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-section__add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 24px 10px;
  background-color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  border: 1px solid rgba(251, 176, 59, 0.3);
  transition: background-color 0.2s ease;
}

.product-section__add-btn:hover {
  background-color: #0d0101;
}

.product-section__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 24px 12px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--color-primary-dark);
  background-color: var(--color-gold);
  transition: opacity 0.2s ease;
}

.product-section__buy-btn:hover {
  opacity: 0.9;
}

.product-section__details {
  margin-top: 64px;
  border-top: 1px solid rgba(255, 243, 233, 0.12);
  position: relative;
  z-index: 1;
}

.product-section__detail {
  border-bottom: 1px solid rgba(255, 243, 233, 0.12);
}

.product-section__detail-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-family: inherit;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-cream);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.product-section__detail-summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.product-section__detail--open .product-section__detail-summary {
  color: var(--color-gold);
}

.product-section__detail--open .product-section__detail-summary::after {
  transform: rotate(-135deg);
}

.product-section__detail-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-section__detail--open .product-section__detail-panel {
  grid-template-rows: 1fr;
}

.product-section__detail-inner {
  overflow: hidden;
  min-height: 0;
}

.product-section__detail-body {
  padding-bottom: 20px;
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.8);
  line-height: 1.6;
  max-width: 720px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-section__detail--open .product-section__detail-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  .product-section__detail-panel,
  .product-section__detail-body,
  .product-section__detail-summary,
  .product-section__detail-summary::after {
    transition: none;
  }

  .product-section__detail-body {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .product-section__detail:not(.product-section__detail--open) .product-section__detail-body {
    opacity: 0;
  }
}

.product-section__related {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.product-section__related-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--section-label-gap);
  margin-bottom: 40px;
}

.product-section__related-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.product-section__related-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-cream);
}

.product-section__related-scroll {
  overflow: visible;
}

.product-section__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 283px));
  gap: 16px;
  justify-content: center;
}

.product-section__related .shop-section__card {
  max-width: 283px;
}

.product-section__related .shop-section__card-title {
  min-height: auto;
}

@media (max-width: 1279px) {
  .product-section__related-grid {
    grid-template-columns: repeat(2, minmax(0, 283px));
  }
}

@media (max-width: 1024px) {
  .product-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-section__main-image {
    height: 360px;
  }

  .product-section__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-section__related .shop-section__card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page-product .site-header.site-header--scrolled {
    background: rgba(22, 3, 2, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .product-section {
    padding-top: calc(var(--site-header-height) + 16px);
    padding-bottom: 72px;
  }

  .product-section__pattern {
    top: 40px;
    width: min(941px, 200vw);
  }

  .product-section__breadcrumb {
    margin-bottom: 20px;
    font-size: 11px;
    gap: 6px;
  }

  .product-section__main-image-wrap {
    padding: 16px 12px 12px;
  }

  .product-section__main-image {
    height: 280px;
  }

  .product-section__main-gradient {
    inset: 16px 12px 12px;
  }

  .product-section__badge {
    top: 24px;
    left: 20px;
    font-size: 11px;
    padding: 3px 8px 5px;
  }

  .product-section__thumb {
    width: 56px;
    height: 56px;
  }

  .product-section__title {
    font-size: 24px;
  }

  .product-section__price-current {
    font-size: 28px;
  }

  .product-section__description {
    font-size: 14px;
  }

  .product-section__actions {
    flex-direction: column;
  }

  .product-section__quantity {
    width: 100%;
    justify-content: center;
  }

  .product-section__add-btn,
  .product-section__buy-btn {
    font-size: 23px;
  }

  .product-section__details {
    margin-top: 40px;
  }

  .product-section__related {
    margin-top: 48px;
  }

  .product-section__related-header {
    margin-bottom: 24px;
    gap: 8px;
  }

  .product-section__related-bar {
    width: 19px;
    height: 7px;
  }

  .product-section__related-title {
    font-size: 14px;
  }

  .product-section__related-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding);
    scrollbar-width: none;
  }

  .product-section__related-scroll::-webkit-scrollbar {
    display: none;
  }

  .product-section__related-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: max-content;
  }

  .product-section__related .shop-section__card {
    flex-shrink: 0;
    width: 220px;
    padding: 16px 8px 10px;
  }

  .product-section__related .shop-section__card-image-wrap {
    height: 160px;
  }

  .product-section__related .shop-section__card-title {
    font-size: 14px;
  }
}


/* =============================================
   Cart Page
   ============================================= */

.page-cart .site-header {
  background: rgba(22, 3, 2, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* border-bottom-color: rgba(255, 243, 233, 0.1); */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.site-header__cart-link--active .site-header__cart-icon {
  filter: brightness(0) saturate(100%) invert(76%) sepia(47%) saturate(638%) hue-rotate(346deg) brightness(101%) contrast(98%);
}

.cart-section {
  position: relative;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
  padding-top: calc(var(--site-header-height) + 24px);
  padding-bottom: 120px;
}

.cart-section__pattern {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 104px);
  opacity: 0.08;
  pointer-events: none;
}

.cart-section__pattern-img {
  width: 100%;
  object-fit: cover;
}

.cart-section__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
  font-weight: 500;
}

.cart-section__breadcrumb-link {
  color: rgba(255, 243, 233, 0.65);
  transition: color 0.2s ease;
}

.cart-section__breadcrumb-link:hover {
  color: var(--color-gold);
}

.cart-section__breadcrumb-sep {
  color: rgba(255, 243, 233, 0.35);
}

.cart-section__breadcrumb-current {
  color: var(--color-cream);
}

.cart-section__header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.cart-section__label {
  display: flex;
  align-items: center;
  gap: var(--section-label-gap);
  margin-bottom: 20px;
}

.cart-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.cart-section__label-text {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-cream);
}

.cart-section__title {
  font-family: var(--font-body);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-cream);
  line-height: 1.05;
}

.cart-section__subtitle {
  margin-top: 12px;
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.75);
}

.cart-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cart-section__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-section__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background-color: var(--color-accent);
}

.cart-section__item-image-link {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.cart-section__item-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.cart-section__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-section__item-category {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 243, 233, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-section__item-title {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.3;
}

.cart-section__item-title-link {
  color: var(--color-cream);
  transition: color 0.2s ease;
}

.cart-section__item-title-link:hover {
  color: var(--color-gold);
}

.cart-section__item-price {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-white);
}

.cart-section__item-price-symbol {
  font-size: 13px;
  font-weight: 400;
}

.cart-section__item-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.cart-section__quantity {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 243, 233, 0.2);
}

.cart-section__quantity-btn {
  width: 36px;
  height: 36px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1;
  transition: background-color 0.2s ease;
}

.cart-section__quantity-btn:hover {
  background-color: rgba(255, 243, 233, 0.06);
}

.cart-section__quantity-input {
  width: 40px;
  height: 36px;
  border: none;
  border-left: 1px solid rgba(255, 243, 233, 0.2);
  border-right: 1px solid rgba(255, 243, 233, 0.2);
  background: transparent;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
  text-align: center;
  -moz-appearance: textfield;
}

.cart-section__quantity-input::-webkit-outer-spin-button,
.cart-section__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-section__remove-btn {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 243, 233, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cart-section__remove-btn:hover {
  color: var(--color-cream);
}

.cart-section__item-total {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  text-align: right;
}

.cart-section__item-total-symbol {
  font-size: 15px;
  font-weight: 400;
}

.cart-section__summary {
  position: sticky;
  top: calc(var(--site-header-height) + 24px);
  padding: 28px 24px;
  background-color: rgba(255, 243, 233, 0.04);
  border: 1px solid rgba(255, 243, 233, 0.12);
}

.cart-section__summary-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.cart-section__summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.cart-section__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.cart-section__summary-label {
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.75);
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.cart-section__summary-value {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-cream);
  text-align: right;
  flex: 0 0 auto;
  margin-left: auto;
}

.cart-section__summary-value--free {
  color: var(--color-gold);
}

.cart-section__summary-value .amount,
.cart-section__summary-value .woocommerce-Price-amount {
  display: inline-block;
  text-align: right;
}

.cart-section__summary-value ul,
.cart-section__summary-value .woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.cart-section__summary-row--discount .cart-section__summary-value {
  color: var(--color-gold);
}

.cart-section__summary-row--total {
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 243, 233, 0.12);
}

.cart-section__summary-row--total .cart-section__summary-label,
.cart-section__summary-row--total .cart-section__summary-value {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
}

.cart-section__summary-note {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.55);
  margin-bottom: 24px;
}

.cart-section__checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 24px 12px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--color-primary-dark);
  background-color: var(--color-gold);
  transition: opacity 0.2s ease;
}

.cart-section__checkout-btn:hover {
  opacity: 0.9;
}

.cart-section__continue-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cart-section__continue-link:hover {
  color: var(--color-gold);
}

.cart-section__empty {
  position: relative;
  z-index: 1;
  padding: 16px 0 48px;
}

.cart-section__empty-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 32px 44px;
  text-align: center;
  background-color: var(--color-accent);
  border: 1px solid rgba(255, 243, 233, 0.12);
}

.cart-section__empty-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--section-label-gap);
  margin-bottom: 20px;
}

.cart-section__empty-label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.cart-section__empty-label-text {
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-cream);
}

.cart-section__empty-heading {
  font-family: var(--font-body);
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.cart-section__empty-text {
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 243, 233, 0.78);
  margin-bottom: 28px;
}

.cart-section__empty-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.cart-section__empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px 12px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  text-align: center;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cart-section__empty-btn--primary {
  color: var(--color-primary-dark);
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.cart-section__empty-btn--primary:hover {
  opacity: 0.92;
}

.cart-section__empty-btn--secondary {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-cream);
  background: transparent;
  border: 1px solid rgba(255, 243, 233, 0.25);
  padding: 12px 20px;
}

.cart-section__empty-btn--secondary:hover {
  border-color: rgba(255, 243, 233, 0.45);
  background-color: rgba(255, 243, 233, 0.06);
}

@media (max-width: 1024px) {
  .cart-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-section__summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-cart .site-header.site-header--scrolled {
    background: rgba(22, 3, 2, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .cart-section {
    padding-top: calc(var(--site-header-height) + 16px);
    padding-bottom: 72px;
  }

  .cart-section__pattern {
    top: 40px;
    width: min(941px, 200vw);
  }

  .cart-section__breadcrumb {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .cart-section__header {
    margin-bottom: 24px;
  }

  .cart-section__label {
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .cart-section__label-bar {
    width: 19px;
    height: 7px;
  }

  .cart-section__label-text {
    font-size: 14px;
  }

  .cart-section__title {
    font-size: 32px;
    text-align: center;
  }

  .cart-section__subtitle {
    font-size: 14px;
    text-align: center;
  }

  .cart-section__item {
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 16px;
  }

  .cart-section__item-image {
    width: 80px;
    height: 80px;
  }

  .cart-section__item-total {
    grid-column: 2;
    text-align: left;
    font-size: var(--text-lg);
  }

  .cart-section__item-title {
    font-size: var(--text-md);
  }

  .cart-section__item-actions {
    gap: 12px;
  }

  .cart-section__summary {
    padding: 20px 16px;
  }

  .cart-section__summary-title {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .cart-section__checkout-btn {
    font-size: 23px;
  }

  .cart-section__empty-btn {
    font-size: 23px;
  }

  .checkout-section__summary {
    padding: 20px 16px;
  }

  .checkout-section__title {
    font-size: var(--text-3xl);
  }
}


/* =============================================
   Checkout Page
   ============================================= */

.page-checkout .site-header {
  background: rgba(22, 3, 2, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.checkout-section {
  position: relative;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
  padding-top: calc(var(--site-header-height) + 24px);
  padding-bottom: 120px;
}

.checkout-section__pattern {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 104px);
  opacity: 0.08;
  pointer-events: none;
}

.checkout-section__pattern-img {
  width: 100%;
  object-fit: cover;
}

.checkout-section__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
  font-weight: 500;
}

.checkout-section__breadcrumb-link {
  color: rgba(255, 243, 233, 0.65);
  transition: color 0.2s ease;
}

.checkout-section__breadcrumb-link:hover {
  color: var(--color-gold);
}

.checkout-section__breadcrumb-sep {
  color: rgba(255, 243, 233, 0.35);
}

.checkout-section__breadcrumb-current {
  color: var(--color-cream);
}

.checkout-section__header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.checkout-section__label {
  display: flex;
  align-items: center;
  gap: var(--section-label-gap);
  margin-bottom: 20px;
}

.checkout-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.checkout-section__label-text {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-cream);
}

.checkout-section__title {
  font-family: var(--font-body);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-cream);
  line-height: 1.05;
}

.checkout-section__subtitle {
  margin-top: 12px;
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.75);
}

.checkout-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.checkout-section__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-section__panel {
  padding: 24px 20px;
  background-color: var(--color-accent);
  border: 1px solid rgba(255, 243, 233, 0.08);
}

.checkout-section__customer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-section__summary {
  position: sticky;
  top: calc(var(--site-header-height) + 24px);
  padding: 24px 20px;
  background-color: var(--color-accent);
  border: 1px solid rgba(255, 243, 233, 0.12);
}

.checkout-section__summary-title {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 20px;
}

.checkout-section__review-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: var(--text-sm);
  color: var(--color-cream);
}

.checkout-section__review-table th,
.checkout-section__review-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 243, 233, 0.12);
  vertical-align: top;
}

.checkout-section__review-table thead th:first-child,
.checkout-section__review-table tbody .product-name,
.checkout-section__review-table tfoot th {
  text-align: left;
}

.checkout-section__review-table thead th:last-child,
.checkout-section__review-table tbody .product-total,
.checkout-section__review-table tfoot td {
  text-align: right;
}

.checkout-section__review-table tfoot td {
  font-weight: 600;
  color: var(--color-cream);
}

.checkout-section__review-table thead th {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 243, 233, 0.65);
}

.checkout-section__review-table tfoot th {
  font-weight: 500;
  color: rgba(255, 243, 233, 0.85);
}

.checkout-section__review-table .order-total th,
.checkout-section__review-table .order-total td {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  border-bottom: none;
  padding-top: 16px;
}

.checkout-section__form .form-row {
  margin-bottom: 16px;
}

.checkout-section__form .form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 243, 233, 0.85);
}

.checkout-section__form .form-row .required {
  color: var(--color-gold);
}

.checkout-section__form h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 20px;
}

.checkout-section__form #ship-to-different-address {
  margin: 8px 0 16px;
  font-size: var(--text-sm);
  color: rgba(255, 243, 233, 0.85);
}

.checkout-section__form #ship-to-different-address label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .checkout-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout-section__summary {
    position: static;
  }
}


/* =============================================
   Our Story Page
   ============================================= */

.page-our-story .site-header {
  background: rgba(22, 3, 2, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 243, 233, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.story-page-section {
  position: relative;
  background-color: var(--color-primary-dark);
  overflow-x: clip;
  padding-top: calc(var(--site-header-height) + 24px);
  padding-bottom: 48px;
}

.story-page-section__pattern {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 104px);
  opacity: 0.08;
  pointer-events: none;
}

.story-page-section__pattern-img {
  width: 100%;
  object-fit: cover;
}

.story-page-section__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
  font-weight: 500;
}

.story-page-section__breadcrumb-link {
  color: rgba(255, 243, 233, 0.65);
  transition: color 0.2s ease;
}

.story-page-section__breadcrumb-link:hover {
  color: var(--color-gold);
}

.story-page-section__breadcrumb-sep {
  color: rgba(255, 243, 233, 0.35);
}

.story-page-section__breadcrumb-current {
  color: var(--color-cream);
}

.story-page-section__hero {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.story-page-section__label {
  display: flex;
  align-items: center;
  gap: var(--section-label-gap);
  margin-bottom: 24px;
}

.story-page-section__label-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.story-page-section__label-text {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-cream);
}

.story-page-section__title {
  font-family: var(--font-body);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-cream);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.story-page-section__subtitle {
  margin-top: 16px;
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  max-width: 560px;
}

.our-story-section--page {
  padding-top: 0;
  padding-bottom: 80px;
}

.our-story-section--page .our-story-section__watermark {
  top: 120px;
}

.our-story-section__layout--page,
.our-story-section--page .our-story-section__layout {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.our-story-section__main--full {
  grid-column: 1;
  max-width: none;
}

.our-story-section__body--page {
  max-width: none;
  margin-top: 32px;
}

.story-page-section--values {
  padding-top: 0;
  padding-bottom: 80px;
}

.story-page-section__values-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--section-label-gap);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.story-page-section__values-bar {
  display: block;
  width: 30px;
  height: 15px;
  background-color: var(--color-cream);
  flex-shrink: 0;
}

.story-page-section__values-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-cream);
}

.story-page-section__values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.story-page-section__value-card {
  padding: 32px 24px;
  background-color: rgba(166, 45, 14, 0.35);
  border: 1px solid rgba(255, 243, 233, 0.1);
}

.story-page-section__value-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.story-page-section__value-text {
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.85);
  line-height: 1.55;
}

.page-our-story .process-section {
  padding-top: 0;
}

.story-page-section--cta {
  padding-top: 80px;
  padding-bottom: 120px;
}

.story-page-section__cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.story-page-section__cta-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.1;
}

.story-page-section__cta-text {
  margin-top: 16px;
  font-size: var(--text-lg);
  font-weight: 400;
  color: rgba(255, 243, 233, 0.75);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.story-page-section__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 8px 32px 12px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  border: 1px solid rgba(251, 176, 59, 0.4);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.story-page-section__cta-btn:hover {
  background-color: rgba(251, 176, 59, 0.08);
  border-color: var(--color-gold);
}

@media (max-width: 1024px) {
  .story-page-section__values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .our-story-section--page .our-story-section__heading-line--indent {
    padding-left: 80px;
  }
}

@media (max-width: 768px) {
  .page-our-story .site-header.site-header--scrolled {
    background: rgba(22, 3, 2, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .story-page-section {
    padding-top: calc(var(--site-header-height) + 26px);
    padding-bottom: 32px;
  }

  .story-page-section__pattern {
    top: 40px;
    width: min(941px, 200vw);
  }

  .story-page-section__breadcrumb {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .story-page-section__label {
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .story-page-section__label-bar {
    width: 19px;
    height: 7px;
  }

  .story-page-section__label-text {
    font-size: 14px;
  }

  .story-page-section__title {
    font-size: 32px;
    text-align: center;
  }

  .story-page-section__subtitle {
    font-size: 14px;
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .our-story-section--page {
    padding-bottom: 48px;
  }

  .our-story-section--page .our-story-section__watermark {
    top: 80px;
    opacity: 0.1;
  }

  .our-story-section__body--page {
    margin-top: 20px;
    padding: 24px 20px;
  }

  .story-page-section--values {
    padding-bottom: 48px;
  }

  .story-page-section__values-header {
    margin-bottom: 32px;
    gap: 8px;
  }

  .story-page-section__values-bar {
    width: 19px;
    height: 7px;
  }

  .story-page-section__values-title {
    font-size: 14px;
  }

  .story-page-section__value-card {
    padding: 24px 20px;
  }

  .story-page-section__value-title {
    font-size: 23px;
    margin-bottom: 12px;
  }

  .story-page-section__value-text {
    font-size: 14px;
  }

  .story-page-section--cta {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .story-page-section__cta-title {
    font-size: 38px;
  }

  .story-page-section__cta-text {
    font-size: 14px;
  }

  .story-page-section__cta-btn {
    font-size: 23px;
    margin-top: 24px;
  }
}


/* =============================================
   Legal Pages (Privacy, Refund, etc.)
   ============================================= */

.page-privacy-policy,
.page-refund-policy,
.page-shipping-policy,
.page-terms-policy {
  position: relative;
}

.page-privacy-policy .site-header,
.page-refund-policy .site-header,
.page-shipping-policy .site-header,
.page-terms-policy .site-header {
  background: rgba(22, 3, 2, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 243, 233, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy .site-header.site-header--scrolled,
.page-refund-policy .site-header.site-header--scrolled,
.page-shipping-policy .site-header.site-header--scrolled,
.page-terms-policy .site-header.site-header--scrolled {
  background: rgba(22, 3, 2, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.legal-page__watermark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.legal-page__watermark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.page-privacy-policy .site-header,
.page-privacy-policy .legal-page-section,
.page-privacy-policy .footer-section,
.page-refund-policy .site-header,
.page-refund-policy .legal-page-section,
.page-refund-policy .footer-section,
.page-shipping-policy .site-header,
.page-shipping-policy .legal-page-section,
.page-shipping-policy .footer-section,
.page-terms-policy .site-header,
.page-terms-policy .legal-page-section,
.page-terms-policy .footer-section {
  position: relative;
  /* z-index: 1; */
}

.legal-page-section {
  padding-top: calc(149px + 48px);
  padding-bottom: 100px;
}

.legal-page-section__document {
  margin: 0 auto;
  box-sizing: border-box;
}

.legal-page-section__meta {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 243, 233, 0.85);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 243, 233, 0.12);
}

.legal-page-section__meta strong {
  font-weight: 600;
  color: #fff3e9;
}

.legal-page-section__intro,
.legal-page-section__text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 243, 233, 0.92);
  line-height: 1.65;
  text-align: left;
  margin: 0;
}

.legal-page-section__intro + .legal-page-section__intro {
  margin-top: 16px;
}

.legal-page-section__text + .legal-page-section__text,
.legal-page-section__text + .legal-page-section__list,
.legal-page-section__list + .legal-page-section__text {
  margin-top: 16px;
}

.legal-page-section__intro + .legal-page-section__block,
.legal-page-section__block + .legal-page-section__block {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 243, 233, 0.08);
}

.legal-page-section__heading {
  font-family: "MOONSILVER", sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #fbb03b;
  line-height: 1.15;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.legal-page-section__list {
  margin: 16px 0 0;
  padding-left: 1.25em;
  list-style: disc;
}

.legal-page-section__list li {
  font-size: 16px;
  color: rgba(255, 243, 233, 0.92);
  line-height: 1.65;
  margin-top: 12px;
}

.legal-page-section__list li:first-child {
  margin-top: 0;
}

.legal-page-section__list .legal-page-section__list {
  margin-top: 12px;
}

.legal-page-section__list strong {
  font-weight: 600;
  color: #fff3e9;
}

.legal-page-section__placeholder {
  color: #fbb03b;
  font-style: italic;
}

.legal-page-section__link {
  color: #fbb03b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page-section__link:hover {
  color: #fff3e9;
}

.legal-page-section__contact {
  margin-top: 20px;
  font-style: normal;
}

.legal-page-section__contact p {
  font-size: 16px;
  color: rgba(255, 243, 233, 0.92);
  line-height: 1.65;
  margin: 0;
}

.legal-page-section__contact p + p {
  margin-top: 10px;
}

.legal-page-section__contact strong {
  color: #fff3e9;
  font-weight: 600;
}

.legal-page-title {
  font-family: "MOONSILVER", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .page-privacy-policy .site-header.site-header--scrolled,
  .page-refund-policy .site-header.site-header--scrolled,
  .page-shipping-policy .site-header.site-header--scrolled,
  .page-terms-policy .site-header.site-header--scrolled {
    background: rgba(22, 3, 2, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .legal-page-section {
    padding-top: 52px;
  }

  .legal-page-section__heading {
    font-size: 28px;
  }

  .legal-page-section__intro,
  .legal-page-section__text,
  .legal-page-section__list li,
  .legal-page-section__contact p,
  .legal-page-section__meta {
    font-size: 14px;
  }

  .legal-page-section__intro + .legal-page-section__block,
  .legal-page-section__block + .legal-page-section__block {
    margin-top: 32px;
    padding-top: 32px;
  }
  .legal-page-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
