@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --color-bg: #fbf8f2;
  --color-surface: #ffffff;
  --color-primary: #3a6b5c;
  --color-primary-dark: #2a5246;
  --color-accent: #c27e5a;
  --color-text: #2e2a28;
  --color-text-light: #6b5e58;
  --color-border: #e5dbd1;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lora', serif;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --transition: all 0.2s ease;
  --section-gap: clamp(40px, 8vw, 64px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

section {
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--color-primary);
}

.section-title span {
  color: var(--color-accent);
  font-style: italic;
}

.header-notice-bar {
  background: var(--color-primary-dark);
  color: #e0dcd8;
  text-align: center;
  padding: 8px 0;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.header {
  background: var(--color-surface);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo img {
  border-radius: var(--radius-sm);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__list a {
  font-weight: 500;
  transition: color 0.2s;
}

.nav__list a:hover {
  color: var(--color-primary);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.hero {
  padding: 64px 0;
}

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

.hero__title {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  margin-bottom: 16px;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero__price-old {
  font-size: 1.8rem;
  text-decoration: line-through;
  color: var(--color-text-light);
}

.hero__price-new {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero__perks {
  list-style: none;
  margin-bottom: 32px;
}

.hero__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero__perks i {
  color: var(--color-primary);
}

.hero__media img {
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-showcase {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.showcase-text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.stock-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg);
  padding: 10px 18px;
  border-radius: 40px;
  margin-bottom: 32px;
  font-weight: 500;
}

.native-gallery {
  margin-top: 24px;
}

.gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-thumbs img.active {
  border-color: var(--color-primary);
}

.showcase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: start;
}

.feature-card {
  background: var(--color-bg);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card i {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.specs-cta {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #f5efe8 0%, #fbf8f2 100%);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.specs-content .section-title {
  margin-bottom: 32px;
}

.specs-tabs {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.specs-list {
  list-style: none;
}

.specs-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.specs-list li:last-child {
  border-bottom: none;
}

.order-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  align-self: start;
}

.order-badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.order-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.order-price .old-price {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: var(--color-text-light);
}

.order-price .new-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input:not([type="checkbox"]) {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  font-size: 1rem;
  background: var(--color-bg);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58, 107, 92, 0.1);
}

.form-group--qty {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-group--qty input {
  width: 80px;
}

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group--checkbox label {
  font-size: 0.9rem;
}

.secure-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.testimonials {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--color-bg);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #f4b740;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.95rem;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.faq-contact {
  padding: var(--section-gap) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.faq .section-title {
  margin-bottom: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.contact-card {
  background: var(--color-surface);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-info i {
  width: 24px;
  color: var(--color-primary);
}

.contact-img {
  margin-top: 24px;
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.footer {
  background: #2a3a33;
  color: #e0dcd8;
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-family: var(--font-heading);
}

.footer__logo img {
  filter: brightness(0) invert(1);
}

.footer__logo a:hover,
.footer__logo img:hover {
  filter: brightness(0) invert(1);
}

.footer__info {
  text-align: right;
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
  border-top: 1px solid #4a5a53;
  border-bottom: 1px solid #4a5a53;
}

.footer__legal a {
  color: #e0dcd8;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: white;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: #b0aaa4;
  line-height: 1.6;
  max-width: 900px;
}

.footer__bottom {
  font-size: 0.8rem;
  color: #8a8580;
  text-align: center;
  padding-top: 16px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 24px 0 16px;
}

.legal-content h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 20px 0 12px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 16px 1.5rem;
}

@media (max-width: 992px) {
  .hero__grid,
  .showcase-grid,
  .specs-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .header__right {
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-surface);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 24px 24px;
    z-index: 200;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 24px;
  }

  .burger {
    display: flex;
    z-index: 201;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
  }

  .footer__info {
    text-align: center;
  }

  .showcase-features {
    grid-template-columns: 1fr;
  }
}
.thanks-wrapper, .legal-content {
  word-break: break-word;
}