@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #1a2e3b;
  --secondary: #b59d7e;
  --accent: #c75b39;
  --bg-light: #f8f6f2;
  --text-dark: #1e1e1e;
  --text-muted: #5a5a5a;
  --border-light: #e2ddd6;
  --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.05);
  --shadow-md: 0 20px 40px -15px rgba(0,0,0,0.08);
  --shadow-lg: 0 30px 50px -20px rgba(0,0,0,0.12);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', serif;
}
footer a {
  color: white;
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

.section {
  padding: 64px 0;
}

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

.bg-light {
  background: var(--bg-light);
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-header {
  margin-bottom: 48px;
  text-align: center;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--primary);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background: transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #264b5e 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(26,46,59,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #0f2029 0%, #1a3849 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(26,46,59,0.3);
}
.btn--large {
  padding: 16px 44px;
  font-size: 1.125rem;
}

.header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}
.logo img {
  border-radius: 8px;
  object-fit: contain;
}
.header__notice {
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 6px 16px;
  border-radius: 30px;
}

.hero {
  padding: 32px 0 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary);
}
.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.stars i {
  color: #f5b342;
  margin-right: 4px;
}
.rating-text {
  font-weight: 500;
  color: var(--text-dark);
}
.hero__features {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.feature-item i {
  color: var(--accent);
  width: 20px;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.feature-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(181,157,126,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-icon i {
  font-size: 28px;
  color: var(--secondary);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.feature-card p { color: var(--text-muted); }

.steps {
  display: flex;
  justify-content: space-between;
  margin: 48px 0 32px;
}
.step {
  flex: 1;
  padding: 0 20px;
}
.step__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--secondary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.step p { color: var(--text-muted); }
.how-it-works__media {
  text-align: center;
  margin-top: 24px;
}
.how-it-works__media img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

.achievement-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin: 32px 0 24px;
}
.achievement {
  background: #fff;
  padding: 28px 16px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
}
.achievement:hover { transform: scale(1.02); }
.achievement__icon i {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.achievement__number {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
}
.achievement__label {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.achievement-note {
  color: var(--text-muted);
  font-style: italic;
}

.testimonial-swiper { padding-bottom: 48px; }
.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.testimonial__text {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-style: italic;
}
.testimonial__author .name {
  font-weight: 600;
  display: block;
}
.testimonial__author .location {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.swiper-pagination-bullet-active { background: var(--primary); }

.specs-list {
  list-style: none;
  margin-top: 24px;
}
.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.specs-list li span:first-child {
  font-weight: 600;
  color: var(--primary);
}
.specs-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.order-faq-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.order-form-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  padding: 36px;
  border: 1px solid rgba(181,157,126,0.15);
}
.price-block {
  margin-bottom: 28px;
}
.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 16px;
  font-size: 1.2rem;
}
.current-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
.discount-badge {
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  margin-left: 16px;
  font-weight: 500;
}
.form-bullet {
  list-style: none;
  margin-bottom: 32px;
}
.form-bullet li {
  margin-bottom: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.form-bullet i {
  color: var(--secondary);
  margin-right: 14px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}
.form-group input, .form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(181,157,126,0.15);
}
.quantity-control {
  display: flex;
  align-items: center;
  width: 150px;
}
.quantity-control input {
  width: 70px;
  text-align: center;
  border-radius: 0;
  border-left: none;
  border-right: none;
  -moz-appearance: textfield;
}
.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-btn {
  width: 40px;
  height: 52px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.15s;
}
.qty-btn:hover { background: #e9e2d8; }

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  display: inline-block;
  position: relative;
}
.custom-checkbox input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.custom-checkbox input:checked + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-card {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(181,157,126,0.1);
}
.faq-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--primary);
}
.faq-compact-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.faq-compact-item:last-child { border: none; }
.faq-compact-q {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}
.faq-compact-a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-more-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.faq-more-link:hover { color: var(--primary); }

.final-cta {
  background: linear-gradient(145deg, var(--primary) 0%, #243e4d 100%);
  color: #fff;
  border-radius: 40px 40px 0 0;
  margin-top: 20px;
}
.final-cta .section-title,
.final-cta .section-subtitle { color: #fff; }

.footer {
  background: #0f1a21;
  color: #ccc;
  padding: 48px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 32px;
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}
.footer__contact .contact-line {
  margin-bottom: 6px;
  color: #aaa;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__legal a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.15s;
}
.footer__legal a:hover { color: #fff; }
.footer__disclaimer {
  border-top: 1px solid #2a3a44;
  padding-top: 24px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
}
.footer__disclaimer {
  text-align: center;
}
.footer__bottom {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .hero__grid, .split-row, .features__grid { grid-template-columns: 1fr; gap: 30px; }
  .steps { flex-direction: column; gap: 24px; }
  .step { padding: 0; }
  .order-faq-grid { grid-template-columns: 1fr; }
  .header__inner { flex-wrap: wrap; height: auto; padding: 16px 0; }
  .header__notice { font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .hero__features { flex-wrap: wrap; }
  .footer__top { flex-direction: column; }
  .footer__legal { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

.legal-page {
  padding: 48px 0;
}
.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
}
.legal-wrapper h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 32px;
  color: var(--primary);
}
.legal-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 32px 0 16px;
  color: var(--primary);
}
.legal-wrapper p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-dark);
}
.legal-wrapper ul, .legal-wrapper ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
.legal-wrapper li { margin-bottom: 8px; }
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}