/*
Version:     1.0.0
*/
/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c8a84b;
  --gold-light: #e8c96a;
  --dark:       #0f0f0f;
  --dark2:      #1a1a1a;
  --dark3:      #222;
  --text:       #f0ece0;
  --muted:      #888;
  --radius:     12px;
}

html  { scroll-behavior: smooth; }
body  { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--dark); color: var(--text); line-height: 1.6; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,168,75,.15);
}
.site-logo { font-size: 1.5rem; font-weight: 900; color: var(--gold); text-decoration: none; }
.site-logo span { color: var(--text); }

.site-nav a {
  color: var(--text); text-decoration: none; margin-left: 32px;
  font-size: .95rem; opacity: .8; transition: opacity .2s, color .2s;
}
.site-nav a:hover { opacity: 1; color: var(--gold); }

.header-cart {
  display: flex; align-items: center; gap: 16px; margin-left: 32px;
}
.cart-link {
  position: relative; color: var(--text); text-decoration: none;
  font-size: 1.25rem; transition: color .2s;
}
.cart-link:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: #000;
  font-size: .6rem; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.header-cta {
  background: var(--gold); color: #000; font-weight: 700;
  padding: 10px 24px; border-radius: 8px; text-decoration: none;
  transition: background .2s;
}
.header-cta:hover { background: var(--gold-light); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 100px 20px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,168,75,.12) 0%, transparent 70%),
    linear-gradient(180deg, #0f0f0f 0%, #1a1209 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c8a84b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 760px; }
.hero-badge {
  display: inline-block;
  background: rgba(200,168,75,.15); border: 1px solid rgba(200,168,75,.35);
  color: var(--gold); font-size: .8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 28px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.hero-lead { font-size: 1.15rem; color: rgba(240,236,224,.7); max-width: 520px; margin: 0 auto 40px; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: #000; font-weight: 800; font-size: 1rem;
  padding: 16px 36px; border-radius: var(--radius); text-decoration: none;
  display: inline-block; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text); font-weight: 600; font-size: 1rem;
  padding: 16px 36px; border-radius: var(--radius); text-decoration: none;
  border: 1px solid rgba(240,236,224,.25); transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 60px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-value { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 100px 20px; }
.section-label { text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 16px; }
.section-sub   { text-align: center; color: rgba(240,236,224,.6); max-width: 480px; margin: 0 auto 64px; font-size: 1rem; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.step { background: var(--dark2); border: 1px solid rgba(200,168,75,.12); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: border-color .2s, transform .2s; }
.step:hover { border-color: rgba(200,168,75,.4); transform: translateY(-4px); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,168,75,.15); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 900; color: var(--gold); margin: 0 auto 20px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p  { font-size: .9rem; color: rgba(240,236,224,.6); }

/* ── CATALOG ────────────────────────────────────────────────── */
.catalog-bg { background: var(--dark2); }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.cat-card { background: var(--dark3); border: 1px solid rgba(200,168,75,.1); border-radius: var(--radius); padding: 32px 20px; text-align: center; text-decoration: none; color: var(--text); transition: border-color .2s, transform .2s; display: block; }
.cat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.cat-icon { font-size: 3rem; margin-bottom: 14px; }
.cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.cat-card p  { font-size: .82rem; color: var(--muted); }
.cat-card .cat-count { font-size: .75rem; color: var(--gold); margin-top: 6px; font-weight: 600; }

/* ── ADVANTAGES ─────────────────────────────────────────────── */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.adv-card { display: flex; gap: 18px; align-items: flex-start; }
.adv-icon { flex-shrink: 0; width: 48px; height: 48px; background: rgba(200,168,75,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.adv-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.adv-card p  { font-size: .88rem; color: rgba(240,236,224,.6); }

/* ── ZONES ──────────────────────────────────────────────────── */
.zones-bg { background: var(--dark2); }
.zone-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 1000px; margin: 0 auto; }
.zone-card { background: var(--dark3); border: 1px solid rgba(200,168,75,.1); border-radius: var(--radius); padding: 24px 20px; display: flex; align-items: center; gap: 14px; }
.zone-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.zone-card strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.zone-card span   { font-size: .8rem; color: var(--muted); }

/* ── ORDER FORM ─────────────────────────────────────────────── */
.form-wrap { max-width: 580px; margin: 0 auto; background: var(--dark2); border: 1px solid rgba(200,168,75,.2); border-radius: 16px; padding: 48px 40px; }
.form-wrap h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.form-wrap > p { color: rgba(240,236,224,.6); font-size: .9rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label { font-size: .82rem; color: rgba(240,236,224,.6); margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea { background: var(--dark3); border: 1px solid rgba(200,168,75,.2); border-radius: 8px; color: var(--text); padding: 12px 16px; font-size: .95rem; transition: border-color .2s; outline: none; font-family: inherit; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; background: var(--gold); color: #000; font-weight: 800; font-size: 1rem; padding: 16px; border-radius: 10px; border: none; cursor: pointer; transition: background .2s, transform .15s; margin-top: 8px; font-family: inherit; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 16px; }

/* ── WOO PAGE WRAP (cart / checkout / account) ──────────────── */
.woo-page-wrap { max-width: 900px; margin: 0 auto; padding: 120px 20px 80px; }
.woo-page-wrap h1 { font-size: 2rem; font-weight: 900; margin-bottom: 32px; }

/* ── WooCommerce global resets (WC styles disabled via PHP) ─── */
.woocommerce, .woocommerce-page { color: var(--text); }
.woocommerce a, .woocommerce-page a { color: var(--gold); }
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info { padding: 12px 20px; border-radius: 8px; margin-bottom: 20px; font-size: .88rem; list-style: none; }
.woocommerce .woocommerce-error   { background: rgba(224,85,85,.1); border-left: 3px solid #e05555; color: #e08888; }
.woocommerce .woocommerce-message { background: rgba(76,175,114,.1); border-left: 3px solid #4caf72; color: #8de6ac; }
.woocommerce .woocommerce-info    { background: rgba(200,168,75,.1); border-left: 3px solid var(--gold); color: var(--gold); }

/* Cart / Checkout tables */
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; background: var(--dark2); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,168,75,.12); }
.woocommerce table.shop_table th { background: var(--dark3); padding: 12px 16px; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); text-align: left; border-bottom: 1px solid rgba(200,168,75,.1); }
.woocommerce table.shop_table td { padding: 14px 16px; border-bottom: 1px solid rgba(200,168,75,.06); font-size: .9rem; vertical-align: middle; }
.woocommerce table.shop_table .amount { color: var(--gold); font-weight: 700; }
.woocommerce .button, .woocommerce button.button { background: var(--gold); color: #000; font-weight: 700; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; font-family: inherit; transition: background .2s; text-decoration: none; display: inline-block; }
.woocommerce .button:hover, .woocommerce button.button:hover { background: var(--gold-light); }
.woocommerce input[type="text"], .woocommerce input[type="email"],
.woocommerce input[type="tel"],  .woocommerce input[type="number"],
.woocommerce textarea, .woocommerce select { background: var(--dark2); border: 1px solid rgba(200,168,75,.2); border-radius: 8px; color: var(--text); padding: 10px 14px; font-size: .9rem; outline: none; width: 100%; font-family: inherit; transition: border-color .2s; }
.woocommerce input:focus, .woocommerce textarea:focus, .woocommerce select:focus { border-color: var(--gold); }
.woocommerce label { font-size: .82rem; color: rgba(240,236,224,.7); margin-bottom: 4px; display: block; }
.woocommerce #payment .place-order .button { background: var(--gold); color: #000; font-weight: 800; font-size: 1rem; padding: 16px 36px; width: 100%; border-radius: var(--radius); }

/* ── SINGLE PRODUCT (our custom template) ───────────────────── */
.single-product-page { max-width: 1100px; margin: 0 auto; padding: 100px 32px 80px; }

.sp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }

.sp-gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--dark2); border: 1px solid var(--border); aspect-ratio: 1; }
.sp-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s; }
.sp-gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 8rem; background: linear-gradient(135deg, var(--dark2) 0%, #1e1a10 100%); }
.sp-badge { position: absolute; top: 14px; left: 14px; font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.sp-badge.sale { background: rgba(200,168,75,.25); color: var(--gold); border: 1px solid rgba(200,168,75,.4); }
.sp-badge.out  { background: rgba(224,85,85,.2);   color: #e08888;     border: 1px solid rgba(224,85,85,.3); }

.sp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.sp-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: border-color .15s; background: var(--dark2); }
.sp-thumb.active, .sp-thumb:hover { border-color: var(--gold); }

.sp-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sp-cat-chip { display: inline-block; background: rgba(200,168,75,.1); border: 1px solid rgba(200,168,75,.25); color: var(--gold); font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; text-decoration: none; transition: background .15s; }
.sp-cat-chip:hover { background: rgba(200,168,75,.2); }

.sp-title  { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 8px; }
.sp-brand  { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.sp-price  { margin-bottom: 16px; }
.sp-price .woocommerce-Price-amount  { font-size: 2.2rem; font-weight: 900; color: var(--gold); }
.sp-price del .woocommerce-Price-amount { font-size: 1.2rem; color: var(--muted); font-weight: 400; margin-right: 8px; }
.sp-short-desc { color: rgba(240,236,224,.7); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }

.sp-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.sp-meta-item { display: flex; align-items: center; gap: 10px; background: var(--dark2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.sp-meta-icon  { font-size: 1.3rem; flex-shrink: 0; }
.sp-meta-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.sp-meta-value { font-size: .9rem; font-weight: 700; }
.sp-meta-value.in-stock { color: #4caf72; }
.sp-meta-value.no-stock { color: #e05555; }

/* WC add-to-cart form on single product */
.woocommerce form.cart { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.woocommerce form.cart .quantity { display: flex; align-items: center; }
.woocommerce form.cart .qty { background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; color: var(--text); padding: 13px 16px; font-size: 1rem; width: 80px; outline: none; font-family: inherit; text-align: center; }
.woocommerce .single_add_to_cart_button { background: var(--gold) !important; color: #000 !important; font-weight: 800 !important; font-size: 1rem !important; padding: 14px 32px !important; border-radius: var(--radius) !important; border: none !important; cursor: pointer !important; font-family: inherit !important; transition: background .2s, transform .15s !important; }
.woocommerce .single_add_to_cart_button:hover { background: var(--gold-light) !important; transform: translateY(-2px) !important; }

.sp-order-btn { display: inline-block; background: var(--gold); color: #000; font-weight: 800; padding: 14px 32px; border-radius: var(--radius); text-decoration: none; font-size: 1rem; transition: background .2s; margin-bottom: 20px; }
.sp-order-btn:hover { background: var(--gold-light); }

.sp-delivery-info { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.sp-delivery-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(240,236,224,.6); }

.sp-tabs { margin-bottom: 60px; }
.sp-tab-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.sp-tab-btn { background: none; border: none; color: var(--muted); font-size: .95rem; font-family: inherit; padding: 14px 24px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .15s, border-color .15s; }
.sp-tab-btn:hover { color: var(--text); }
.sp-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 700; }
.sp-tab-panel { display: none; }
.sp-tab-panel.active { display: block; }
.sp-desc-content { color: rgba(240,236,224,.75); line-height: 1.8; font-size: .95rem; max-width: 720px; }
.sp-attrs-table { width: 100%; border-collapse: collapse; max-width: 600px; }
.sp-attrs-table tr { border-bottom: 1px solid rgba(200,168,75,.08); }
.sp-attrs-table th { text-align: left; padding: 12px 16px; font-size: .82rem; color: var(--muted); font-weight: 600; width: 40%; background: var(--dark2); }
.sp-attrs-table td { padding: 12px 16px; font-size: .9rem; }

.sp-related { }
.sp-related-title { font-size: 1.4rem; font-weight: 900; margin-bottom: 24px; }

.back-to-shop { display: inline-block; margin-bottom: 32px; color: var(--muted); font-size: .85rem; text-decoration: none; transition: color .2s; }
.back-to-shop:hover { color: var(--gold); }

/* ── CART / CHECKOUT (WooCommerce default override) ─────────── */
.woo-page-wrap { max-width: 900px; margin: 0 auto; padding: 120px 20px 80px; }
.woo-page-wrap h1 { font-size: 2rem; font-weight: 900; margin-bottom: 32px; }
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; background: var(--dark2); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,168,75,.12); }
.woocommerce table.shop_table th { background: var(--dark3); padding: 12px 16px; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); text-align: left; border-bottom: 1px solid rgba(200,168,75,.1); }
.woocommerce table.shop_table td { padding: 14px 16px; border-bottom: 1px solid rgba(200,168,75,.06); font-size: .9rem; }
.woocommerce table.shop_table .amount { color: var(--gold); font-weight: 700; }
.woocommerce .checkout .woocommerce-input-wrapper input,
.woocommerce .checkout .woocommerce-input-wrapper textarea,
.woocommerce .checkout .woocommerce-input-wrapper select { background: var(--dark2); border: 1px solid rgba(200,168,75,.2); border-radius: 8px; color: var(--text); padding: 12px 16px; font-size: .9rem; outline: none; width: 100%; font-family: inherit; }
.woocommerce .checkout .woocommerce-input-wrapper input:focus { border-color: var(--gold); }
.woocommerce #payment .place-order .button { background: var(--gold); color: #000; font-weight: 800; font-size: 1rem; padding: 16px 36px; border-radius: var(--radius); border: none; cursor: pointer; font-family: inherit; }
.woocommerce #payment .place-order .button:hover { background: var(--gold-light); }
.woocommerce label { font-size: .82rem; color: rgba(240,236,224,.7); margin-bottom: 4px; display: block; }
.woocommerce .woocommerce-error, .woocommerce .woocommerce-message, .woocommerce .woocommerce-info { padding: 12px 20px; border-radius: 8px; margin-bottom: 20px; font-size: .88rem; }
.woocommerce .woocommerce-error   { background: rgba(224,85,85,.1); border-left: 3px solid #e05555; color: #e08888; }
.woocommerce .woocommerce-message { background: rgba(76,175,114,.1); border-left: 3px solid #4caf72; color: #8de6ac; }
.woocommerce .woocommerce-info    { background: rgba(200,168,75,.1); border-left: 3px solid var(--gold); color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: #080808; border-top: 1px solid rgba(200,168,75,.1); padding: 48px 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 12px; font-size: .85rem; color: var(--muted); max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: .85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col a  { display: block; color: rgba(240,236,224,.6); text-decoration: none; font-size: .88rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(200,168,75,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: var(--muted); }
.age-badge { background: rgba(200,168,75,.15); border: 1px solid rgba(200,168,75,.3); color: var(--gold); font-weight: 800; font-size: .85rem; padding: 4px 12px; border-radius: 6px; }

/* ── FLOAT BUTTON ───────────────────────────────────────────── */
.float-btn { position: fixed; bottom: 28px; right: 28px; background: var(--gold); color: #000; font-weight: 800; font-size: .95rem; padding: 14px 26px; border-radius: 100px; text-decoration: none; box-shadow: 0 8px 32px rgba(200,168,75,.4); z-index: 99; transition: background .2s, transform .2s; }
.float-btn:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── TOAST ──────────────────────────────────────────────────── */
#ae-toast { position: fixed; bottom: 90px; right: 28px; background: #1c2b1c; border: 1px solid #4a7c4a; color: #a8e6a8; padding: 14px 22px; border-radius: 10px; font-size: .9rem; font-weight: 600; opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; pointer-events: none; z-index: 200; }
#ae-toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .site-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── SEO TEXT BLOCK ─────────────────────────────────────────── */
.seo-section { background: var(--dark2); }
.seo-content {
  max-width: 860px;
  margin: 0 auto;
}
.seo-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin: 32px 0 12px;
}
.seo-content p {
  color: rgba(240,236,224,.72);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 12px;
}
.seo-content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,168,75,.3); }
.seo-content a:hover { border-color: var(--gold); }
.seo-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin: 12px 0 20px;
}
.seo-list li {
  color: rgba(240,236,224,.72);
  font-size: .9rem;
  line-height: 1.6;
  padding: 10px 14px;
  background: var(--dark3);
  border-radius: 8px;
  border-left: 3px solid rgba(200,168,75,.3);
}
.seo-list li strong { color: var(--text); }
.seo-disclaimer {
  font-size: .78rem !important;
  color: var(--muted) !important;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(200,168,75,.08);
}

/* ════════════════════════════════════════════════════════════
   CATALOG PAGE
   ════════════════════════════════════════════════════════════ */

.catalog-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: 100vh;
  padding-top: 72px; /* header height */
}

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.catalog-sidebar {
  background: var(--dark2);
  border-right: 1px solid var(--border);
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,168,75,.2) transparent;
}
.catalog-sidebar::-webkit-scrollbar { width: 4px; }
.catalog-sidebar::-webkit-scrollbar-thumb { background: rgba(200,168,75,.2); border-radius: 4px; }

.sidebar-inner { padding: 24px 20px; }

.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  font-size: 1rem; font-weight: 800;
}
.sidebar-close { display: none; background: none; border: none; color: var(--muted); font-size: 1.1rem; cursor: pointer; padding: 4px; }

/* Filter groups */
.filter-group { margin-bottom: 28px; }
.filter-group-title {
  font-size: .7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.filter-group-body { display: flex; flex-direction: column; gap: 4px; }

/* Category links (direct WC taxonomy links) */
.filter-radio-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  cursor: pointer; font-size: .88rem;
  transition: background .15s, color .15s;
  color: rgba(240,236,224,.75);
  text-decoration: none;
}
.filter-radio-link:hover { background: rgba(200,168,75,.1); color: var(--text); }
.filter-radio-link.active { background: rgba(200,168,75,.15); color: var(--gold); font-weight: 600; }

/* ABV / sort radio buttons (still in-form) */
.filter-radio {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  cursor: pointer; font-size: .88rem;
  transition: background .15s;
  color: rgba(240,236,224,.75);
}
.filter-radio input[type="radio"] { display: none; }
.filter-radio:hover, .filter-radio.checked { background: rgba(200,168,75,.1); color: var(--text); }
.filter-radio.checked { color: var(--gold); font-weight: 600; }
.radio-label { flex: 1; }
.radio-count { font-size: .75rem; color: var(--muted); }

.filter-check {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  cursor: pointer; font-size: .88rem;
  transition: background .15s;
  color: rgba(240,236,224,.75);
}
.filter-check input[type="checkbox"] { display: none; }
.filter-check:hover { background: rgba(200,168,75,.08); color: var(--text); }
.filter-check.checked { background: rgba(200,168,75,.1); color: var(--gold); font-weight: 600; }
.check-box {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid rgba(200,168,75,.35);
  flex-shrink: 0; transition: background .15s, border-color .15s;
  display: flex; align-items: center; justify-content: center;
}
.filter-check.checked .check-box { background: var(--gold); border-color: var(--gold); }
.filter-check.checked .check-box::after { content: '✓'; font-size: .65rem; color: #000; font-weight: 900; }

/* Price inputs */
.price-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-input {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  padding: 8px 10px; font-size: .85rem; width: 80px;
  outline: none; font-family: inherit;
  transition: border-color .2s;
}
.price-input:focus { border-color: var(--gold); }
.price-sep { color: var(--muted); font-size: .85rem; }
.price-range-wrap { position: relative; height: 20px; }
.price-range {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  background: rgba(200,168,75,.2);
  border-radius: 4px; outline: none;
  position: absolute; top: 8px; left: 0;
  pointer-events: none;
}
.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  pointer-events: all; border: 2px solid #000;
}
#price-range-min { z-index: 1; }
#price-range-max { z-index: 2; background: transparent; }

.filter-apply-btn {
  width: 100%; background: var(--gold); color: #000;
  font-weight: 800; font-size: .9rem;
  padding: 12px; border-radius: 8px; border: none;
  cursor: pointer; font-family: inherit;
  transition: background .15s; margin-top: 12px;
}
.filter-apply-btn:hover { background: var(--gold-light); }

.filter-reset-link {
  display: block; text-align: center; margin-top: 10px;
  font-size: .82rem; color: var(--muted); text-decoration: none;
  transition: color .15s;
}
.filter-reset-link:hover { color: var(--gold); }

/* ── MAIN CONTENT ────────────────────────────────────────────── */
.catalog-main { padding: 32px 36px; min-width: 0; }

/* Breadcrumb */
.catalog-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--muted); margin-bottom: 24px;
}
.catalog-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .15s; }
.catalog-breadcrumb a:hover { color: var(--gold); }
.catalog-breadcrumb span { color: rgba(200,168,75,.5); }
.catalog-breadcrumb span:last-child { color: var(--text); }

/* Toolbar */
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; gap: 12px; flex-wrap: wrap;
}
.toolbar-left { display: flex; align-items: center; gap: 12px; }
.results-count { font-size: .85rem; color: var(--muted); }

.filter-toggle-btn {
  display: none; /* visible on mobile */
  align-items: center; gap: 6px;
  background: var(--dark2); border: 1px solid var(--border);
  color: var(--text); padding: 8px 14px; border-radius: 8px;
  font-size: .85rem; cursor: pointer; font-family: inherit;
  transition: border-color .15s;
}
.filter-toggle-btn:hover { border-color: var(--gold); }
.filter-badge {
  background: var(--gold); color: #000;
  font-size: .65rem; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.sort-select {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  padding: 8px 14px; font-size: .85rem; outline: none;
  cursor: pointer; font-family: inherit; transition: border-color .2s;
}
.sort-select:focus { border-color: var(--gold); }
.sort-select option { background: var(--dark2); }

/* Active filter chips */
.active-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.active-filter-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(200,168,75,.12); border: 1px solid rgba(200,168,75,.3);
  color: var(--gold); font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; text-decoration: none;
  transition: background .15s;
}
.active-filter-chip:hover { background: rgba(200,168,75,.2); }
.active-filter-clear {
  color: var(--muted); font-size: .78rem; text-decoration: none;
  padding: 5px 12px; align-self: center; transition: color .15s;
}
.active-filter-clear:hover { color: var(--red, #e05555); }

/* ── PRODUCT GRID ────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  overflow: hidden;
}
.product-card:hover {
  border-color: rgba(200,168,75,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.product-card.out-of-stock { opacity: .65; }

.product-card-link { text-decoration: none; color: var(--text); flex: 1; display: flex; flex-direction: column; }

.product-card-img {
  position: relative;
  height: 200px; overflow: hidden;
  background: var(--dark3);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-emoji {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--dark3) 0%, #1e1a10 100%);
}

.stock-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: .7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.stock-badge.out  { background: rgba(224,85,85,.2);  color: #e08888; border: 1px solid rgba(224,85,85,.3); }
.stock-badge.sale { background: rgba(200,168,75,.2); color: var(--gold); border: 1px solid rgba(200,168,75,.3); }

.product-cat-chip {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  color: var(--text); font-size: .7rem; padding: 3px 10px; border-radius: 100px;
}

.product-card-body { padding: 16px 16px 8px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-card-name  { font-size: .95rem; font-weight: 700; line-height: 1.3; }
.product-card-brand { font-size: .78rem; color: var(--muted); }
.product-card-meta  { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.meta-chip {
  font-size: .72rem; background: rgba(200,168,75,.08);
  border: 1px solid rgba(200,168,75,.15); color: rgba(240,236,224,.7);
  padding: 2px 8px; border-radius: 100px;
}
.product-card-price { margin-top: auto; padding-top: 8px; }
.product-card-price .woocommerce-Price-amount { font-size: 1.15rem; font-weight: 900; color: var(--gold); }
.product-card-price del .woocommerce-Price-amount { font-size: .85rem; color: var(--muted); font-weight: 400; }

.product-card-footer { padding: 0 16px 16px; }
.product-add-btn {
  display: block; width: 100%; text-align: center;
  background: rgba(200,168,75,.12); border: 1px solid rgba(200,168,75,.25);
  color: var(--gold); font-size: .85rem; font-weight: 700;
  padding: 10px; border-radius: 8px; text-decoration: none;
  transition: background .15s, border-color .15s; cursor: pointer;
}
.product-add-btn:hover { background: rgba(200,168,75,.22); border-color: rgba(200,168,75,.5); }
.product-add-btn.disabled { color: var(--muted); border-color: rgba(200,168,75,.08); cursor: not-allowed; }
.product-add-btn.disabled:hover { background: rgba(200,168,75,.12); }

/* ── PAGINATION ──────────────────────────────────────────────── */
.catalog-pagination {
  display: flex; align-items: center; gap: 6px;
  margin-top: 40px; justify-content: center; flex-wrap: wrap;
}
.pag-btn {
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent; color: var(--text);
  font-size: .85rem; text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.pag-btn:hover { border-color: var(--gold); color: var(--gold); }
.pag-btn.active { background: rgba(200,168,75,.15); border-color: var(--gold); color: var(--gold); font-weight: 700; }
.pag-dots { color: var(--muted); padding: 8px 4px; }

/* Empty state */
.catalog-empty { text-align: center; padding: 80px 20px; }
.catalog-empty .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.catalog-empty h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.catalog-empty p  { color: var(--muted); margin-bottom: 24px; }

/* ── MOBILE SIDEBAR OVERLAY ─────────────────────────────────── */
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 149;
}

/* ════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ════════════════════════════════════════════════════════════ */

.single-product-page { max-width: 1200px; margin: 0 auto; padding: 100px 32px 80px; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.sp-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-bottom: 60px;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.sp-gallery-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--dark2); border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}
.sp-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .25s;
}
.sp-gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  background: linear-gradient(135deg, var(--dark2) 0%, #1e1a10 100%);
}
.sp-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: .78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
}
.sp-badge.sale { background: rgba(200,168,75,.25); color: var(--gold); border: 1px solid rgba(200,168,75,.4); }
.sp-badge.out  { background: rgba(224,85,85,.2);   color: #e08888;     border: 1px solid rgba(224,85,85,.3); }

.sp-thumbs {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.sp-thumb {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: border-color .15s;
  background: var(--dark2);
}
.sp-thumb.active, .sp-thumb:hover { border-color: var(--gold); }

/* ── INFO ────────────────────────────────────────────────────── */
.sp-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sp-cat-chip {
  display: inline-block;
  background: rgba(200,168,75,.1); border: 1px solid rgba(200,168,75,.25);
  color: var(--gold); font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px; text-decoration: none;
  transition: background .15s;
}
.sp-cat-chip:hover { background: rgba(200,168,75,.2); }

.sp-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 8px; }
.sp-brand { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }

.sp-price { margin-bottom: 16px; }
.sp-price .woocommerce-Price-amount { font-size: 2.2rem; font-weight: 900; color: var(--gold); }
.sp-price del .woocommerce-Price-amount { font-size: 1.2rem; color: var(--muted); font-weight: 400; margin-right: 8px; }

.sp-short-desc { color: rgba(240,236,224,.7); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }

/* Meta grid */
.sp-meta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.sp-meta-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
}
.sp-meta-icon { font-size: 1.3rem; flex-shrink: 0; }
.sp-meta-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.sp-meta-value { font-size: .9rem; font-weight: 700; }
.sp-meta-value.in-stock { color: #4caf72; }
.sp-meta-value.no-stock { color: #e05555; }

/* Add to cart */
.woocommerce .sp-info .cart { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; }
.woocommerce .sp-info .quantity input[type="number"] {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  padding: 14px 16px; font-size: 1rem; width: 80px;
  outline: none; font-family: inherit; text-align: center;
}
.woocommerce .single_add_to_cart_button,
.sp-info .single_add_to_cart_button {
  background: var(--gold); color: #000;
  font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius);
  border: none; cursor: pointer; font-family: inherit;
  transition: background .2s, transform .15s;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--gold-light); transform: translateY(-2px); }

.sp-order-btn {
  display: inline-block;
  background: var(--gold); color: #000; font-weight: 800;
  padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; font-size: 1rem;
  transition: background .2s; margin-bottom: 20px;
}
.sp-order-btn:hover { background: var(--gold-light); }

/* Delivery info */
.sp-delivery-info { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.sp-delivery-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: rgba(240,236,224,.6);
}

/* ── TABS ────────────────────────────────────────────────────── */
.sp-tabs { margin-bottom: 60px; }
.sp-tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.sp-tab-btn {
  background: none; border: none; color: var(--muted);
  font-size: .95rem; font-family: inherit;
  padding: 14px 24px; cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .15s, border-color .15s;
}
.sp-tab-btn:hover { color: var(--text); }
.sp-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 700; }
.sp-tab-panel { display: none; }
.sp-tab-panel.active { display: block; }
.sp-desc-content { color: rgba(240,236,224,.75); line-height: 1.8; font-size: .95rem; max-width: 720px; }

.sp-attrs-table { width: 100%; border-collapse: collapse; max-width: 600px; }
.sp-attrs-table tr { border-bottom: 1px solid rgba(200,168,75,.08); }
.sp-attrs-table th {
  text-align: left; padding: 12px 16px;
  font-size: .82rem; color: var(--muted); font-weight: 600;
  width: 40%; background: var(--dark2);
}
.sp-attrs-table td { padding: 12px 16px; font-size: .9rem; }

/* ── RELATED ─────────────────────────────────────────────────── */
.sp-related { }
.sp-related-title { font-size: 1.4rem; font-weight: 900; margin-bottom: 24px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — CATALOG & PRODUCT
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .catalog-page { grid-template-columns: 240px 1fr; }
}

@media (max-width: 860px) {
  /* Sidebar becomes a slide-in drawer */
  .catalog-page { grid-template-columns: 1fr; }

  .catalog-sidebar {
    position: fixed; top: 0; left: -300px; width: 280px;
    height: 100vh; z-index: 150; transition: left .3s;
    border-right: 1px solid var(--border);
  }
  .catalog-sidebar.open { left: 0; }
  .sidebar-overlay.open { display: block; }
  .sidebar-close { display: block; }
  .filter-toggle-btn { display: flex; }
  .catalog-main { padding: 24px 16px; }

  /* Product grid on mobile */
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .product-card-img { height: 160px; }
  .product-card-emoji { font-size: 3rem; }
}

@media (max-width: 700px) {
  .sp-layout { grid-template-columns: 1fr; gap: 32px; }
  .sp-meta-grid { grid-template-columns: 1fr 1fr; }
  .single-product-page { padding: 90px 16px 60px; }
}
 
/* styles.css */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.faq-card {
    background-color: var(--dark2);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.faq-question {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    transition: color 0.3s;
}
.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    transition: transform 0.3s;
}
.faq-toggle::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--dark2);
}
.faq-card.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-card.active .faq-toggle::after {
    content: '×';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-card.active .faq-answer {
    /* Максимальная высота будет установлена через JS */
}
.faq-answer p {
    margin: 0;
    color: #ddd;
    font-size: 0.95rem;
}



/* Общие стили для блока отзывов */
.reviews-section {
  padding: 50px 20px;
  background-color: var(--dark2);
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
}

/* Заголовок блока отзывов */
.reviews-section .section-label {
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.reviews-section .section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

.reviews-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Стиль для каждой карточки отзыва */
.review-card {
  background: var(--dark3);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Заголовок отзыва */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* Информация о пользователе */
.review-user-info {
  display: flex;
  align-items: center;
}

.review-avatar {
  font-size: 24px;
  margin-right: 10px;
}

.review-name-city {
  display: flex;
  flex-direction: column;
}

.review-name-city span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Звезды */
.review-stars {
  font-size: 1.2rem;
  color: #f5c518; /* золотой цвет для звезд */
}

/* Текст отзыва */
.review-text p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

/* Центрирование изображений */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* В вашем style.css */

.seo-description {
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px 20px;
    background-color: #222; /* темный фон для секции */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: #ffd700; /* желтый цвет текста для контраста */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Заголовки внутри блока */
.seo-description h1,
.seo-description h2,
.seo-description h3,
.seo-description h4,
.seo-description h5,
.seo-description h6 {
    color: #ffd700; /* желтый для заголовков */
    margin-bottom: 15px;
}
.seo-description p {
    margin-bottom: 15px;
    color: #ffd700; /* желтый цвет текста */
}


body {
  background-color: #121212; /* темный фон сайта */
  color: #ffffff; /* светлый текст */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}
.container {
  max-width: 800px; /* ширина для центрирования на десктопе */
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  text-align: justify; /* для лучшей читаемости */
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Блоки для разделения на небольшие сегменты */
.block {
  background-color: #1e1e1e; /* чуть светлее фон для блоков */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Адаптивность для мобильных устройств */
@media(max-width: 600px) {
  body {
    padding: 10px;
  }
}


.ellipse-form-container {
  width: 350px;
  padding: 30px;
  margin: 50px auto;
  background: linear-gradient(145deg, #ffffff, #e0e0e0);
  border-radius: 50% / 60%; /* Создает эллипс */
  box-shadow: inset 5px 5px 10px #c8c8c8,
              inset -5px -5px 10px #ffffff,
              8px 8px 20px rgba(0, 0, 0, 0.2); /* 3D эффект */
  position: relative;
  font-family: 'Arial', sans-serif;
}

.form-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.review-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-form textarea {
  width: 80%;
  height: 100px;
  padding: 15px;
  border: none;
  border-radius: 20px;
  resize: none;
  font-size: 16px;
  box-shadow: inset 3px 3px 6px #d1d1d1,
              inset -3px -3px 6px #ffffff;
  outline: none;
  transition: box-shadow 0.3s;
}

.review-form textarea:focus {
  box-shadow: inset 2px 2px 4px #b0b0b0,
              inset -2px -2px 4px #ffffff;
}

button {
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(145deg, #6a11cb, #2575fc);
  border: none;
  border-radius: 30px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.3),
              -4px -4px 10px rgba(255,255,255,0.6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 15px rgba(0,0,0,0.4),
              -6px -6px 15px rgba(255,255,255,0.7);
}
 