/* ═══════════════════════════════════════════
   FILLMY — Premium Landing Styles
   ═══════════════════════════════════════════ */

:root {
    --bg-page: #0f0e0d;
    --bg-card: #faf8f5;
    --bg-elevated: #ffffff;
    --bg-dark: #1a1816;
    --text-primary: #1a1714;
    --text-secondary: #6b5f54;
    --text-muted: #9a8d80;
    --text-light: #f5f0ea;
    --gold: #c4a574;
    --gold-light: #e8d5b5;
    --gold-dark: #9a7b4f;
    --border: rgba(196, 165, 116, 0.22);
    --border-strong: rgba(196, 165, 116, 0.45);
    --shadow-sm: 0 4px 20px rgba(26, 23, 20, 0.06);
    --shadow-md: 0 12px 40px rgba(26, 23, 20, 0.10);
    --shadow-lg: 0 24px 60px rgba(26, 23, 20, 0.14);
    --shadow-gold: 0 8px 32px rgba(196, 165, 116, 0.28);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.35s var(--ease-out);
}

/* ── Base ── */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-page);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.no-scroll { overflow: hidden; }

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

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

/* ── Layout ── */
.page-bg {
    display: flex;
    justify-content: center;
    padding: 12px 8px 90px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196, 165, 116, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(196, 165, 116, 0.06) 0%, transparent 50%),
        var(--bg-page);
    min-height: 100vh;
}

.main_wrapper {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196, 165, 116, 0.08);
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}

/* ── Top bar ── */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--bg-dark);
    color: var(--gold-light);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(196, 165, 116, 0.08), transparent);
    animation: shimmerBar 4s ease-in-out infinite;
}

.top-bar span {
    position: relative;
    z-index: 1;
}

.top-bar-icon {
    font-size: 13px;
    opacity: 0.9;
}

/* ── Header ── */
.site-header {
    padding: 20px 20px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fff 0%, var(--bg-card) 100%);
}

.brand-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    padding: 4px 12px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
}

.header-title-main {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.header-title-main em {
    font-style: italic;
    color: var(--gold-dark);
}

/* ── Stats bar ── */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.6);
}

.stats-bar .stat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.stats-bar .stat-sep {
    color: var(--border-strong);
    margin: 0 4px;
}

.stats-bar span[id] {
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.stats-bar span[id].bump {
    color: var(--gold);
    animation: bump 0.4s ease;
}

/* ── Hero ── */
.hero {
    padding: 20px 18px 28px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 23, 20, 0.15) 100%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    animation: heroZoom 12s ease-in-out infinite alternate;
    cursor: zoom-in;
}

.badge-sale {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    padding: 9px 16px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-gold);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-content { animation: fadeInUp 0.8s var(--ease-out) 0.2s both; }

.hero-title {
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.hero-title span {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-top: 6px;
}

.hero-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.55;
}

/* ── Price ── */
.price-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.price-old,
.price-new {
    flex: 1;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-old {
    background: rgba(196, 165, 116, 0.08);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.price-old span {
    display: block;
    margin-top: 5px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: line-through;
    color: #b5a99a;
    letter-spacing: 0;
    text-transform: none;
}

.price-new {
    background: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid rgba(196, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.price-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 165, 116, 0.15), transparent);
    animation: shimmerPrice 3s ease-in-out infinite;
}

.price-new span {
    display: block;
    margin-top: 5px;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 0;
    text-transform: none;
}

/* ── Trust bar ── */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    background: rgba(196, 165, 116, 0.07);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-height: 52px;
}

.trust-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 17px;
    height: 17px;
}

.trust-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.hero-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 18px;
    color: var(--text-secondary);
    padding: 10px 14px;
    background: rgba(196, 165, 116, 0.06);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border-strong);
}

.hero-countdown span {
    font-weight: 800;
    font-size: 16px;
    color: var(--gold-dark);
    font-variant-numeric: tabular-nums;
    min-width: 48px;
}

.hero-note {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    text-align: center;
    letter-spacing: 0.04em;
}

/* ── Buttons ── */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    padding: 16px 22px;
    width: 100%;
    box-shadow: var(--shadow-gold);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(196, 165, 116, 0.4);
}

.btn-primary:hover::after { left: 120%; }

.btn-primary:active { transform: translateY(0); }

.btn-primary--full { width: 100%; }

.btn-primary:disabled,
.btn-primary--loading {
    opacity: 0.82;
    cursor: wait;
    pointer-events: none;
    transform: none;
}

.btn-primary--loading {
    position: relative;
    padding-right: 42px;
}

.btn-primary--loading::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
}

.form--submitting .btn-primary {
    pointer-events: none;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.btn-outline {
    margin-top: 12px;
    padding: 13px 20px;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    background: transparent;
    width: 100%;
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-1px);
}

/* ── Sections ── */
.section {
    padding: 28px 18px 30px;
    border-top: 1px solid var(--border);
    position: relative;
}

.section-head {
    margin-bottom: 18px;
}

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Scroll reveal (progressive: visible without JS) ── */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Benefits ── */
.section-benefits {
    background: linear-gradient(180deg, var(--bg-card) 0%, #f3efe8 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.benefit-item {
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
    padding: 12px 6px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.benefit-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

.benefit-item:hover img { transform: scale(1.03); }

.benefit-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: rgba(196, 165, 116, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.benefit-item h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

/* ── Video ── */
.section-video {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-video .section-title { color: var(--text-light); }
.section-video .section-subtitle { color: rgba(245, 240, 234, 0.65); }
.section-video .section-label { color: var(--gold-light); }

.video-wrapper {
    margin-top: 4px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(196, 165, 116, 0.2);
    position: relative;
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: #000;
}

/* ── Description ── */
.section-description {
    background: var(--bg-elevated);
}

.list-specs {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 8px;
}

.list-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}

.list-specs li:hover {
    border-color: var(--border);
    background: #fff;
}

.list-specs li::before {
    content: '✦';
    color: var(--gold);
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.list-specs li b {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 4px;
}

/* ── Size table ── */
.size-calculator {
    background: var(--bg-elevated);
    padding: 22px 18px;
    border-radius: var(--radius-md);
    margin: 16px 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.size-calculator h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.size-calculator input {
    width: 100%;
    max-width: 280px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    margin: 6px 0;
    font-size: 15px;
    font-family: var(--font-sans);
    background: var(--bg-card);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.size-calculator input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
}

.size-calculator button {
    background: var(--bg-dark);
    color: var(--gold-light);
    border: 1px solid rgba(196, 165, 116, 0.3);
    padding: 13px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 10px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.size-calculator button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.size-result {
    margin-top: 16px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-primary);
    min-height: 24px;
}

.size-result.success { color: var(--gold-dark); }

.size-table-wrapper {
    margin-top: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.size-table th,
.size-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.size-table thead th {
    background: var(--bg-dark);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.size-table tr:nth-child(even) td { background: rgba(196, 165, 116, 0.04); }

.size-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-secondary);
}

.size-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
    padding: 12px 14px;
    background: rgba(196, 165, 116, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

/* ── Colors / Gallery ── */
.section-colors {
    background: linear-gradient(180deg, #f3efe8 0%, var(--bg-card) 100%);
}

.color-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 14px;
    margin-bottom: 16px;
    background: var(--bg-elevated);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.color-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.color-slider {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    background: #f0ebe4;
    aspect-ratio: 4 / 5;
}

.color-slider .slick-list,
.color-slider .slick-track {
    height: 100% !important;
}

.color-slider .slick-slide {
    height: 100% !important;
}

.color-slider .slick-slide > div {
    height: 100%;
}

.color-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    cursor: zoom-in;
}

/* Fallback: show first photo even if Slick fails to load */
.color-slider:not(.slick-initialized) img:not(:first-child) {
    display: none;
}

.color-slider:not(.slick-initialized) img:first-child {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.color-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.color-info h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.color-swatch--chocolate { background: #5c3d2e; }
.color-swatch--black { background: #1a1a1a; }
.color-swatch--red { background: #8b2635; }
.color-swatch--graphite { background: #4a4a52; }

.color-size-note { font-size: 12px; color: var(--text-muted); }

/* ── Slick ── */
.color-slider.slick-initialized .slick-list {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.color-slider.slick-slider {
    margin-bottom: 12px;
}

.slick-dots {
    bottom: 10px;
}

.slick-dots li button:before {
    font-size: 7px;
    color: var(--gold);
    opacity: 0.35;
}

.slick-dots li.slick-active button:before {
    color: var(--gold);
    opacity: 1;
}

/* Slick arrows — SVG icons, no text labels */
.color-slider .slick-prev,
.color-slider .slick-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(196, 165, 116, 0.4);
    background-color: rgba(26, 24, 22, 0.82);
    backdrop-filter: blur(6px);
    cursor: pointer;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    overflow: hidden;
    text-indent: -9999px;
    transition: background-color var(--transition), transform var(--transition);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 16px;
}

.color-slider .slick-prev::before,
.color-slider .slick-next::before {
    content: none !important;
    display: none !important;
}

.color-slider .slick-prev {
    left: 10px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath d='M8 2L2 8l6 6' stroke='%23ffffff' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.color-slider .slick-next {
    right: 10px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath d='M2 2l6 6-6 6' stroke='%23ffffff' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.color-slider .slick-prev:hover,
.color-slider .slick-next:hover {
    background-color: var(--gold-dark);
    transform: translateY(-50%) scale(1.08);
}

/* ── Reviews ── */
.section-reviews { background: var(--bg-elevated); }

.reviews-grid {
    display: grid;
    gap: 12px;
}

.review-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 16px;
    background: var(--bg-card);
    font-size: 14px;
    color: var(--text-secondary);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 8px;
    right: 14px;
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1;
    color: rgba(196, 165, 116, 0.15);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.review-tag {
    font-size: 12px;
    color: var(--text-muted);
}

.review-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.review-text { line-height: 1.55; }

/* ── Steps ── */
.section-steps {
    background: linear-gradient(180deg, var(--bg-card) 0%, #ebe5dc 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.step-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 16px 14px;
    background: var(--bg-elevated);
    transition: transform var(--transition);
}

.step-item:hover { transform: translateY(-3px); }

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
    border: 1px solid rgba(196, 165, 116, 0.3);
}

.step-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.step-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* ── FAQ ── */
.section-faq {
    background: var(--bg-elevated);
}

.faq-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 40px 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    line-height: 1.4;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(196, 165, 116, 0.15);
    color: var(--gold-dark);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform var(--transition), background var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
    background: var(--gold);
    color: #fff;
}

.faq-item p {
    padding: 0 14px 14px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    margin: 0;
    padding-top: 12px;
}

/* ── Order form ── */
.offer_section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 32px 18px 36px;
}

.offer_section .section-title { color: var(--text-light); }
.offer_section .section-subtitle { color: rgba(245, 240, 234, 0.65); }
.offer_section .section-label { color: var(--gold-light); }

.order-price-highlight {
    margin: 10px 0 20px;
    font-size: 15px;
    color: rgba(245, 240, 234, 0.8);
    text-align: center;
    padding: 14px;
    background: rgba(196, 165, 116, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(196, 165, 116, 0.25);
}

.order-price-highlight span {
    font-weight: 800;
    font-size: 20px;
    color: var(--gold-light);
}

.order-price-highlight s {
    color: rgba(245, 240, 234, 0.45);
}

.main-order-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    padding: 22px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 165, 116, 0.2);
    backdrop-filter: blur(8px);
}

.form-group { margin-bottom: 14px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(245, 240, 234, 0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-order-form select,
.main-order-form input[type="text"],
.main-order-form input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(196, 165, 116, 0.25);
    font-size: 15px;
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.main-order-form select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.main-order-form select:focus,
.main-order-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.main-order-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c4a574' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.main-order-form input::placeholder {
    color: rgba(245, 240, 234, 0.35);
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(245, 240, 234, 0.45);
}

.privacy-note {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(245, 240, 234, 0.4);
    text-align: center;
    line-height: 1.5;
}

/* ── Footer ── */
.site-footer {
    padding: 20px 18px 24px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-card);
    text-align: center;
    line-height: 1.6;
}

.site-footer p + p { margin-top: 4px; }

/* ── Social proof toasts ── */
.social-toast {
    position: fixed;
    left: 12px;
    bottom: 18px;
    z-index: 998;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: min(300px, calc(100vw - 130px));
    padding: 12px 36px 12px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.45s var(--ease-out), opacity 0.45s ease;
    pointer-events: none;
}

.social-toast.visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.social-toast--stock .social-toast__icon {
    background: linear-gradient(135deg, #c45c5c 0%, #9a3d3d 100%);
}

.social-toast__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-toast__title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    line-height: 1.3;
}

.social-toast__text {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.social-toast__close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 22px;
    height: 22px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.social-toast__close:hover {
    color: var(--text-primary);
}

/* ── Form highlight on color select ── */
.offer_section.order--highlight {
    animation: formHighlight 2.2s ease;
}

@keyframes formHighlight {
    0%, 100% { box-shadow: none; }
    15%, 85% {
        box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.45), 0 0 32px rgba(196, 165, 116, 0.2);
    }
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 13, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox--active {
    display: flex;
    opacity: 1;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.lightbox__image {
    position: relative;
    max-width: 92%;
    max-height: 88vh;
    border-radius: var(--radius-md);
    z-index: 1;
    box-shadow: var(--shadow-lg);
    animation: lightboxIn 0.35s var(--ease-out);
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(196, 165, 116, 0.3);
    background: rgba(26, 24, 22, 0.85);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox__close:hover { background: var(--gold-dark); }

.lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(196, 165, 116, 0.3);
    background: rgba(26, 24, 22, 0.85);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition), transform var(--transition);
}

.lightbox__arrow:hover {
    background: var(--gold-dark);
    transform: translateY(-50%) scale(1.06);
}

.lightbox__arrow--prev { left: 12px; }
.lightbox__arrow--next { right: 12px; }

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(245, 240, 234, 0.6);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    z-index: 2;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmerBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes shimmerPrice {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

@keyframes bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ── Responsive ── */
@media (max-width: 420px) {
    .page-bg { padding: 8px 4px 90px; }

    .hero-title { font-size: 23px; }

    .price-row { flex-direction: column; }

    .benefits-grid { gap: 6px; }

    .benefit-item { padding: 10px 4px; }

    .benefit-item h3 { font-size: 11px; }

    .social-toast {
        left: 8px;
        bottom: 14px;
        max-width: calc(100vw - 24px);
    }
}

@media (min-width: 520px) {
    .page-bg {
        padding-top: 32px;
        padding-bottom: 110px;
    }

    .main_wrapper {
        max-width: 500px;
    }
}

/* ── Thank you page ── */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 8px;
}

.thankyou-card {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196, 165, 116, 0.08);
    overflow: hidden;
    text-align: center;
}

.thankyou-top {
    padding: 28px 20px 22px;
    background: var(--bg-dark);
    color: var(--text-light);
}

.thankyou-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.thankyou-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.thankyou-subtitle {
    font-size: 14px;
    color: rgba(245, 240, 234, 0.75);
    line-height: 1.5;
}

.thankyou-body {
    padding: 22px 20px 26px;
}

.thankyou-steps {
    display: grid;
    gap: 10px;
    text-align: left;
    margin-bottom: 20px;
}

.thankyou-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.thankyou-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thankyou-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
}

.thankyou-order {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(196, 165, 116, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.thankyou-order strong {
    color: var(--gold-dark);
    font-size: 18px;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(196, 165, 116, 0.4);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal { opacity: 1; transform: none; }

    html { scroll-behavior: auto; }
}