/* ============================================================
   MINIMAL.CSS — LUPS MODS Luxury Utility Layer
   Minimalist, Prestižen, Butik-Style
   ============================================================ */

/* ── Section Label ── */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

/* ── Thin Divider Line ── */
.divider-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
    margin: 0 auto;
}
.divider-line--left { margin: 0; }

/* ── Minimal Section Layout ── */
.minimal-section {
    padding: 120px 0;
    position: relative;
}
.minimal-section--dark    { background-color: var(--color-dark); }
.minimal-section--darker  { background-color: #020303; }

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

@media (max-width: 768px) {
    .container        { padding: 0 20px; }
    .minimal-section  { padding: 60px 0; }
    .section-header   { margin-bottom: 40px; }
}
@media (max-width: 480px) {
    .container        { padding: 0 16px; }
    .minimal-section  { padding: 48px 0; }
}

/* ── Section Header ── */
.section-header           { margin-bottom: 64px; }
.section-header--center   { text-align: center; }

.section-title-minimal {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.section-subtitle-minimal {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    max-width: 480px;
    line-height: 1.7;
}
.section-header--center .section-subtitle-minimal { margin: 0 auto; }

/* ── Watch Card Minimal (Prebuilds) ── */
.watch-card-minimal {
    position: relative;
    background: #0a0f0b;
    border: 1px solid rgba(197,160,89,0.08);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
}
.watch-card-minimal:hover {
    border-color: rgba(197,160,89,0.35);
    transform: translateY(-4px);
}

.watch-card-minimal__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    background: #050706;
}
.watch-card-minimal__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2,0,0.2,1);
}
.watch-card-minimal:hover .watch-card-minimal__image-wrap img { transform: scale(1.06); }

.watch-card-minimal__body {
    padding: 24px 20px;
    border-top: 1px solid rgba(197,160,89,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.watch-card-minimal__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.watch-card-minimal__price {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.watch-card-minimal__desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 320px;
}

.watch-card-minimal__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.watch-card-minimal__btn {
    background: transparent;
    border: 1px solid rgba(197,160,89,0.4);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.watch-card-minimal__btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
}

/* ── Prebuilt Grid ── */
.prebuilt-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(197,160,89,0.08);
}
@media (max-width: 1024px) { .prebuilt-grid-minimal { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .prebuilt-grid-minimal { grid-template-columns: 1fr; } }

/* ── Popular Builds Grid ── */
.popular-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1100px) { .popular-grid-minimal { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .popular-grid-minimal { grid-template-columns: 1fr 1fr; gap: 12px; } }

.popular-card-minimal {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: #0a0f0b;
}
.popular-card-minimal img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2,0,0.2,1);
    display: block;
}
.popular-card-minimal:hover img { transform: scale(1.07); }

.popular-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,7,6,0.85) 0%, rgba(5,7,6,0.1) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
}

.popular-card-overlay__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 400;
    color: #fff; letter-spacing: 0.05em; margin-bottom: 8px;
}

.popular-card-overlay__link {
    font-family: var(--font-body);
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--color-gold); text-decoration: none;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.popular-card-minimal:hover .popular-card-overlay__link {
    opacity: 1; transform: translateY(0);
}

/* ── Configure CTA Section ── */
.config-cta-section {
    padding: 100px 0; text-align: center;
    position: relative; overflow: hidden;
}

.config-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300; color: var(--color-text);
    letter-spacing: -0.02em; line-height: 1; margin-bottom: 16px;
}

.config-cta-sub {
    font-family: var(--font-body);
    font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-text-muted); margin-bottom: 56px;
}

.config-cta-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.config-cta-btn {
    display: inline-flex; flex-direction: column; align-items: center;
    padding: 20px 40px;
    border: 1px solid rgba(197,160,89,0.25);
    color: var(--color-text); text-decoration: none;
    transition: all 0.35s ease; min-width: 180px;
}
.config-cta-btn:hover {
    border-color: var(--color-gold);
    background: rgba(197,160,89,0.05);
}

.config-cta-btn__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400;
    letter-spacing: 0.05em; margin-bottom: 4px;
}

.config-cta-btn__sub {
    font-family: var(--font-body);
    font-size: 0.65rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--color-gold);
}

/* ── Gallery Grid Minimal ── */
.gallery-grid-minimal {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
@media (max-width: 768px) { .gallery-grid-minimal { grid-template-columns: repeat(2, 1fr); } }

.gallery-item-minimal {
    position: relative; aspect-ratio: 1; overflow: hidden;
    cursor: pointer; background: #050706;
}
.gallery-item-minimal img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease; display: block;
}
.gallery-item-minimal:hover img { transform: scale(1.06); }

.gallery-item-minimal__overlay {
    position: absolute; inset: 0;
    background: rgba(5,7,6,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item-minimal:hover .gallery-item-minimal__overlay { opacity: 1; }

.gallery-item-minimal__label {
    font-family: var(--font-body);
    font-size: 0.7rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: #fff;
}

/* ── View All Link ── */
.view-all-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--color-gold); text-decoration: none;
    margin-top: 48px; transition: gap 0.3s ease;
}
.view-all-link::after { content: '→'; font-size: 1rem; transition: transform 0.3s ease; }
.view-all-link:hover  { gap: 16px; }
.view-all-link:hover::after { transform: translateX(4px); }

/* ── Fade-Up Scroll Reveal ── */
.fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.2,0,0.2,1), transform 0.8s cubic-bezier(0.2,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Mechanism Section Minimal ── */
.mechanism-minimal {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px;
}
@media (max-width: 900px) { .mechanism-minimal { grid-template-columns: 1fr; } }

.mechanism-minimal__text {
    padding: 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
    background: #020303;
}
@media (max-width: 768px) { .mechanism-minimal__text { padding: 48px 24px; } }

.mechanism-minimal__video { position: relative; overflow: hidden; }
.mechanism-minimal__video video,
.mechanism-minimal__video img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mechanism-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.2);
    padding: 6px 14px; margin-bottom: 24px; margin-top: 32px;
}
.mechanism-badge span {
    font-family: var(--font-body); font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--color-gold); font-weight: 400;
}
.mechanism-badge code {
    font-family: var(--font-body); font-size: 0.72rem;
    font-weight: 500; color: var(--color-text); letter-spacing: 0.1em;
}

/* ── Hero Minimal ── */
.hero-minimal {
    position: relative; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hero-minimal__bg { position: absolute; inset: 0; z-index: 0; }
.hero-minimal__bg video { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-minimal__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,7,6,0.75) 0%, rgba(5,7,6,0.45) 50%, rgba(5,7,6,0.65) 100%);
    z-index: 1;
}

.hero-minimal__content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px;
}

.hero-minimal__kicker {
    font-family: var(--font-body); font-size: 0.68rem;
    letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--color-gold); margin-bottom: 20px;
    display: block; opacity: 0;
    animation: heroFadeUp 1s 0.3s forwards;
}

.hero-minimal__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 300; color: var(--color-text);
    line-height: 0.95; letter-spacing: -0.02em;
    margin-bottom: 28px; opacity: 0;
    animation: heroFadeUp 1.2s 0.5s forwards;
}

.hero-minimal__tagline {
    font-family: var(--font-body); font-size: 0.95rem;
    font-weight: 300; color: rgba(242,247,244,0.6);
    letter-spacing: 0.15em; margin-bottom: 48px;
    display: block; opacity: 0;
    animation: heroFadeUp 1s 0.8s forwards;
}

.hero-minimal__cta {
    display: inline-flex; align-items: center; gap: 12px;
    background: transparent; border: 1px solid rgba(197,160,89,0.6);
    color: var(--color-text);
    font-family: var(--font-body); font-size: 0.72rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    text-decoration: none; padding: 16px 36px;
    transition: all 0.4s ease; opacity: 0;
    animation: heroFadeUp 1s 1.1s forwards;
}
.hero-minimal__cta:hover {
    background: var(--color-gold); border-color: var(--color-gold);
    color: #000; gap: 18px;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Reviews card — hero bottom right */
.hero-minimal__reviews {
    position: absolute; bottom: 48px; right: 48px; z-index: 3;
    background: rgba(5,7,6,0.7);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197,160,89,0.18);
    padding: 18px 22px; max-width: 280px;
    opacity: 0; animation: heroFadeUp 1s 1.4s forwards;
}
@media (max-width: 768px) { .hero-minimal__reviews { display: none; } }

.reviews-stars-min {
    color: var(--color-gold); font-size: 0.75rem; letter-spacing: 0.1em;
    margin-bottom: 8px; display: block;
}
.review-text-min {
    font-size: 0.8rem; color: var(--color-text);
    font-style: italic; line-height: 1.6; font-weight: 300; margin-bottom: 8px;
}
.review-author-min {
    font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-gold);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: heroFadeUp 1s 1.6s forwards;
}
.hero-scroll-indicator span {
    font-family: var(--font-body); font-size: 0.6rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(242,247,244,0.4);
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(197,160,89,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* ── Bodliz Neon Pill Badge ── */
.bodliz-badge {
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    vertical-align: middle;
}

.bodliz-badge:hover {
    color: #20e99e !important;
    text-shadow: 0 0 10px rgba(32, 233, 158, 0.6), 0 0 20px rgba(32, 233, 158, 0.4);
}

/* ── Easter Egg Overlay Fixed ── */
#easter-egg-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#easter-egg-overlay.active {
    opacity: 1;
    visibility: visible;
}

#easter-egg-loading {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: var(--color-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#easter-egg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

#easter-egg-close {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}
#easter-egg-close:hover {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

/* ── Product Modal ── */
.product-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.product-modal-overlay.active { opacity: 1; visibility: visible; }

.product-modal-minimal {
    background: #0a0f0b; border: 1px solid rgba(197,160,89,0.25);
    max-width: 920px; width: 100%; max-height: 90vh; overflow-y: auto;
    display: grid; grid-template-columns: 1fr 1fr; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}
@media (max-width: 768px) {
    .product-modal-minimal { grid-template-columns: 1fr; max-height: 94vh; }
}

.product-modal__images {
    position: relative; background: #050706; display: flex;
    flex-direction: column; padding: 28px; align-items: center; justify-content: center;
}
.product-modal__images img#product-modal-img {
    width: 100%; max-height: 380px; object-fit: contain; display: block;
}

.product-modal__body {
    padding: 36px 32px; display: flex; flex-direction: column;
    justify-content: flex-start; overflow-y: auto;
}

.product-modal__close {
    position: absolute; top: 16px; right: 20px;
    background: rgba(0,0,0,0.6); border: 1px solid rgba(197,160,89,0.3);
    color: var(--color-gold); cursor: pointer; font-size: 1.2rem;
    width: 36px; height: 36px; border-radius: 50%; z-index: 20;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
}
.product-modal__close:hover { background: var(--color-gold); color: #000; }

.product-modal__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400; color: var(--color-text);
    margin-bottom: 6px; letter-spacing: 0.02em;
}

.product-modal__price {
    font-family: var(--font-body); font-size: 1.35rem; font-weight: 500;
    color: var(--color-gold); margin-bottom: 20px;
}

.product-modal__desc {
    font-family: var(--font-body); font-size: 0.82rem;
    color: rgba(242, 247, 244, 0.85); line-height: 1.7; font-weight: 300;
    margin-bottom: 24px; border-top: 1px solid rgba(197,160,89,0.15);
    padding-top: 16px; margin-top: 4px;
}

.product-modal__add-btn {
    background: var(--color-gold); border: 1px solid var(--color-gold);
    color: #000; font-family: var(--font-body); font-size: 0.72rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 16px 32px; cursor: pointer; transition: all 0.3s ease;
    font-weight: 600; width: 100%; margin-top: auto;
}
.product-modal__add-btn:hover { background: #fff; border-color: #fff; color: #000; }

/* Image thumbnails in modal */
.product-modal__thumbs {
    display: flex; gap: 8px; margin-top: 16px; justify-content: center; flex-wrap: wrap;
}
.product-modal__thumb {
    width: 58px; height: 58px; object-fit: cover; cursor: pointer;
    border: 1px solid rgba(197,160,89,0.2); transition: all 0.25s ease;
    opacity: 0.5; background: #000;
}
.product-modal__thumb.active,
.product-modal__thumb:hover { border-color: var(--color-gold); opacity: 1; transform: scale(1.05); }

/* ── Step Configurator (shared) ── */
.step-indicator-wrap {
    display: flex; align-items: flex-start; gap: 0; margin-bottom: 36px;
}

.step-dot {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; flex: 1; cursor: pointer; position: relative;
}
.step-dot::after {
    content: ''; position: absolute; top: 14px; left: 50%;
    width: 100%; height: 1px; background: rgba(197,160,89,0.15); z-index: 0;
}
.step-dot:last-child::after { display: none; }

.step-dot__circle {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(197,160,89,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
    color: rgba(197,160,89,0.35); transition: all 0.3s ease;
    background: #050706; position: relative; z-index: 1;
}
.step-dot.active .step-dot__circle {
    border-color: var(--color-gold); color: var(--color-gold);
    background: rgba(197,160,89,0.1);
}
.step-dot.completed .step-dot__circle {
    border-color: var(--color-gold); background: var(--color-gold); color: #000;
}

.step-dot__label {
    font-family: var(--font-body); font-size: 0.5rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(197,160,89,0.3); transition: color 0.3s ease; white-space: nowrap;
}
.step-dot.active .step-dot__label { color: var(--color-gold); }

/* Step Panel */
.step-panel { display: none; }
.step-panel.active {
    display: block;
    animation: stepFadeIn 0.4s ease forwards;
}
@keyframes stepFadeIn {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.step-panel__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--color-text); letter-spacing: 0.03em; margin-bottom: 4px;
}
.step-panel__subtitle {
    font-size: 0.75rem; color: var(--color-text-muted);
    letter-spacing: 0.1em; margin-bottom: 24px;
}

.step-option-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 8px; margin-bottom: 32px;
    max-height: 310px; overflow-y: auto; padding-right: 4px;
}
.step-option-grid::-webkit-scrollbar { width: 3px; }
.step-option-grid::-webkit-scrollbar-track { background: transparent; }
.step-option-grid::-webkit-scrollbar-thumb { background: rgba(197,160,89,0.25); }

.step-pill {
    border: 1px solid rgba(197,160,89,0.15); background: transparent;
    color: var(--color-text-muted); font-family: var(--font-body);
    font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 10px 6px; cursor: pointer; transition: all 0.25s ease;
    text-align: center; line-height: 1.3; min-height: 52px;
    display: flex; align-items: center; justify-content: center;
}
.step-pill:hover { border-color: rgba(197,160,89,0.5); color: var(--color-text); }
.step-pill.active {
    border-color: var(--color-gold); background: rgba(197,160,89,0.1); color: var(--color-gold);
}

/* Step navigation prev/next */
.step-nav-buttons {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding-top: 20px; border-top: 1px solid rgba(197,160,89,0.1);
    margin-top: 8px;
}
.step-nav-btn {
    background: transparent; border: 1px solid rgba(197,160,89,0.25);
    color: var(--color-text-muted); font-family: var(--font-body);
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 10px 20px; cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 8px;
}
.step-nav-btn:hover:not(:disabled) { border-color: var(--color-gold); color: var(--color-gold); }
.step-nav-btn:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

.step-nav-btn--next {
    background: rgba(197,160,89,0.08); border-color: rgba(197,160,89,0.4);
    color: var(--color-gold); margin-left: auto;
}
.step-nav-btn--next:hover { background: var(--color-gold); color: #000; border-color: var(--color-gold); }

.step-nav-count {
    font-family: var(--font-body); font-size: 0.65rem;
    letter-spacing: 0.2em; color: var(--color-text-muted);
}

/* ══════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   ══════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── Hero ── */
    .hero-minimal { height: 100svh; min-height: 560px; }
    .hero-minimal__title { font-size: clamp(3rem, 13vw, 5.5rem); margin-bottom: 18px; }
    .hero-minimal__tagline { font-size: 0.82rem; margin-bottom: 36px; letter-spacing: 0.1em; }
    .hero-minimal__cta { padding: 14px 28px; font-size: 0.66rem; }
    .hero-scroll-indicator { display: none; }

    /* ── Section titles ── */
    .section-title-minimal { font-size: clamp(2rem, 9vw, 3.2rem); }
    .section-subtitle-minimal { font-size: 0.85rem; }

    /* ── Configure CTA buttons ── */
    .config-cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .config-cta-btn { width: 100%; max-width: 320px; flex-direction: row; justify-content: space-between; padding: 16px 24px; min-width: unset; }
    .config-cta-title { font-size: clamp(2.8rem, 11vw, 5rem); }
    .config-cta-sub { font-size: 0.75rem; margin-bottom: 36px; }

    /* ── Prebuilt card buttons ── */
    .watch-card-minimal__footer { flex-direction: column; gap: 10px; }
    .watch-card-minimal__btn { width: 100%; padding: 13px 16px; font-size: 0.66rem; }
    .watch-card-minimal__body { padding: 20px 16px; }
    .watch-card-minimal__desc { font-size: 0.74rem; }

    /* ── Mechanism section ── */
    .mechanism-minimal { grid-template-columns: 1fr; }
    .mechanism-minimal__text { padding: 48px 20px; }
    .mechanism-minimal__video { min-height: 280px; }

    /* ── Popular builds ── */
    .popular-card-overlay__link { opacity: 1; transform: translateY(0); }

    /* ── Gallery ── */
    .gallery-grid-minimal { grid-template-columns: repeat(2, 1fr); }

    /* ── Product Modal ── */
    .product-modal-minimal { grid-template-columns: 1fr; max-height: 96vh; }
    .product-modal__images { padding: 20px; }
    .product-modal__images img#product-modal-img { max-height: 260px; }
    .product-modal__body { padding: 24px 20px; }
    .product-modal__name { font-size: 1.6rem; }

    /* ── Footer bottom ── */
    .footer-min__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-min__inner { padding: 0 20px; }

    /* ── Larger touch targets ── */
    .watch-card-minimal__btn,
    .config-cta-btn,
    .form-submit-min,
    .product-modal__add-btn { min-height: 48px; }
}

@media (max-width: 480px) {

    /* ── Hero ── */
    .hero-minimal__kicker { font-size: 0.58rem; letter-spacing: 0.3em; }
    .hero-minimal__title  { font-size: clamp(2.6rem, 14vw, 4rem); }

    /* ── Popular grid 1 column on very small ── */
    .popular-grid-minimal { grid-template-columns: 1fr 1fr; gap: 8px; }
    .popular-card-minimal { aspect-ratio: 3/4; }

    /* ── Config buttons full width ── */
    .config-cta-btn { max-width: 100%; }

    /* ── Section label ── */
    .section-label { font-size: 0.6rem; letter-spacing: 0.25em; }

    /* ── View all link ── */
    .view-all-link { margin-top: 32px; }

    /* ── Mechanism section ── */
    .nh35-para-min { font-size: 0.82rem; max-width: 100%; }
}
