@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --font-main: "Manrope", "Segoe UI", Arial, sans-serif;
  --bg: #0f1012;
  --bg-soft: #15171c;
  --surface: #1c1f25;
  --surface-soft: #222630;
  --text: #f3f1ec;
  --text-dim: #b6b4ae;
  --gold: #d6ad60;
  --gold-strong: #f0cb85;
  --gold-soft: #8a6b35;
  --line: #343844;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgba(214, 173, 96, 0.12), transparent 35%),
    radial-gradient(circle at 88% 8%, rgba(214, 173, 96, 0.08), transparent 35%),
    var(--bg);
}

body.modal-open {
  overflow: hidden;
}

.payment-status-banner {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translate(-50%, -16px);
  z-index: 120;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #101010;
  background: #d6b25e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.payment-status-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.payment-status-banner--success {
  background: #d6b25e;
  color: #111;
}

.payment-status-banner--fail {
  background: #f1d2d2;
  color: #4b1515;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 0.5px, transparent 0.5px),
    radial-gradient(rgba(214, 173, 96, 0.05) 0.5px, transparent 0.5px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  opacity: 0.22;
}

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

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.theme-toggle {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 30;
  border: 1px solid rgba(240, 203, 133, 0.42);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(22, 25, 32, 0.92);
  color: #f2dfba;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.section {
  padding: 84px 0;
}

.section--alt {
  background: linear-gradient(180deg, #13151b 0%, #101218 100%);
}

.section__header h2 {
  margin: 0;
  font-family: var(--font-main);
  letter-spacing: 0.8px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.94;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(120deg, #fff4da 8%, #ddb56e 42%, #f7ddb2 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 245, 225, 0.08);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.section__header p {
  margin: 14px 0 0;
  font-size: clamp(16px, 2.1vw, 22px);
  max-width: 760px;
  color: var(--text-dim);
}

.section__header--centered {
  text-align: center;
}

.section__header--centered p {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 203, 133, 0.28), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(240, 203, 133, 0.2), transparent 35%),
    linear-gradient(130deg, #16181f 0%, #111318 48%, #0d0f14 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(214, 173, 96, 0.08), transparent 42%, rgba(214, 173, 96, 0.06));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero__title {
  margin: 0;
  font-family: var(--font-main);
  max-width: 820px;
  font-size: clamp(34px, 6.4vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-wrap: balance;
  color: #f6f4ef;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
}

.hero__title .hero__sep {
  color: #d6ad60;
  padding: 0 0.14em;
}

.hero__title .hero__accent {
  color: transparent;
  background: linear-gradient(120deg, #f5d89b 5%, #c89b4b 45%, #f0cf95 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.motion-disabled .reveal-item {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero__subtitle {
  margin: 24px 0 34px;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.45;
  max-width: 640px;
  color: var(--text-dim);
}

.hero__visual img {
  width: 100%;
  border-radius: 34px 34px 10px 10px;
  border: 1px solid rgba(240, 203, 133, 0.32);
  box-shadow: var(--shadow);
  will-change: transform;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 203, 133, 0.45);
  border-radius: 14px;
  padding: 14px 28px;
  background: linear-gradient(120deg, #f2d69c 0%, #c99849 50%, #f1d9a5 100%);
  color: #1a1307;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 14px 28px rgba(166, 122, 43, 0.35);
}

.button::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 34%;
  height: 340%;
  transform: rotate(24deg) translateX(-240%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.button:hover::before {
  animation: button-sheen 0.9s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.hero__text {
  will-change: transform;
}

.button--light {
  background: linear-gradient(120deg, #fff5df, #e8c581);
}

.carousel {
  position: relative;
  margin-top: 30px;
}

.carousel__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 300px));
  justify-content: center;
  gap: 16px;
  overflow: visible;
  padding: 4px 0;
}

.carousel__track .category-card:last-child {
  grid-column: 1 / -1;
  width: min(300px, 100%);
  justify-self: center;
}

.category-card {
  scroll-snap-align: start;
  background: linear-gradient(180deg, #232834 0%, #1b2029 100%);
  border: 1px solid rgba(240, 203, 133, 0.18);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 203, 133, 0.42);
}

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

.category-card h3 {
  margin: 12px;
  font-size: 16px;
  color: #ece7dc;
}

.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(240, 203, 133, 0.35);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #242a34;
  color: var(--gold-strong);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: none;
}

.carousel__control[data-carousel-prev] {
  left: 0;
}

.carousel__control[data-carousel-next] {
  right: 0;
}

.facts-grid,
.reasons-grid,
.plans-grid {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.important-intro {
  margin: 18px auto 0;
  max-width: 900px;
  text-align: center;
  line-height: 1.55;
  color: var(--text-dim);
  font-size: clamp(16px, 2vw, 20px);
}

#important .section__header {
  text-align: center;
}

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

.reasons-grid .reason-card:last-child {
  grid-column: 1 / -1;
  width: calc((100% - 18px) / 2);
  max-width: 100%;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
}

.fact-card,
.reason-card,
.plan-card,
.order-form {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface) 100%);
  border: 1px solid rgba(240, 203, 133, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact-card,
.reason-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  align-items: start;
}

.fact-card span,
.reason-card span {
  font-family: var(--font-main);
  font-size: 54px;
  line-height: 0.9;
  color: var(--gold-strong);
}

.fact-card p,
.reason-card p {
  margin: 8px 0 0;
  line-height: 1.45;
  color: #d8d5cd;
}

.plan-card {
  padding: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 203, 133, 0.46);
  box-shadow: 0 30px 54px rgba(0, 0, 0, 0.52);
}

.plan-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(240, 203, 133, 0.22);
}

.plan-card h3 {
  margin: 14px 0 4px;
  font-size: 30px;
  font-family: var(--font-main);
}

.plan-card__price {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-strong);
  margin: 8px 0;
}

.plan-card--soon .plan-card__price {
  color: #c4c0b7;
}

.plan-card .button:disabled {
  background: #3b3f49;
  border-color: #4b4f59;
  color: #c7c3bb;
  box-shadow: none;
  cursor: not-allowed;
  filter: none;
}

.plan-card .button:disabled::before {
  display: none;
}

.plan-card ul {
  margin: 12px 0 18px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #d6d3ca;
}

.order-form {
  margin: 24px auto 0;
  padding: 20px;
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  max-width: 760px;
}

#order .section__header {
  text-align: center;
}

#order .section__header p {
  margin-left: auto;
  margin-right: auto;
}

.order-entry {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
}

.cart-modal.is-open {
  display: block;
}

.cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(4px);
}

.cart-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 24px));
  max-height: calc(100vh - 34px);
  margin: 18px auto;
  overflow: auto;
  border: 1px solid rgba(240, 203, 133, 0.3);
  border-radius: 18px;
  background: linear-gradient(180deg, #1a1d24 0%, #141820 100%);
  box-shadow: 0 35px 64px rgba(0, 0, 0, 0.58);
  padding: 18px 16px 16px;
}

.cart-modal__title {
  margin: 4px 36px 0 6px;
  font-family: var(--font-main);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.92;
  color: var(--gold-strong);
}

.cart-modal__hint {
  margin: 10px 6px 18px;
  color: var(--text-dim);
}

.cart-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 1px solid rgba(240, 203, 133, 0.32);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  background: #2a2f3a;
  color: #f2ddb0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cart-modal .order-form {
  margin-top: 10px;
}

.order-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: #ece8de;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"] {
  border: 1px solid rgba(240, 203, 133, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  background: #151922;
  color: #f7f3e8;
}

.order-form input:focus {
  outline: 1px solid rgba(240, 203, 133, 0.5);
}

.order-form input.is-invalid {
  border-color: #d35555 !important;
  box-shadow: 0 0 0 1px rgba(211, 85, 85, 0.35);
}

.order-form__error {
  margin: 2px 0 0;
  color: #de7474;
  font-size: 14px;
  line-height: 1.35;
  min-height: 19px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.order-form__error.is-visible {
  opacity: 1;
}

.api-fallback {
  display: none;
  margin: -2px 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(220, 94, 94, 0.45);
  background: rgba(85, 24, 24, 0.24);
  color: #f0d1d1;
  font-size: 14px;
  line-height: 1.35;
}

.api-fallback a {
  color: #ffd9a0;
}

.api-fallback.is-visible {
  display: block;
}

.order-form__check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 400;
  color: #cfcbc2;
}

.cart-box {
  border: 1px solid rgba(240, 203, 133, 0.24);
  border-radius: 16px;
  padding: 14px;
  background: rgba(14, 17, 23, 0.35);
}

.cart-box__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-family: var(--font-main);
  letter-spacing: 0.4px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
}

.cart-row__name {
  font-weight: 700;
}

.cart-row__sum {
  white-space: nowrap;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 32px 40px 32px;
  align-items: center;
  border: 1px solid rgba(240, 203, 133, 0.26);
  border-radius: 999px;
  overflow: hidden;
}

.cart-qty__btn {
  height: 32px;
  border: 0;
  background: #2b313d;
  color: #f1d7a1;
  cursor: pointer;
  font-size: 18px;
}

.cart-qty__value {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.cart-qty__value::after {
  content: "шт";
  margin-left: 2px;
  font-size: 11px;
  opacity: 0.8;
}

.cart-total {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.cart-total--final {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(240, 203, 133, 0.32);
}

.stock-note {
  margin: 10px 0 0;
  font-size: 14px;
  color: #d7caa9;
}

.stock-note.is-empty {
  color: #de7474;
}

.order-group {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(240, 203, 133, 0.24);
  border-radius: 14px;
  display: grid;
  gap: 12px;
}

.order-group legend {
  padding: 0 8px;
  color: #f2ddb0;
  font-weight: 700;
}

.delivery-options {
  display: grid;
  gap: 8px;
}

.delivery-options label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: #cbc6bc;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-auto-flow: row;
  gap: 10px;
  z-index: 20;
}

.telegram-float,
.cart-float {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(29, 34, 43, 0.96), rgba(18, 22, 30, 0.96));
  border: 1px solid rgba(240, 203, 133, 0.44);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(240, 203, 133, 0.08) inset;
  padding: 10px;
  display: grid;
  place-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cart-float {
  font-size: 30px;
  color: #f0d8aa;
  cursor: pointer;
}

.telegram-float:hover,
.cart-float:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(240, 203, 133, 0.68);
  box-shadow:
    0 22px 34px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(214, 173, 96, 0.24);
}

.telegram-float img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.footer {
  background: linear-gradient(180deg, #171a21 0%, #111318 100%);
  border-top: 1px solid rgba(240, 203, 133, 0.25);
  padding: 26px 0 30px;
}

.footer__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #d0ccc4;
}

.footer__content a,
.footer__content span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 203, 133, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #efe7d8;
}

.footer__content a {
  text-decoration: none;
}

.footer__content a:hover {
  border-color: rgba(240, 203, 133, 0.5);
  background: rgba(240, 203, 133, 0.09);
}

@media (max-width: 1024px) {
  .hero__content {
    min-height: 590px;
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .hero__visual {
    max-width: 520px;
  }

}

@media (max-width: 760px) {
  .section {
    padding: 58px 0;
  }

  .facts-grid,
  .reasons-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .carousel__track {
    grid-template-columns: 1fr;
    padding: 4px 0;
  }

  .reasons-grid .reason-card:last-child {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  .carousel__track .category-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .carousel__control {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button::before {
    display: none;
  }

}

@keyframes button-sheen {
  from {
    transform: rotate(24deg) translateX(-240%);
  }
  to {
    transform: rotate(24deg) translateX(520%);
  }
}

body.theme-light {
  color: #22201b;
  background:
    radial-gradient(circle at 12% -8%, rgba(173, 132, 61, 0.12), transparent 35%),
    radial-gradient(circle at 88% 8%, rgba(173, 132, 61, 0.08), transparent 35%),
    #f7f2e8;
}

body.theme-light .section--alt {
  background: linear-gradient(180deg, #f3ecdf 0%, #f7f2e8 100%);
}

body.theme-light .hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(173, 132, 61, 0.22), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(173, 132, 61, 0.14), transparent 35%),
    linear-gradient(130deg, #f4ede1 0%, #f8f3ea 48%, #ece2d0 100%);
}

body.theme-light .hero::after {
  background: linear-gradient(120deg, rgba(173, 132, 61, 0.08), transparent 42%, rgba(173, 132, 61, 0.06));
}

body.theme-light .section__header h2 {
  background: linear-gradient(120deg, #2f2920 8%, #7f5e2f 42%, #3a3126 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
  text-shadow: none;
}

body.theme-light .section__header p,
body.theme-light .hero__subtitle,
body.theme-light .fact-card p,
body.theme-light .reason-card p,
body.theme-light .plan-card ul,
body.theme-light .important-intro,
body.theme-light .order-form__check,
body.theme-light .footer__content {
  color: #5b5449;
}

body.theme-light .hero__title {
  color: #2b2721;
  text-shadow: none;
}

body.theme-light .hero__title .hero__sep {
  color: #b5883f;
}

body.theme-light .hero__title .hero__accent {
  background: linear-gradient(120deg, #7a5b2e 5%, #c29349 45%, #8c6735 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

body.theme-light .category-card,
body.theme-light .fact-card,
body.theme-light .reason-card,
body.theme-light .plan-card,
body.theme-light .order-form {
  background: linear-gradient(180deg, #fffdfa 0%, #f8f1e5 100%);
  border-color: rgba(173, 132, 61, 0.24);
}

body.theme-light .category-card h3 {
  color: #2d2923;
}

body.theme-light .carousel__control {
  background: #f1e7d4;
  color: #6b512a;
  border-color: rgba(173, 132, 61, 0.35);
}

body.theme-light .order-form label {
  color: #2f2a23;
}

body.theme-light .order-form input[type="text"],
body.theme-light .order-form input[type="email"],
body.theme-light .order-form input[type="tel"] {
  background: #fffefb;
  color: #2b261f;
  border-color: rgba(173, 132, 61, 0.28);
}

body.theme-light .order-form input.is-invalid {
  border-color: #cc4c4c !important;
  box-shadow: 0 0 0 1px rgba(204, 76, 76, 0.28);
}

body.theme-light .order-form__error {
  color: #b34040;
}

body.theme-light .cart-modal__dialog {
  background: linear-gradient(180deg, #fffaf1 0%, #f7efdf 100%);
  border-color: rgba(173, 132, 61, 0.3);
}

body.theme-light .cart-modal__backdrop {
  background: rgba(22, 16, 6, 0.36);
}

body.theme-light .cart-modal__title {
  color: #6b4e24;
}

body.theme-light .cart-modal__hint {
  color: #5b5449;
}

body.theme-light .cart-modal__close {
  background: #f0e4cf;
  color: #5d4520;
  border-color: rgba(173, 132, 61, 0.32);
}

body.theme-light .cart-box,
body.theme-light .order-group {
  background: rgba(255, 252, 246, 0.8);
  border-color: rgba(173, 132, 61, 0.28);
}

body.theme-light .delivery-options label {
  color: #4f493e;
}

body.theme-light .stock-note {
  color: #6e5630;
}

body.theme-light .stock-note.is-empty {
  color: #b34040;
}

body.theme-light .api-fallback {
  border-color: rgba(184, 66, 66, 0.35);
  background: rgba(224, 121, 121, 0.16);
  color: #7f2424;
}

body.theme-light .api-fallback a {
  color: #8f5f18;
}

body.theme-light .cart-qty {
  border-color: rgba(173, 132, 61, 0.34);
}

body.theme-light .cart-qty__btn {
  background: #f2e8d6;
  color: #6a5128;
}

body.theme-light .telegram-float {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 236, 219, 0.98));
  border-color: rgba(173, 132, 61, 0.42);
}

body.theme-light .cart-float {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 236, 219, 0.98));
  border-color: rgba(173, 132, 61, 0.42);
  color: #6a5128;
}

body.theme-light .footer {
  background: linear-gradient(180deg, #efe5d2 0%, #e7dac2 100%);
  border-top-color: rgba(173, 132, 61, 0.26);
}

body.theme-light .footer__content a,
body.theme-light .footer__content span {
  color: #2f281d;
  border-color: rgba(173, 132, 61, 0.3);
  background: rgba(255, 255, 255, 0.58);
}

body.theme-light .footer__content a:hover {
  border-color: rgba(173, 132, 61, 0.55);
  background: rgba(255, 255, 255, 0.9);
}

body.theme-light .theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  color: #5b4524;
  border-color: rgba(173, 132, 61, 0.35);
}
