:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-muted: rgba(0, 0, 0, 0.7);
  --color-soft: rgba(0, 0, 0, 0.25);
  --color-accent: #d8cc6a;
  --color-border: #e8e8e8;
  --color-gradient: linear-gradient(180deg, #ffffff 0%, #d8cc6a 100%);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.08);
  --text-gap: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Manrope';
  font-weight: 400;
  font-size: 18px;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  word-wrap: normal;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
}

h1,
h2,
h3,
.section-title {
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

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

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.page-header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0;
  padding-right: 24px;
}

.header-logo {
  width: 140px;
  height: auto;
  transition: transform 0.2s ease;
}
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 8px 12px;
  background: transparent;
  box-shadow: none;
}

.fixed-cta__content {
  max-width: 960px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--color-text);
  transition: transform 0.2s ease;
}
.fixed-cta__text {
  display: flex;
  flex-direction: column;
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  flex: 1;
}
.fixed-cta__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fixed-cta__arrow {
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--color-text);
  border-right: 3px solid var(--color-text);
  transform: rotate(45deg);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .fixed-cta {
    padding: 16px 20px;
  }

  .fixed-cta__content {
    padding: 14px 24px;
  }
}

.section {
  padding: 32px 0;
}

.section.product {
  padding-top: 0;
}

.eyebrow {
  font-family: 'Manrope', 'Inter';
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin: 0 0 16px;
}

.eyebrow--strong {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
.section-title {
  margin: calc(var(--text-gap) * 1.5) 0 var(--text-gap);
}

.section-title:first-child,
.section-title:focus-within:first-child,
.section-title:first-of-type,
h1:first-child,
h2:first-child,
h3:first-child {
  margin-top: 0;
}

p {
  margin: 0 0 var(--text-gap);
}

p:last-child {
  margin-bottom: 0;
}

.product-card {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-card__media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--color-accent);
}

.product-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card__controls {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}

.pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.pill {
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 22px;
  font-size: 1.4rem;
  color: var(--color-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 204, 106, 0.3);
}

.pill--option {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  min-height: 60px;
}

.pill--option:hover {
  background: rgba(216, 204, 106, 0.15);
  border-color: var(--color-accent);
  color: var(--color-text);
}

.pill--solid {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.pill--solid:hover {
  background: #c9bd5f;
  box-shadow: 0 4px 12px rgba(216, 204, 106, 0.4);
}

.pill--outline {
  background: transparent;
  border-width: 3px;
  color: var(--color-text);
}

.pill--outline:hover {
  background: rgba(216, 204, 106, 0.1);
  border-color: var(--color-accent);
}

.pill--tile {
  border-radius: var(--radius-sm);
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid var(--color-accent);
  justify-content: space-between;
}

.pill--full {
  width: 100%;
}

.pill--buy {
  width: 100%;
  font-size: 1.4rem;
}

.pill--price {
  border-width: 3px;
  font-weight: 600;
  color: var(--color-text);
  cursor: default;
}

.pill--price:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.92);
}

.pill-price__weight,
.pill-price__value {
  flex: 1;
  text-align: center;
  font-size: 1.15rem;
}

.pill-price__divider {
  width: 1px;
  height: 28px;
  background: var(--color-accent);
}

.pill--tile strong {
  font-size: 1.2rem;
}

@media (max-width: 540px) {
  .pill-row .pill {
    font-size: 1rem;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    min-height: 48px;
  }
}

/* floating buy button for mobile */
.buy-floating {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  z-index: 1500;
  pointer-events: none;
}

.buy-floating__inner {
  max-width: 960px;
  width: 100%;
  pointer-events: auto;
}

.buy-floating__btn {
  border-radius: 999px;
}

.buy-floating {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.buy-floating--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .buy-floating {
    display: none;
  }
}

.product-card__description {
  width: 100%;
  margin-top: 18px;
  border: 3px solid var(--color-accent);
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-card__link {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: left;
  pointer-events: none;
  cursor: default;
}

.product-card__arrow {
  width: 16px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.product-card__link.active .product-card__arrow {
  transform: rotate(135deg);
}

.product-card__description-content {
  max-height: none;
  overflow: visible;
}

.product-card__divider {
  height: 1.5px;
  background: var(--color-accent);
  margin: 0 14px;
}

.product-card__description-text {
  padding: 0 20px 20px;
  margin-top: 10px;
}

.product-card__description-text p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1em;
  color: var(--color-text);
}

.product-card__description-text p:last-child {
  margin-bottom: 0;
}

.product-card__description-text strong {
  font-weight: 600;
}

.intro__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro__text p {
  margin: 0 0 16px;
}

.intro__text {
  width: 100%;
}

.intro__sticker {
  width: min(360px, 100%);
  align-self: center;
}

.benefits__grid {
  display: grid;
  gap: 16px;
}

.benefit {
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 18px;
  background: #fff;
  text-align: left;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.benefit--with-badge {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.benefit__badge {
  width: 96px;
  height: 96px;
  margin: 0 auto;
}

.audience__list {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience__note {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-accent);
  background: rgba(216, 204, 106, 0.1);
}

.audience__note--inline {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.5;
  padding: 20px;
}

.reasons__card {
  border: none;
  border-radius: var(--radius-lg);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.reasons__card {
  border: none;
  border-radius: var(--radius-lg);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.reasons__text {
  text-align: left;
  padding: 0;
  margin: 0 20px 0 0;
  padding-right: clamp(120px, 35vw, 180px);
}

.reasons__text p {
  margin: 0 0 12px;
}

.reasons__text p:last-child {
  margin-bottom: 0;
}

.reasons__media {
  position: absolute;
  right: 20px;
  top: 24px;
  bottom: 24px;
  width: clamp(120px, 35vw, 180px);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reasons__media img {
  height: 100%;
  width: auto;
  max-height: none;
  margin: 0;
  object-fit: contain;
}

.delivery__grid {
  display: grid;
  gap: 16px;
}

.delivery__grid div {
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  background: #fff;
}

.about__layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__sticker img {
  border-radius: var(--radius-md);
  border: none;
  box-shadow: none;
  width: 100%;
}

.about__sticker {
  width: 100%;
}

.reviews__cards {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.review-card {
  border-radius: var(--radius-md);
  border: 3px solid var(--color-accent);
  padding: 12px 20px;
  background: #fff;
  box-shadow: none;
}

.review-card__author {
  margin: 0 0 8px;
}

.review-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-family: 'Inter', 'Manrope';
  font-weight: 400;
}

.review-card__divider {
  width: 100%;
  height: 0;
  border-top: 3px solid #d8cc6a;
  margin: 12px 0;
}


.btn {
  font-family: 'Inter', 'Manrope';
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gradient {
  background-image: linear-gradient(120deg, #fff8d9 0%, #f1e297 45%, #d8cc6a 100%);
  color: var(--color-text);
  width: 100%;
}

.safety {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.safety__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  box-shadow: none;
}

.page-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  font-size: 0.9rem;
}

.page-footer__link {
  color: inherit;
  text-decoration: underline;
}

.page-footer {
  background: var(--color-text);
  color: var(--color-bg);
  margin-top: 48px;
  padding: 40px 20px;
}

.page-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.page-footer__tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-logo {
  width: 120px;
  height: auto;
}

@media (min-width: 640px) {
  .benefits__grid,
  .delivery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reasons__card {
    border: none;
    padding: 24px 0;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }

  .reasons__text {
    padding: 0;
    padding-right: 40px;
  }

  .reasons__media {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    justify-content: flex-end;
  }

  .reasons__media img {
    margin: 0;
    height: auto;
    max-height: 260px;
    object-fit: contain;
  }

  .product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: flex-start;
  }

  .product-card__media {
    grid-column: 1;
    width: 100%;
  }

  .product-card__media img {
    width: 100%;
  }

  .product-card__controls {
    grid-column: 2;
    width: 100%;
    padding: 0;
    padding-bottom: 0;
    background: transparent;
    border: none;
  }

  .product-card__description {
    grid-column: 2;
    width: 100%;
    margin-top: -265px;
    border: 3px solid var(--color-accent);
    background: #FFFFFF;
    border-radius: var(--radius-md);
  }
}

.fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.fixed-cta__content {
  width: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.35) 0%, rgba(216, 204, 106, 0.35) 100%);
  border-radius: 18px;
  padding: 12px 20px;
  box-shadow: inset -1px -1px 1.3px 0px rgba(216, 204, 106, 1), inset 0px 0px 2.6px 0px rgba(0, 0, 0, 0.17);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.2s ease;
}

.fixed-cta__content:hover {
  transform: translateY(-2px);
}

.fixed-cta__text {
  display: flex;
  flex-direction: column;
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  text-align: left;
}

.fixed-cta__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.fixed-cta__arrow {
  width: 13px;
  height: 13px;
  border-top: 2.5px solid var(--color-text);
  border-right: 2.5px solid var(--color-text);
  transform: rotate(45deg);
}

@media (max-width: 959px) {
  .fixed-cta {
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    padding: 12px 20px;
  }

  .fixed-cta__content {
    width: 100%;
    max-width: 960px;
    gap: 12px;
  }

  .fixed-cta__text {
    font-size: 15px;
  }

  .fixed-cta__avatar {
    width: 38px;
    height: 38px;
  }

  .fixed-cta__arrow {
    width: 13px;
    height: 13px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}

@media (min-width: 960px) {
  .page-header {
    padding-right: 24px;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
}

.loading-screen__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 1;
}

.loading-screen__logo {
  width: 160px;
  height: auto;
  opacity: 1;
  margin-top: -24px;
  animation: fadeIn 0.5s ease;
}

.error-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 12000;
  display: none;
  padding: 24px;
  overflow-y: auto;
}

.error-screen--visible {
  display: flex;
}

body.error-screen-active {
  overflow: hidden;
}

.error-screen__content {
  max-width: none;
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: none;
}

.error-screen__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.error-screen__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-soft);
}

.error-screen__code {
  font-size: clamp(4rem, 15vw, 7rem);
  font-family: 'Manrope', 'Inter';
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.error-screen__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.error-screen__description {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 520px;
}

.error-screen__media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-screen__media img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
}

@media (min-width: 960px) {
  .error-screen__content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .error-screen__media {
    justify-content: center;
  }

  .error-screen__media img {
    content: url('./assets/405.png');
  }
}

.loading-screen__dots {
  position: relative;
  width: 64px;
  height: 64px;
}

.loading-screen__text {
  margin: 0;
  text-align: center;
  font-family: 'Inter', 'Manrope';
  font-weight: 400;
  font-size: 18px;
  line-height: 0.6;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.loading-screen__dot {
  position: absolute;
  width: var(--dot-size, 8px);
  height: var(--dot-size, 8px);
  border-radius: 50%;
  background: var(--color-accent);
  top: 50%;
  left: 50%;
  margin-left: calc(var(--dot-size, 8px) / -2);
  margin-top: calc(var(--dot-size, 8px) / -2);
  opacity: 0;
  transform: rotate(var(--dot-angle, 0deg)) translate(var(--dot-distance, 28px)) rotate(var(--dot-angle-back, 0deg));
  animation: dotPulse var(--dot-duration, 1.8s) ease-in-out infinite;
  animation-delay: var(--dot-delay, 0s);
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0;
    transform: rotate(var(--dot-angle, 0deg)) translate(var(--dot-distance, 28px)) rotate(var(--dot-angle-back, 0deg)) scale(0.5);
  }

  50% {
    opacity: 1;
    transform: rotate(var(--dot-angle, 0deg)) translate(var(--dot-distance, 28px)) rotate(var(--dot-angle-back, 0deg)) scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-verification.hidden {
  display: none;
}

.age-verification__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
}

.age-verification__modal {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 3px solid var(--color-accent);
  padding: 40px 28px 32px;
  max-width: 460px;
  width: min(calc(100% - 40px), 460px);
  text-align: center;
  box-shadow: none;
}

.age-verification__title {
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  margin: 0 0 20px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.age-verification__text {
  font-family: 'Inter', 'Manrope';
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 32px;
  color: var(--color-text);
}

.age-verification__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.age-verification__btn {
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: 3px solid var(--color-accent);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  min-width: 110px;
  min-height: 50px;
}

.age-verification__btn--yes {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.age-verification__btn--yes:hover {
  background: #c9bd5f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 204, 106, 0.4);
}

.age-verification__btn--no {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-accent);
}

.age-verification__btn--no:hover {
  background: rgba(216, 204, 106, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 204, 106, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #FFFFFF;
  border-top: 3px solid var(--color-accent);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner__text {
  font-family: 'Inter', 'Manrope';
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

.cookie-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cookie-banner__btn {
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 3px solid var(--color-accent);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  min-height: 40px;
  white-space: nowrap;
  width: 100%;
}

.cookie-banner__btn--accept {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.cookie-banner__btn--accept:hover {
  background: #c9bd5f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 204, 106, 0.4);
}

@media (min-width: 961px) {
  .cookie-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__text {
    flex: 1;
    margin-right: 20px;
  }

  .cookie-banner__buttons {
    flex-direction: row;
    flex-shrink: 0;
    width: auto;
  }

  .cookie-banner__btn {
    width: auto;
  }
}

.policy-page {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
}

.policy-hero {
  background: linear-gradient(135deg, rgba(216, 204, 106, 0.3), rgba(216, 204, 106, 0.05));
  padding: 72px 16px 60px;
  text-align: center;
  position: relative;
}

.policy-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.policy-hero__logo {
  display: inline-flex;
  padding: 8px 18px;
}

.policy-hero__logo img {
  width: 150px;
  height: auto;
}

.policy-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 0;
  color: var(--color-soft);
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.2;
}

.policy-hero__date {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.2;
}

.policy-hero__eyebrow {
  line-height: 1.2;
}

.policy-back-floating {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(21, 20, 13, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.policy-back-floating:hover,
.policy-back-floating:focus-visible {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.policy-back-floating__icon {
  width: 18px;
  height: 12px;
}

.policy-main {
  padding: 40px 16px 80px;
}

.policy-content {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.policy-section h2 {
  margin-top: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.policy-section h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  margin-top: 12px;
}

.policy-section p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.policy-section ul {
  margin: 0 0 12px 22px;
  padding: 0;
  line-height: 1.65;
}

.policy-section--raw h2 {
  margin-top: 24px;
  font-size: 1.25rem;
}

.policy-indent {
  margin-left: 24px;
  line-height: 1.6;
}

.policy-heading-text {
  font-family: 'Manrope', 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0;
}

.scroll-top {
  position: fixed;
  right: 32px;
  bottom: 101px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  z-index: 2000;
}

.scroll-top__icon {
  width: 26px;
  height: 28px;
  flex-shrink: 0;
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top--policy {
  bottom: 48px;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: #c9bd5f;
}

@media (max-width: 768px) {
  .scroll-top {
    right: 16px;
    bottom: 85px;
    width: 65px;
    height: 65px;
  }

  .scroll-top--policy {
    bottom: 32px;
  }
}

.policy-section__note {
  font-style: italic;
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .policy-content {
    padding: 18px;
    border-width: 2px;
  }

  .policy-section h2 {
    font-size: 1.1rem;
  }

  .policy-section ul {
    margin-left: 16px;
  }

  .policy-back-floating {
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    letter-spacing: 0.06em;
  }

  .safety p {
    font-size: 15px;
  }
}

