@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary: #c75233;
  --primary-dark: #a33f24;
  --secondary: #2b3a42;
  --accent: #e5b181;
  --light-bg: #f9f5f0;
  --text-dark: #1e1e1e;
  --text-muted: #555;
  --border-light: #e0dcd7;
  --white: #fff;
  --shadow: 0 8px 20px rgba(0,0,0,0.05);
  --radius: 12px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', serif;
}
.legal-page {
  padding: 50px 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(199,82,51,0.25);
}
.btn--primary:hover {
  background: linear-gradient(145deg, var(--primary-dark), #8f351d);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(199,82,51,0.3);
}

.btn--block {
  display: block;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--secondary);
}
.logo img {
  border-radius: 8px;
}
.nav__list {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--primary);
}
.header__notice .notice-badge {
  background: var(--light-bg);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.hero--triple {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #fffdfb 0%, #f9f5f0 100%);
}
.hero__triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.hero-gallery,
.hero-order,
.hero-faq {
  display: flex;
  flex-direction: column;
}

.gallery {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gallery__main {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1/1;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gallery__thumb {
  width: calc(25% - 6px);
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}
.gallery__thumb.active {
  border-color: var(--primary);
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.order-card__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.price__current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}
.price__old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.badge {
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}
.order-form .form-group {
  margin-bottom: 14px;
}
.order-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 0.95rem;
  transition: border 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.order-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(199,82,51,0.15);
}
.form-group--qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-group--qty label {
  font-weight: 500;
  min-width: 65px;
}
.form-group--qty input {
  width: 80px;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}
.custom-checkbox input:checked ~ .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.order-card__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.order-card__benefits i {
  margin-right: 4px;
  color: var(--primary);
}

.faq-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}
.faq-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--secondary);
}
.faq__list .faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}
.faq-item__question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
}
.faq-item__answer {
  padding-top: 10px;
  color: var(--text-muted);
  display: none;
  font-size: 0.9rem;
}
.faq-item.active .faq-item__answer {
  display: block;
}
.faq-item.active .fa-chevron-down {
  transform: rotate(180deg);
}

.features {
  padding: 64px 0;
  background: var(--white);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.feature-card {
  background: var(--light-bg);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-card__icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.specs {
  padding: 48px 0 64px;
  background: var(--light-bg);
}
.specs__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.spec-icon {
  font-size: 2rem;
  line-height: 1;
}
.spec-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.spec-content p {
  color: var(--text-muted);
}
.specs__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.specs__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.reviews {
  padding: 64px 0;
  background: var(--white);
}
.reviews-swiper {
  padding-bottom: 48px !important;
}
.review-card {
  background: var(--light-bg);
  padding: 24px;
  border-radius: var(--radius);
  height: 100%;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-icon {
  font-size: 2.5rem;
  color: var(--primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card__header h4 {
  font-weight: 600;
}
.review-card__header span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.review-text {
  margin-bottom: 16px;
  font-style: italic;
}
.review-stars {
  color: #f5b342;
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.contact-only {
  padding: 48px 0 64px;
  background: linear-gradient(0deg, #f9f5f0 0%, #ffffff 100%);
}
.contact-only__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-only__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-only__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--secondary);
}
.contact-card__list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card__list i {
  width: 20px;
  color: var(--primary);
}
.contact-card__hours {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.footer {
  background: var(--secondary);
  color: #ddd;
  padding: 48px 0 32px;
  margin-top: auto;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  color: white;
}
.footer__logo img {
  border-radius: 8px;
  background: white;
}
.footer__info {
  max-width: 700px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer__legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 16px;
}
.footer__legal a {
  color: #ddd;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}
.footer__legal a:hover {
  color: white;
}
.footer__disclaimer {
  margin: 20px 0 16px;
  font-size: 0.85rem;
  color: #aaa;
}
.footer__copyright {
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero__triple-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features__grid {
    grid-template-columns: repeat(2,1fr);
  }
  .specs__wrapper {
    grid-template-columns: 1fr;
  }
  .specs__image {
    order: -1;
  }
  .contact-only__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .header__inner {
    height: 70px;
  }
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav.active {
    transform: translateY(0);
  }
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .header__notice {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .specs__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    text-align: center;
  }
}