@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #fdfaf7;
  --cream-2: #f7f0e9;
  --sand: #ede0d4;
  --terracotta: #c17a5c;
  --terracotta-dark: #a5603f;
  --terracotta-light: #f5dccd;
  --charcoal: #241f1c;
  --stone: #6b6259;
  --stone-2: #a39990;
  --line: rgba(36, 31, 28, 0.08);
  --white: #ffffff;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-sm: 0 2px 8px rgba(36, 31, 28, 0.04);
  --shadow: 0 8px 32px rgba(36, 31, 28, 0.06);
  --shadow-lg: 0 24px 64px rgba(36, 31, 28, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease), opacity 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; color: var(--charcoal); }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 24px; }

.img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: inherit; }

.announce { background: var(--charcoal); color: var(--cream); text-align: center; padding: 10px 24px; font-size: 13px; letter-spacing: 0.02em; }
.announce a { color: var(--terracotta-light); text-decoration: underline; text-underline-offset: 3px; margin-left: 6px; }

.site-header { position: sticky; top: 0; z-index: 500; background: rgba(253, 250, 247, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--charcoal); display: inline-flex; align-items: baseline; gap: 6px; }
.brand em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.main-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.main-nav a { display: inline-block; padding: 10px 16px; font-size: 14.5px; font-weight: 500; color: var(--stone); border-radius: 999px; transition: all 0.25s var(--ease); }
.main-nav a:hover, .main-nav a.active { color: var(--charcoal); background: var(--cream-2); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--charcoal); background: transparent; transition: all 0.25s var(--ease); }
.icon-btn:hover { background: var(--cream-2); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge { position: absolute; top: 2px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--terracotta); color: #fff; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; transition: transform 0.25s var(--ease); }
.cart-badge.is-empty { transform: scale(0); }
.menu-toggle { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; letter-spacing: -0.01em; background: var(--charcoal); color: var(--cream); border: 1px solid var(--charcoal); transition: all 0.3s var(--ease); cursor: pointer; text-align: center; white-space: nowrap; }
.btn:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(193, 122, 92, 0.28); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid rgba(36, 31, 28, 0.18); }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); box-shadow: 0 12px 28px rgba(36, 31, 28, 0.18); }
.btn-terracotta { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.btn-terracotta:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 20px; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--terracotta); display: inline-block; }

.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-head { margin-bottom: 56px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 500; max-width: 720px; }
.section-head p { color: var(--stone); font-size: 17px; max-width: 500px; margin-top: 16px; }

.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(193, 122, 92, 0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -300px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(237, 224, 212, 0.7) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(44px, 6vw, 84px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 28px; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.hero p.lead { font-size: 19px; color: var(--stone); max-width: 520px; margin-bottom: 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 48px; padding-top: 32px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--charcoal); letter-spacing: -0.02em; }
.hero-stat .lbl { font-size: 13px; color: var(--stone); letter-spacing: 0.04em; }

.hero-visual { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cream-2); }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36, 31, 28, 0) 40%, rgba(36, 31, 28, 0.45) 100%); z-index: 1; }
.hero-visual-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; z-index: 2; }
.hero-visual-tag { align-self: flex-start; padding: 8px 16px; border-radius: 999px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; }
.hero-visual-caption { font-family: var(--font-display); font-style: italic; font-size: 26px; color: #fff; line-height: 1.2; max-width: 320px; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35); }
.hero-visual-caption small { display: block; font-family: var(--font-body); font-style: normal; font-size: 13px; color: rgba(255, 255, 255, 0.85); margin-top: 10px; letter-spacing: 0.03em; }

.trust-bar { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.trust-inner > span { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-2); font-weight: 500; }
.trust-logos { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trust-logos div { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--stone); opacity: 0.7; letter-spacing: -0.02em; }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: var(--cream-2); transition: all 0.4s var(--ease); cursor: pointer; color: #fff; }
.category-card img, .category-card .img-cover { border-radius: var(--radius-lg); max-width: 250px; max-height: 240px;}
.category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36, 31, 28, 0.15) 0%, rgba(36, 31, 28, 0.8) 100%); z-index: 1; transition: opacity 0.4s var(--ease); border-radius: var(--radius-lg); }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card:hover::after { opacity: 0.9; }
.category-card > * { position: relative; z-index: 2; }
.category-card .cat-icon { position: absolute; top: 28px; right: 28px; width: 56px; height: 56px; border-radius: 999px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; font-size: 26px; z-index: 2; }
.category-card h3 { font-size: 22px; margin-bottom: 4px; color: #fff; }
.category-card p { font-size: 13px; color: rgba(255, 255, 255, 0.75); margin-bottom: 12px; }
.category-card .cat-link { font-size: 13px; font-weight: 500; color: #fff; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 6px; }
.category-card .cat-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.category-card:hover .cat-link svg { transform: translateX(4px); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: all 0.4s var(--ease); position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-media { aspect-ratio: 4 / 3; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--cream-2); }
.product-media img { transition: transform 0.7s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badge { position: absolute; top: 16px; left: 16px; padding: 5px 12px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); z-index: 3; }
.product-fav { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 999px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); color: var(--charcoal); z-index: 3; }
.product-fav:hover { background: #fff; transform: scale(1.05); }
.product-fav svg { width: 16px; height: 16px; }
.product-body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--stone); margin-bottom: 10px; }
.product-rating .star { color: #e5a24a; }
.product-body h3 { font-size: 17px; margin-bottom: 4px; line-height: 1.3; font-weight: 500; }
.product-body .variant { font-size: 12.5px; color: var(--stone-2); margin-bottom: 14px; }
.product-body .short { font-size: 13.5px; color: var(--stone); line-height: 1.55; margin-bottom: 18px; flex-grow: 1; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.product-price { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; }
.product-price small { font-size: 13px; font-weight: 400; color: var(--stone-2); text-decoration: line-through; margin-left: 8px; font-family: var(--font-body); }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; padding: 11px 16px; font-size: 13.5px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-visual { position: relative; aspect-ratio: 5 / 6; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(160deg, #f7ede4 0%, #e8d2c0 100%); }
.split-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 60%); z-index: 1; }
.split-visual::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(193, 122, 92, 0.25) 0%, transparent 70%); z-index: 1; }
.split-visual-grid { position: absolute; inset: 40px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; z-index: 2; }
.split-visual-grid > div { border-radius: var(--radius); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); padding: 20px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255, 255, 255, 0.7); }
.split-visual-grid > div .n { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--terracotta); letter-spacing: -0.02em; }
.split-visual-grid > div .t { font-size: 12px; color: var(--stone); letter-spacing: 0.02em; line-height: 1.4; }
.split h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
.split p { color: var(--stone); font-size: 17px; margin-bottom: 20px; }
.split ul.feature-list { list-style: none; margin: 28px 0 36px; }
.split ul.feature-list li { padding: 12px 0; padding-left: 32px; position: relative; color: var(--charcoal); font-size: 15.5px; border-bottom: 1px solid var(--line); }
.split ul.feature-list li:last-child { border-bottom: none; }
.split ul.feature-list li::before { content: ''; position: absolute; left: 0; top: 20px; width: 18px; height: 18px; border-radius: 999px; background: var(--terracotta-light); }
.split ul.feature-list li::after { content: ''; position: absolute; left: 6px; top: 26px; width: 6px; height: 6px; border-radius: 999px; background: var(--terracotta); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-card { padding: 40px 32px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); transition: all 0.4s var(--ease); }
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-card .step-num { font-family: var(--font-display); font-size: 64px; font-weight: 500; color: var(--terracotta-light); line-height: 1; letter-spacing: -0.04em; margin-bottom: 20px; display: block; }
.process-card h3 { font-size: 22px; margin-bottom: 10px; }
.process-card p { color: var(--stone); font-size: 15px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { padding: 36px 32px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: all 0.4s var(--ease); }
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial .stars { color: #e5a24a; font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
.testimonial blockquote { font-family: var(--font-display); font-size: 19px; line-height: 1.5; color: var(--charcoal); margin-bottom: 24px; flex-grow: 1; letter-spacing: -0.01em; }
.testimonial .author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.avatar-letter { width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 18px; flex-shrink: 0; letter-spacing: 0; }
.testimonial .author .name { font-weight: 600; font-size: 14.5px; color: var(--charcoal); }
.testimonial .author .loc { font-size: 12.5px; color: var(--stone-2); }
.testimonial .service-tag { display: inline-block; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta); background: var(--terracotta-light); padding: 4px 10px; border-radius: 999px; margin-bottom: 16px; align-self: flex-start; }
.testimonial .date { font-size: 12px; color: var(--stone-2); margin-top: 4px; }

.reviews-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 72px; }
.reviews-summary { padding: 40px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); text-align: center; }
.reviews-summary .big-num { font-family: var(--font-display); font-size: 72px; font-weight: 600; color: var(--charcoal); line-height: 1; letter-spacing: -0.04em; }
.reviews-summary .stars { color: #e5a24a; font-size: 20px; letter-spacing: 4px; margin: 12px 0; }
.reviews-summary p { color: var(--stone); font-size: 14.5px; }

.review-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; margin-top: 32px; }
.review-form h3 { font-size: 26px; margin-bottom: 8px; }
.review-form > p { color: var(--stone); font-size: 15px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 8px; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream); font-size: 15px; color: var(--charcoal); transition: all 0.25s var(--ease); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--terracotta); background: var(--white); box-shadow: 0 0 0 4px rgba(193, 122, 92, 0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }

.rating-input { display: flex; gap: 6px; }
.rating-input button { width: 40px; height: 40px; border-radius: 999px; background: var(--cream-2); color: var(--stone-2); font-size: 20px; display: flex; align-items: center; justify-content: center; transition: all 0.2s var(--ease); }
.rating-input button.active, .rating-input button:hover { background: #fdf2dd; color: #e5a24a; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--charcoal); text-align: left; transition: color 0.25s var(--ease); letter-spacing: -0.01em; }
.faq-question:hover { color: var(--terracotta); }
.faq-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.faq-item.open .faq-icon { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); color: var(--stone); font-size: 16px; line-height: 1.7; padding-right: 60px; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 28px; }

.newsletter { background: linear-gradient(160deg, #2a2522 0%, #3d3530 100%); border-radius: var(--radius-xl); padding: 80px 64px; position: relative; overflow: hidden; color: var(--cream); }
.newsletter::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(193, 122, 92, 0.35) 0%, transparent 70%); }
.newsletter-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter h2 { color: var(--cream); font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
.newsletter p { color: rgba(253, 250, 247, 0.7); font-size: 16px; max-width: 420px; }
.newsletter-form { display: flex; gap: 8px; background: rgba(255, 255, 255, 0.08); padding: 8px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.12); }
.newsletter-form input { flex: 1; background: transparent; border: none; color: var(--cream); padding: 12px 20px; font-size: 15px; outline: none; }
.newsletter-form input::placeholder { color: rgba(253, 250, 247, 0.5); }
.newsletter-form button { padding: 12px 24px; background: var(--terracotta); color: #fff; border-radius: 999px; font-weight: 500; font-size: 14.5px; transition: all 0.25s var(--ease); }
.newsletter-form button:hover { background: var(--terracotta-dark); }

.site-footer { background: var(--cream-2); border-top: 1px solid var(--line); padding: 72px 0 32px; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 16px; font-weight: 600; }
.footer-brand p { color: var(--stone); font-size: 14.5px; max-width: 320px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal); font-weight: 600; margin-bottom: 20px; font-family: var(--font-body); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; color: var(--stone); }
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 13.5px; color: var(--stone); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom a { color: var(--stone); }
.footer-bottom a:hover { color: var(--terracotta); }

.cart-drawer { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.cart-drawer-backdrop { position: absolute; inset: 0; background: rgba(36, 31, 28, 0.5); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.4s var(--ease); }
.cart-drawer.open .cart-drawer-backdrop { opacity: 1; }
.cart-drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 100%; max-width: 460px; background: var(--cream); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: var(--shadow-lg); }
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h3 { font-size: 20px; font-weight: 500; }
.cart-drawer-head .count { color: var(--stone-2); font-family: var(--font-body); font-size: 14px; font-weight: 400; margin-left: 6px; }
.cart-drawer-close { width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); }
.cart-drawer-close:hover { background: var(--cream-2); }
.cart-drawer-close svg { width: 20px; height: 20px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty .empty-icon { width: 72px; height: 72px; border-radius: 999px; background: var(--cream-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 32px; }
.cart-empty h4 { font-size: 20px; margin-bottom: 8px; }
.cart-empty p { color: var(--stone); font-size: 14.5px; margin-bottom: 24px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--cream-2); }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h5 { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; margin-bottom: 4px; line-height: 1.35; }
.cart-item-info .variant { font-size: 12px; color: var(--stone-2); margin-bottom: 12px; }
.qty-control { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.qty-control button { width: 26px; height: 26px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--charcoal); transition: all 0.2s var(--ease); }
.qty-control button:hover { background: var(--cream-2); }
.qty-control span { font-size: 13.5px; font-weight: 500; min-width: 18px; text-align: center; }
.cart-item-right { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.cart-item-price { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--charcoal); }
.cart-item-remove { font-size: 12px; color: var(--stone-2); text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s var(--ease); }
.cart-item-remove:hover { color: var(--terracotta); }
.cart-drawer-foot { padding: 24px 28px; border-top: 1px solid var(--line); background: var(--white); }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 14px; color: var(--stone); }
.cart-summary-total { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; }
.cart-drawer-foot .btn { margin-top: 8px; }

.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--charcoal); color: var(--cream); padding: 14px 24px 14px 20px; border-radius: 999px; display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 500; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25); z-index: 2000; opacity: 0; transition: all 0.4s var(--ease); pointer-events: none; max-width: calc(100% - 40px); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: #b04b3a; }
.toast .toast-icon { width: 24px; height: 24px; border-radius: 999px; background: rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast svg { width: 12px; height: 12px; }

.cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 640px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow-lg); z-index: 1500; display: flex; gap: 20px; align-items: center; transform: translateY(200%); transition: transform 0.5s var(--ease); }
.cookie-banner.show { transform: translateY(0); }
.cookie-icon { width: 48px; height: 48px; border-radius: 999px; background: var(--terracotta-light); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cookie-body { flex: 1; }
.cookie-body h5 { font-family: var(--font-body); font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--charcoal); }
.cookie-body p { font-size: 13.5px; color: var(--stone); line-height: 1.5; }
.cookie-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions .btn { padding: 10px 18px; font-size: 13.5px; }

.skeleton { background: linear-gradient(90deg, var(--cream-2) 0%, var(--sand) 50%, var(--cream-2) 100%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius-lg); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { height: 420px; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.page-hero { padding: 80px 0 48px; text-align: center; }
.page-hero h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.page-hero p { color: var(--stone); font-size: 18px; max-width: 620px; margin: 0 auto; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 3 / 2; max-width: 600px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reviews-header { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 40px; }
  .hero-stats { gap: 28px; }
  .newsletter { padding: 48px 28px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-form button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .review-form { padding: 28px; }
}

@media (max-width: 560px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .split-visual-grid > div { padding: 14px; }
  .split-visual-grid > div .n { font-size: 24px; }
  .cart-drawer-panel { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.main-nav.mobile-open { display: flex; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--cream); flex-direction: column; padding: 40px 24px; gap: 8px; z-index: 400; overflow-y: auto; }
.main-nav.mobile-open a { font-size: 22px; font-family: var(--font-display); padding: 16px 20px; }

.cart-empty-lg { padding: 100px 20px; }

.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}

.cart-page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-clear {
  font-size: 13.5px;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}
.cart-clear:hover { color: var(--terracotta); }

.cart-page-list { display: flex; flex-direction: column; }

.cart-item-lg {
  grid-template-columns: 110px 1fr auto;
  padding: 28px 0;
  align-items: center;
}

.cart-item-lg .cart-item-thumb {
  width: 110px;
  height: 110px;
}

.cart-item-lg .cart-item-info h5 {
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 6px;
}

.cart-item-lg .unit-price {
  font-size: 13.5px;
  color: var(--stone);
  margin-bottom: 12px;
}

.cart-item-lg .cart-item-price {
  font-size: 22px;
}

.cart-page-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cart-page-summary h3 {
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.promo-block { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.promo-row { display: flex; gap: 8px; }
.promo-row input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 14px;
  outline: none;
  transition: all 0.25s var(--ease);
}
.promo-row input:focus { border-color: var(--terracotta); background: var(--white); }
.promo-row .btn { padding: 11px 20px; }

.promo-applied {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-remove {
  font-size: 12px;
  color: var(--terracotta-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
}
.promo-hint { margin-top: 12px; font-size: 12.5px; color: var(--stone-2); }
.promo-hint strong { color: var(--terracotta); font-weight: 600; }

.cart-summary-row.total {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-summary-item:last-of-type { border-bottom: none; }

.checkout-summary-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.checkout-summary-thumb img { width: 100%; height: 100%; object-fit: cover; }

.checkout-summary-info { min-width: 0; }
.checkout-summary-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 2px;
}
.checkout-summary-meta { font-size: 12.5px; color: var(--stone-2); }

.checkout-summary-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
}

.checkout-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.checkout-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-section h3 .num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-summary-box {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.checkout-summary-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.thank-you-hero {
  text-align: center;
  padding: 40px 20px 60px;
  max-width: 720px;
  margin: 0 auto;
}

.thank-icon {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
  color: #fff;
  font-size: 44px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 20px 48px rgba(193, 122, 92, 0.28);
}

.thank-you-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: var(--stone);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  background: var(--cream-2);
  border-radius: var(--radius);
  margin-top: 32px;
}

.order-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-meta span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-2);
}

.order-meta strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 40px 0;
}

.thank-you-items,
.thank-you-next {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.thank-you-items h3,
.thank-you-next h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.next-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.next-steps .step-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.next-steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.next-steps p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
}

.thank-you-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cart-page-grid { grid-template-columns: 1fr; }
  .cart-page-summary { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary-box { position: static; }
  .thank-you-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cart-item-lg { grid-template-columns: 80px 1fr; gap: 12px; }
  .cart-item-lg .cart-item-thumb { width: 80px; height: 80px; }
  .cart-item-lg .cart-item-right { grid-column: 2; align-items: flex-start; flex-direction: row; justify-content: space-between; width: 100%; margin-top: 8px; }
  .order-meta { grid-template-columns: 1fr; }
  .checkout-section { padding: 24px; }
  .checkout-summary-box { padding: 24px; }
  .cart-page-summary { padding: 24px; }
}
.ck-steps-bar {
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  padding: 22px 0;
}

.ck-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.ck-steps a,
.ck-step {
  color: var(--stone-2);
  transition: color 0.25s var(--ease);
  font-family: var(--font-body);
}

.ck-steps a:hover { color: var(--terracotta); }

.ck-step.current {
  color: var(--charcoal);
  font-weight: 600;
}

.ck-step.muted { opacity: 0.6; }

.ck-step-divider {
  color: var(--stone-2);
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
}
.ck-step-divider svg { width: 12px; height: 12px; }

.ck-shell {
  padding-top: 40px;
  padding-bottom: 80px;
}

.ck-coupon-toggle {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-size: 14.5px;
  color: var(--stone);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ck-coupon-link {
  color: var(--terracotta);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  font-size: inherit;
}
.ck-coupon-link:hover { color: var(--terracotta-dark); }

.ck-coupon-form {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 24px;
}

.ck-coupon-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ck-coupon-row input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 14.5px;
  outline: none;
  transition: all 0.25s var(--ease);
  text-transform: uppercase;
}
.ck-coupon-row input:focus { border-color: var(--terracotta); background: var(--white); }
.ck-coupon-row .btn { padding: 13px 26px; font-size: 14.5px; }

.ck-coupon-hint {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--stone-2);
}
.ck-coupon-hint strong { color: var(--terracotta); font-weight: 600; }

.ck-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: flex-start;
}

.ck-main { min-width: 0; }

.ck-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 24px;
}

.ck-section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.ck-field {
  margin-bottom: 20px;
}

.ck-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.ck-req { color: var(--terracotta); margin-left: 2px; }
.ck-opt { color: var(--stone-2); font-weight: 400; margin-left: 2px; }

.ck-field input,
.ck-field select,
.ck-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: all 0.25s var(--ease);
  font-family: inherit;
}

.ck-field input:focus,
.ck-field select:focus,
.ck-field textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(193, 122, 92, 0.08);
}

.ck-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.ck-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6259' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.ck-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ck-aside { min-width: 0; }

.ck-aside-inner {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.ck-aside-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.ck-order-table {
  margin-bottom: 24px;
}

.ck-order-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-2);
  font-weight: 600;
}

.ck-order-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.ck-order-row:last-of-type { border-bottom: none; }

.ck-order-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 2px;
}

.ck-order-meta {
  font-size: 12.5px;
  color: var(--stone-2);
}

.ck-order-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.ck-order-subtotal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  font-size: 14px;
  color: var(--stone);
}

.ck-order-subtotal span:last-child {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
}

.ck-order-discount span:last-child { color: var(--terracotta); }

.ck-order-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px 0 0;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.ck-order-total span:last-child {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.ck-promo-applied-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}

.ck-promo-applied-row button {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--terracotta-dark);
  font-weight: 500;
}

.ck-payment {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.ck-payment-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-2);
  font-weight: 600;
  margin-bottom: 16px;
}

.ck-pay-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  margin-bottom: 10px;
  background: var(--cream);
  user-select: none;
}

.ck-pay-option:hover { border-color: rgba(193, 122, 92, 0.35); }

.ck-pay-option input { display: none; }

.ck-pay-radio {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--stone-2);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
  opacity: 0.7;
}

.ck-pay-option.is-active {
  border-color: var(--terracotta);
  background: rgba(193, 122, 92, 0.05);
  box-shadow: 0 0 0 3px rgba(193, 122, 92, 0.08);
}

.ck-pay-option.is-active .ck-pay-radio {
  border-color: var(--terracotta);
  opacity: 1;
}

.ck-pay-option.is-active .ck-pay-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--terracotta);
}

.ck-pay-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.ck-pay-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ck-pay-logo svg {
  width: 22px;
  height: 22px;
}

.ck-pay-paypal {
  background: #f5f0ff;
  color: #003087;
}

.ck-pay-stripe {
  background: #eef1ff;
  color: #635bff;
}

.ck-pay-text { min-width: 0; }

.ck-pay-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.ck-pay-text small {
  display: block;
  font-size: 12.5px;
  color: var(--stone-2);
  line-height: 1.4;
  margin-top: 2px;
}

.ck-pay-panel {
  font-size: 13px;
  color: var(--stone);
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.ck-place-order {
  padding: 18px 32px;
  font-size: 15.5px;
  margin-bottom: 8px;
}

.ck-back-cart {
  padding: 14px 32px;
  font-size: 14.5px;
  margin-bottom: 20px;
}

.ck-privacy {
  font-size: 12.5px;
  color: var(--stone-2);
  line-height: 1.6;
  text-align: center;
}

.ck-privacy a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .ck-layout { grid-template-columns: 1fr; gap: 32px; }
  .ck-aside-inner { position: static; }
}

@media (max-width: 768px) {
  .ck-section { padding: 28px 22px; }
  .ck-aside-inner { padding: 26px 22px; }
  .ck-field-row { grid-template-columns: 1fr; gap: 0; }
  .ck-steps { font-size: 11.5px; gap: 8px; }
}

@media (max-width: 480px) {
  .ck-coupon-row { flex-direction: column; }
  .ck-coupon-row .btn { width: 100%; }
  .ck-pay-brand { gap: 10px; }
  .ck-pay-logo { width: 34px; height: 34px; }
  .ck-pay-text small { font-size: 11.5px; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  border: 3px solid var(--white);
  box-shadow: 0 8px 24px rgba(36, 31, 28, 0.1);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.65;
}

.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.portfolio-card.hidden { display: none; }

.portfolio-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.06);
}

.portfolio-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  z-index: 2;
}

.portfolio-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.portfolio-body p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--stone-2);
  letter-spacing: 0.02em;
}

.portfolio-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--stone);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-intro {
  color: var(--stone);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  transition: all 0.3s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--terracotta-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-card p {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.55;
}

.contact-card a {
  color: var(--terracotta);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--terracotta-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-note {
  margin-top: 8px;
  font-size: 12.5px !important;
  color: var(--stone-2) !important;
  line-height: 1.5;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
}

.faq-category .faq-list {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .faq-category-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .team-avatar { width: 80px; height: 80px; }
}
.legal-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
}

.legal-content h2 {
  font-size: 26px;
  font-weight: 500;
  margin: 48px 0 16px;
  padding-top: 8px;
  color: var(--charcoal);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--stone);
  margin-bottom: 16px;
  line-height: 1.75;
}

.legal-content p strong { color: var(--charcoal); font-weight: 600; }

.legal-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.legal-content a:hover { color: var(--terracotta-dark); }

.legal-list {
  list-style: none;
  margin: 16px 0 24px;
}

.legal-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--stone);
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
}

.legal-list li:last-child { border-bottom: none; }

.legal-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--terracotta);
}

.legal-list li strong { color: var(--charcoal); font-weight: 600; }

.legal-contact {
  list-style: none;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 20px 0 32px;
}

.legal-contact li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--stone);
}

.legal-contact li strong {
  color: var(--charcoal);
  font-weight: 600;
  display: inline-block;
  min-width: 90px;
}

.legal-toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.legal-toc h3 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-2);
  font-weight: 600;
  margin-bottom: 16px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.legal-toc li {
  counter-increment: toc;
  padding: 8px 0;
}

.legal-toc li::before {
  content: counter(toc) '. ';
  color: var(--terracotta);
  font-weight: 600;
  margin-right: 6px;
}

.legal-toc a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

.legal-toc a:hover { color: var(--terracotta); }

.legal-footer-note {
  margin-top: 56px;
  padding: 28px 32px;
  background: var(--terracotta-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--terracotta);
}

.legal-footer-note p {
  color: var(--terracotta-dark);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.cookie-table {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.cookie-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.cookie-row:last-child { border-bottom: none; }

.cookie-row-head {
  background: var(--cream-2);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-2);
  font-weight: 600;
  padding: 16px 24px;
}

.cookie-row strong {
  font-size: 14.5px;
  color: var(--charcoal);
  font-weight: 600;
  font-family: var(--font-body);
  word-break: break-word;
}

.cookie-row > div {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

.cookie-type {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .legal-content h2 { font-size: 22px; margin: 36px 0 12px; }
  .legal-toc { padding: 22px 24px; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .cookie-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
  .cookie-row-head { display: none; }
  .cookie-row > div:first-child { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .cookie-row > div:not(:last-child) { margin-bottom: 4px; }
  .cookie-row > div:last-child { font-size: 12.5px; color: var(--stone-2); }
  .legal-contact li strong { min-width: auto; display: block; margin-bottom: 4px; }
}

@media (max-width: 480px) {
  .legal-footer-note { padding: 20px 22px; }
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.payment-modal.open { pointer-events: auto; }

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 31, 28, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.payment-modal.open .payment-modal-backdrop { opacity: 1; }

.payment-modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.payment-modal.open .payment-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.payment-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.payment-modal-head h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-display);
  margin: 0;
}

.payment-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  color: var(--charcoal);
}

.payment-modal-close:hover { background: var(--cream-2); }
.payment-modal-close svg { width: 18px; height: 18px; }

.payment-modal-body {
  padding: 24px 28px;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.65;
}

.payment-modal-body p { margin-bottom: 16px; }
.payment-modal-body p:last-child { margin-bottom: 0; }
.payment-modal-body strong { color: var(--charcoal); font-weight: 600; }

.payment-modal-list {
  list-style: none;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
}

.payment-modal-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--charcoal);
}

.payment-modal-list li:last-child { border-bottom: none; }

.payment-modal-list strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.payment-modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px 28px;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}

.payment-modal-foot .btn {
  padding: 12px 22px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .payment-modal-head,
  .payment-modal-body,
  .payment-modal-foot { padding-left: 20px; padding-right: 20px; }
  .payment-modal-foot { flex-direction: column-reverse; }
  .payment-modal-foot .btn { width: 100%; }
}