@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   SZWEIYI — CSS Design System
   Theme: Warm Terracotta / Editorial Wellness
   ============================================================ */

:root {
  --c-bg:           #FDFAF7;
  --c-bg-alt:       #F5EDE4;
  --c-bg-card:      #FFFFFF;
  --c-bg-dark:      #2C1810;
  --c-bg-warm:      #F0E6D9;
  --c-primary:      #C4622D;
  --c-primary-dk:  #A04E22;
  --c-primary-lt:  #FAE8DC;
  --c-secondary:    #5C3D2E;
  --c-accent:       #E8A87C;
  --c-text:         #2C1810;
  --c-text-sec:     #6B4F42;
  --c-text-muted:   #9E8479;
  --c-border:       #E8D8CC;
  --c-border-dark:  #D4BAA8;
  --c-cta:          #C4622D;
  --c-cta-hov:      #A04E22;
  --c-ok:           #5C8A4D;
  --c-white:        #FFFFFF;

  --ff-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 2px rgba(44,24,16,0.05);
  --shadow-sm: 0 2px 8px rgba(44,24,16,0.07);
  --shadow-md: 0 4px 16px rgba(44,24,16,0.10);
  --shadow-lg: 0 8px 32px rgba(44,24,16,0.13);
  --shadow-sticky: 0 4px 12px rgba(44,24,16,0.08);

  --transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.2s ease;
  --max-width: 1180px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.75;
  font-size: clamp(15px, 1.6vw, 17px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-dk); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-heading); font-weight: 700; line-height: 1.25; color: var(--c-text); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--c-bg-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.preloader__logo {
  width: 64px; height: 64px;
  filter: brightness(0) invert(1);
}
.preloader__text {
  font-family: var(--ff-heading);
  font-size: 16px; color: var(--c-accent);
  letter-spacing: 0.05em;
}
.preloader__dots {
  display: flex; gap: 6px; margin-top: 4px;
}
.preloader__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.preloader__dot:nth-child(2) { animation-delay: 0.2s; }
.preloader__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
body.loaded .preloader { opacity: 0; visibility: hidden; pointer-events: none; }

/* ============================================================
   DISCLOSURE BAR
   ============================================================ */
.disclosure-bar {
  background: var(--c-secondary);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px; color: rgba(255,255,255,0.85);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,250,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sticky); }
.navbar__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo-wrap {
  display: flex; align-items: center;
  text-decoration: none;
}
.navbar__logo-img {
  height: 34px; width: auto; flex-shrink: 0;
}

.navbar__nav { display: flex; gap: 28px; align-items: center; }
.navbar__link {
  font-size: 14px; font-weight: 500; color: var(--c-text-sec);
  position: relative; padding: 4px 0;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.navbar__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--c-primary);
  transition: width var(--transition);
}
.navbar__link:hover { color: var(--c-primary); }
.navbar__link:hover::after { width: 100%; }
.navbar__link.active { color: var(--c-primary); }
.navbar__link.active::after { width: 100%; }

.navbar__cta {
  display: inline-flex; align-items: center;
  background: var(--c-primary); color: #fff;
  padding: 10px 22px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
  transition: background var(--transition), transform var(--transition-fast), box-shadow var(--transition);
  letter-spacing: 0.01em;
}
.navbar__cta:hover { background: var(--c-primary-dk); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Hamburger */
.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; height: 26px; justify-content: center;
  z-index: 1100; padding: 2px;
}
.navbar__hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--c-secondary); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.navbar__overlay {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px;
  height: 100vh; background: var(--c-bg); z-index: 1050;
  padding: 100px 40px 40px;
  display: flex; flex-direction: column; gap: 0;
  transition: right var(--transition);
  box-shadow: -4px 0 30px rgba(44,24,16,0.12);
  overflow-y: auto;
}
.navbar__overlay.open { right: 0; }
.navbar__overlay-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(44,24,16,0.4);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.navbar__overlay-backdrop.open { opacity: 1; visibility: visible; }
.navbar__overlay .navbar__link {
  font-size: 18px; padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-sec);
}
.navbar__overlay .navbar__link:hover { color: var(--c-primary); border-color: var(--c-primary); }
.navbar__overlay .navbar__cta { margin-top: 24px; text-align: center; justify-content: center; }

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__inner { height: 60px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: #fff;
  padding: 15px 36px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600;
  transition: background var(--transition), transform var(--transition-fast), box-shadow var(--transition);
  border: none; cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--c-primary-dk); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--c-primary);
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--c-primary);
  transition: background var(--transition), color var(--transition), transform var(--transition-fast);
  cursor: pointer; letter-spacing: 0.01em;
}
.btn-ghost:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 88px 0; }
.section--alt { background: var(--c-bg-alt); }
.section--warm { background: var(--c-bg-warm); }
.section--dark { background: var(--c-bg-dark); }
.section--dark h2, .section--dark p { color: #fff; }

.section__label {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-primary); margin-bottom: 14px;
}
.section__title {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 20px; line-height: 1.2;
}
.section__subtitle {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-text-sec); max-width: 640px; line-height: 1.75;
}
.section__link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; color: var(--c-primary);
  margin-top: 16px; transition: gap var(--transition-fast);
}
.section__link:hover { color: var(--c-primary-dk); gap: 8px; }
.notice { font-size: 13px; color: var(--c-text-muted); font-style: italic; margin-bottom: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--c-bg) 0%, var(--c-bg-warm) 60%, var(--c-primary-lt) 100%);
  padding: 72px 0 88px; overflow: hidden;
}
.hero__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero__label {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--c-primary); margin-bottom: 16px;
  display: inline-block;
}
.hero__title {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.15; margin-bottom: 20px;
}
.hero__subtitle {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--c-text-sec); line-height: 1.7; margin-bottom: 28px;
}
.hero__price-tag {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--c-primary); color: #fff;
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: 22px; font-weight: 700;
  font-family: var(--ff-heading);
  margin-bottom: 28px;
}
.hero__price-tag .price-old {
  font-size: 14px; font-weight: 400; text-decoration: line-through; opacity: 0.7;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__pills { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__pill {
  font-size: 13px; color: var(--c-secondary);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-weight: 500;
}
.hero__visual {
  position: relative;
}
.hero__image-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-bg-warm);
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: 20px; left: -16px;
  background: var(--c-primary); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md);
  font-family: var(--ff-heading);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero { padding: 48px 0 64px; }
}

/* ============================================================
   HIGHLIGHT BAR
   ============================================================ */
.highlight-bar {
  background: var(--c-bg-dark); color: #fff;
  padding: 44px 0;
}
.highlight-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.highlight-bar__item-icon {
  font-size: 28px; margin-bottom: 8px;
}
.highlight-bar__item-value {
  font-family: var(--ff-heading); font-size: 28px; font-weight: 700;
  color: var(--c-accent); margin-bottom: 4px;
}
.highlight-bar__item-label {
  font-size: 13px; color: rgba(255,255,255,0.65);
}
@media (max-width: 768px) {
  .highlight-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 400px) {
  .highlight-bar__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--c-bg-warm);
  aspect-ratio: 4/3;
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__content h2 { margin-bottom: 16px; }
.split__content p { color: var(--c-text-sec); margin-bottom: 14px; }
.split__list { margin-top: 16px; }
.split__list li {
  padding: 9px 0; padding-left: 28px; position: relative;
  color: var(--c-text-sec); font-size: 15px;
}
.split__list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--c-primary-lt);
  border: 1.5px solid var(--c-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4622D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse { direction: ltr; }
}

/* ============================================================
   SPECS TABLE
   ============================================================ */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.specs-table tr { border-bottom: 1px solid var(--c-border); }
.specs-table td {
  padding: 14px 16px; font-size: 14px; vertical-align: top;
}
.specs-table td:first-child {
  font-weight: 600; color: var(--c-text); width: 42%;
  background: var(--c-bg-alt);
}
.specs-table td:last-child { color: var(--c-text-sec); }
@media (max-width: 480px) {
  .specs-table td:first-child { width: 48%; }
}

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px; }
.card {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-border-dark); }
.card__icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  background: var(--c-primary-lt);
  border-radius: var(--radius-sm);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title {
  font-family: var(--ff-heading); font-size: 17px; font-weight: 700;
  margin-bottom: 10px;
}
.card__text { font-size: 14px; color: var(--c-text-sec); line-height: 1.65; }
@media (max-width: 1024px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .card-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.review-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.review-card__stars { color: var(--c-accent); font-size: 16px; margin-bottom: 12px; letter-spacing: 3px; }
.review-card__text { font-size: 14px; color: var(--c-text-sec); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-card__author { font-size: 13px; font-weight: 600; color: var(--c-text); }
.review-card__meta { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
.review-card__badge {
  display: inline-block; margin-top: 8px;
  font-size: 11px; color: var(--c-ok);
  background: #EDF5E8;
  padding: 3px 12px; border-radius: var(--radius-full);
  font-weight: 500;
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:first-child { border-top: 1px solid var(--c-border); }

.faq-item__question {
  width: 100%; text-align: left;
  padding: 20px 44px 20px 0; position: relative;
  font-size: 16px; font-weight: 600; color: var(--c-text);
  font-family: var(--ff-body); cursor: pointer; background: none; border: none;
  line-height: 1.4;
}
.faq-item__question::after {
  content: '+'; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; font-weight: 300; color: var(--c-primary);
  transition: transform var(--transition);
}
.faq-item.active .faq-item__question::after { content: '−'; transform: translateY(-50%); }
.faq-item.active .faq-item__question { color: var(--c-primary); }

.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.active .faq-item__answer { padding-bottom: 20px; }
.faq-item__answer p {
  font-size: 14px; color: var(--c-text-sec); line-height: 1.75;
  padding-right: 40px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center; padding: 88px 24px;
  background: linear-gradient(135deg, var(--c-bg-dark) 0%, #3D2418 100%);
}
.cta-section h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 16px; color: #fff;
}
.cta-section p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 28px; }
.cta-section .cta-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__text { max-width: 720px; margin: 0 auto; }
.about__text p { color: var(--c-text-sec); margin-bottom: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-bg-dark); color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer__col-title {
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-accent); margin-bottom: 20px;
}
.footer__logo-wrap { display: flex; align-items: center; margin-bottom: 14px; }
.footer__logo-img { height: 30px; width: auto; flex-shrink: 0; }
.preloader__logo { height: 32px; width: auto; }
.footer__logo-name {
  font-family: var(--ff-heading); font-size: 20px; font-weight: 700;
  color: #fff;
}
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.45); font-style: italic; margin-top: 8px; line-height: 1.5; }
.footer__link {
  display: block; font-size: 14px; color: rgba(255,255,255,0.65);
  padding: 4px 0; transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--c-accent); }
.footer__bottom {
  margin-top: 52px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-size: 12px;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   COOKIE POPUP
   ============================================================ */
.cookie-popup {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  background: var(--c-bg-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 24px;
  max-width: 400px; width: calc(100% - 48px);
  transform: translateY(20px) scale(0.96); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  visibility: hidden;
  border-top: 3px solid var(--c-primary);
}
.cookie-popup.show { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.cookie-popup__title {
  font-family: var(--ff-heading); font-size: 17px; font-weight: 700;
  margin-bottom: 8px; color: var(--c-text);
}
.cookie-popup__text { font-size: 13px; color: var(--c-text-sec); line-height: 1.65; margin-bottom: 18px; }
.cookie-popup__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-popup__btn {
  padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer; border: none;
}
.cookie-popup__btn--accept { background: var(--c-primary); color: #fff; }
.cookie-popup__btn--accept:hover { background: var(--c-primary-dk); }
.cookie-popup__btn--decline {
  background: var(--c-bg-alt); color: var(--c-text-sec);
  border: 1px solid var(--c-border);
}
.cookie-popup__btn--decline:hover { background: var(--c-border); }
.cookie-popup__link {
  display: block; margin-top: 14px; font-size: 12px;
  color: var(--c-text-muted); text-decoration: underline;
}
.cookie-popup__link:hover { color: var(--c-primary); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-layout {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  align-items: start; padding: 48px 0 88px;
}
.order-gallery__main {
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 16px; background: var(--c-bg-warm);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.order-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.order-gallery__thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.order-gallery__thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  background: var(--c-bg-warm);
}
.order-gallery__thumb.active { border-color: var(--c-primary); }
.order-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.order-sticky {
  position: sticky; top: 88px;
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-md);
}
.order-sticky__tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-primary); background: var(--c-primary-lt);
  padding: 4px 12px; border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.order-sticky__name {
  font-family: var(--ff-heading); font-size: 20px; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.order-sticky__price {
  font-size: 32px; font-weight: 700; color: var(--c-primary);
  font-family: var(--ff-heading); margin-bottom: 20px;
}
.order-sticky__badges { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.order-sticky__badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--c-text-sec);
}
.order-sticky__badge-icon {
  width: 20px; height: 20px; color: var(--c-primary); flex-shrink: 0;
}
.order-sticky__note { font-size: 12px; color: var(--c-text-muted); margin-top: 14px; text-align: center; }
.order-sticky__return-link {
  display: block; margin-top: 16px; text-align: center;
  font-size: 13px; color: var(--c-primary); font-weight: 500;
}
@media (max-width: 900px) { .order-layout { grid-template-columns: 1fr; } .order-sticky { position: static; } }

/* ============================================================
   ARTICLE / REVIEW PAGE
   ============================================================ */
.article-header { padding: 52px 0 40px; text-align: center; background: var(--c-bg-warm); }
.article-header__category {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-primary); margin-bottom: 14px;
}
.article-header__title {
  font-size: clamp(22px, 3.5vw, 42px);
  max-width: 820px; margin: 0 auto 16px; line-height: 1.2;
}
.article-header__meta { font-size: 14px; color: var(--c-text-muted); }
.article-hero-image {
  max-width: 900px; margin: 0 auto 48px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-hero-image img { width: 100%; display: block; }

.article-body { max-width: 780px; margin: 0 auto; padding-bottom: 88px; }
.article-body h2 { font-size: clamp(20px, 2.6vw, 28px); margin: 44px 0 14px; }
.article-body h3 { font-size: clamp(17px, 2vw, 22px); margin: 28px 0 10px; }
.article-body p { color: var(--c-text-sec); margin-bottom: 16px; }
.article-body ul, .article-body ol { margin-bottom: 16px; padding-left: 20px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--c-text-sec); margin-bottom: 8px; font-size: 15px; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.pros-list, .cons-list { padding: 28px; border-radius: var(--radius-md); }
.pros-list { background: #F0F7EC; border: 1px solid #C4DEBB; }
.cons-list { background: #FDF4F0; border: 1px solid #E8CAB8; }
.pros-list h3, .cons-list h3 { font-size: 16px; margin-bottom: 14px; margin-top: 0; }
.pros-list li::before { content: '✓ '; color: var(--c-ok); font-weight: 700; }
.cons-list li::before { content: '✗ '; color: #C4622D; font-weight: 700; }
.pros-list ul, .cons-list ul { list-style: none; padding-left: 0; }
@media (max-width: 540px) { .pros-cons { grid-template-columns: 1fr; } }

/* Star rating */
.star-rating { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
.star-rating__stars { color: var(--c-accent); font-size: 22px; letter-spacing: 3px; }
.star-rating__value { font-size: 20px; font-weight: 700; color: var(--c-text); }
.star-rating__max { font-size: 15px; color: var(--c-text-muted); }

/* CTA Box */
.article-cta-box {
  background: var(--c-primary-lt); border: 1px solid var(--c-border-dark);
  border-radius: var(--radius-lg); padding: 32px; text-align: center; margin: 32px 0;
}
.article-cta-box__price {
  font-size: 26px; font-weight: 700; color: var(--c-primary);
  font-family: var(--ff-heading); margin-bottom: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--c-text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--c-text);
  background: var(--c-bg); transition: border-color var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--c-primary);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 12px; color: #C0392B; margin-top: 4px; display: none; }
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea { border-color: #C0392B; }
.form-group.error .form-error { display: block; }
.form-success {
  display: none; background: #F0F7EC; border: 1px solid #C4DEBB;
  border-radius: var(--radius-md); padding: 20px; text-align: center;
  color: var(--c-ok); font-weight: 600;
}
.form-success.show { display: block; }
.contact-info { padding: 40px; background: var(--c-bg-warm); border-radius: var(--radius-md); border: 1px solid var(--c-border); }
.contact-info h3 { font-family: var(--ff-heading); font-size: 20px; margin-bottom: 20px; }
.contact-info p { font-size: 14px; color: var(--c-text-sec); margin-bottom: 14px; }
.contact-info__item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-info__item svg { width: 20px; height: 20px; color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }
.contact-info__note { margin-top: 24px; font-size: 13px; color: var(--c-text-muted); }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { max-width: 780px; margin: 0 auto; padding: 52px 24px 88px; }
.legal-page h1 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 24px; }
.legal-page h2 { font-size: clamp(18px, 2.2vw, 24px); margin: 36px 0 12px; }
.legal-page h3 { font-size: clamp(16px, 1.8vw, 20px); margin: 24px 0 10px; }
.legal-page p { color: var(--c-text-sec); margin-bottom: 14px; font-size: 15px; }
.legal-page ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.legal-page li { color: var(--c-text-sec); margin-bottom: 6px; font-size: 15px; }
.legal-page a { color: var(--c-primary); text-decoration: underline; }

/* ============================================================
   SIZE TABLE
   ============================================================ */
.size-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.size-table th, .size-table td {
  padding: 10px 16px; text-align: center;
  border: 1px solid var(--c-border); font-size: 14px;
}
.size-table th { background: var(--c-primary); color: #fff; font-weight: 600; }
.size-table td { color: var(--c-text-sec); }
.size-table tr:nth-child(even) td { background: var(--c-bg-alt); }

/* ============================================================
   MONTAGE STEPS
   ============================================================ */
.steps-list { counter-reset: step; margin-top: 20px; }
.steps-list__item {
  counter-increment: step;
  padding: 16px 0 16px 52px; position: relative;
  border-bottom: 1px solid var(--c-border);
}
.steps-list__item:last-child { border-bottom: none; }
.steps-list__item::before {
  content: counter(step);
  position: absolute; left: 0; top: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.steps-list__item h4 { font-family: var(--ff-body); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.steps-list__item p { font-size: 14px; color: var(--c-text-sec); margin: 0; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 56px; }
  .container { padding: 0 18px; }
}
@media (max-width: 500px) {
  .section { padding: 44px 0; }
  .hero { padding: 32px 0 44px; }
  .hero__title { font-size: 28px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn-primary, .hero__buttons .btn-ghost { width: 100%; justify-content: center; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
