:root {
    --color-bg-dark: #0A0A0C;
    --color-text-light: #F2F4F7;
    --color-accent-red: #D32F2F;
    --color-accent-blue: #00E5FF;
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-display: 'Oswald', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    overflow: hidden; /* Hide body scroll, handle inside snap container */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Impeccable Craft-Floor: Browser Surfaces */
::selection {
    background-color: var(--color-accent-red);
    color: #FFF;
}

*:focus-visible {
    outline: 2px solid var(--color-accent-red);
    outline-offset: 2px;
}

/* Custom Scrollbar for the snap container */
.snap-container::-webkit-scrollbar {
    width: 0; /* Hide scrollbar for a cleaner look */
}

/* Main Container */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
}

/* Header / Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
    pointer-events: none; /* Let clicks pass through except on nav elements */
}

.brand-logo-wrapper {
    pointer-events: auto;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Polygonal Top Menu */
.nav-polygonal {
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%);
    padding: 0 3rem 0 4rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    pointer-events: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent-red);
}

.nav-link.active {
    color: var(--color-accent-red);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-red);
}

/* Snap Section */
.product-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image with Overlay */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Dark Gradient Overlay to ensure text readability */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(10, 10, 12, 0.95) 0%, 
        rgba(10, 10, 12, 0.5) 50%, 
        rgba(10, 10, 12, 0.8) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

/* Content Container */
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Content - Typography */
.text-content {
    flex: 1;
    position: relative;
}

.edition-tag {
    color: var(--color-accent-red);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: -1rem;
    display: block;
    position: relative;
    z-index: 11;
}

/* Huge Background Outline Text */
.bg-title-outline {
    font-family: var(--font-display);
    font-size: 15rem;
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    z-index: 0;
    white-space: nowrap;
    user-select: none;
}

/* Foreground Title */
.main-title {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin: 1rem 0 2rem 0;
    position: relative;
    z-index: 11;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.product-showcase {
    position: relative;
    z-index: 11;
    margin: -1rem 0 2rem 0;
}

.product-thumb {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 11;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-highlight {
    background: var(--color-accent-red);
    border-color: var(--color-accent-red);
    color: white;
}

/* Right Content - Stats */
.stats-panel {
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 2px solid var(--color-accent-red);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-right: 4rem; /* leave space for dots */
    min-width: 250px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-value span {
    font-size: 1rem;
    color: var(--color-accent-red);
}

.stat-label {
    font-size: 0.8rem;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.btn-primary {
    background-color: var(--color-accent-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.stat-value-sm {
    font-size: 1.6rem;
}

.stats-note {
    max-width: 260px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #C8CCD2;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
}

.btn-whatsapp svg {
    width: 1.3rem;
    height: 1.3rem;
    flex-shrink: 0;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.1rem 2.2rem;
    margin-top: 2rem;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    height: 60px;
    padding: 0 1.2rem 0 1rem;
    border-radius: 999px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    background-color: #1EBE5A;
    transform: translateY(-3px);
}

/* Contact section */
.contact-section {
    background: radial-gradient(circle at 20% 30%, rgba(211, 47, 47, 0.18), transparent 55%), var(--color-bg-dark);
    flex-direction: column;
    justify-content: center;
}

.contact-lead {
    max-width: 520px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #C8CCD2;
    position: relative;
    z-index: 11;
}

.contact-meta {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A0A0A0;
}

.catalog-panel {
    max-width: 380px;
}

.catalog-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.catalog-chip {
    color: var(--color-text-light);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.2s, color 0.2s;
}

.catalog-chip:hover {
    border-color: var(--color-accent-red);
    color: var(--color-accent-red);
}

.disclaimer {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #8A8F96;
}

.main-title a {
    color: inherit;
    text-decoration: none;
}

a.product-showcase {
    display: block;
}

.btn-link {
    color: var(--color-text-light);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-link:hover {
    color: var(--color-accent-red);
    border-color: var(--color-accent-red);
}

/* Info + FAQ section */
.info-section {
    background: var(--color-bg-dark);
}

.info-wrapper {
    align-items: flex-start;
    gap: 4rem;
}

.info-text p {
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #C8CCD2;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 11;
}

.faq {
    flex: 1;
    max-width: 560px;
    margin-right: 4rem;
}

.faq-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A0A0A0;
    margin-bottom: 1rem;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 2rem 1rem 0;
    font-weight: 600;
    position: relative;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent-red);
    font-size: 1.4rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 0 1.1rem;
    line-height: 1.65;
    color: #C8CCD2;
}

/* ---------- Internal pages ---------- */
body.page {
    overflow: auto;
}

body.page header {
    background-color: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 110px 4rem 4rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.85rem;
    color: #8A8F96;
    margin-bottom: 2rem;
}

.breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    color: #555;
}

.breadcrumb a {
    color: #C8CCD2;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-accent-red);
}

.page-intro {
    max-width: 720px;
    margin-bottom: 3rem;
}

.page-intro p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #C8CCD2;
    margin-bottom: 1.5rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin: 0.5rem 0 1.25rem;
}

.page-note {
    color: #8A8F96;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.model-group {
    margin-top: 3.5rem;
}

.model-group h2,
.product-block h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.model-group h2 span {
    color: var(--color-accent-red);
    font-size: 1rem;
    vertical-align: super;
}

.model-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.model-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--color-text-light);
    text-decoration: none;
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s, transform 0.2s;
}

.model-card a:hover {
    border-color: var(--color-accent-red);
    transform: translateY(-3px);
}

.model-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.model-card-cat {
    padding: 0.9rem 1rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-red);
    font-weight: 600;
}

.model-card-name {
    padding: 0.2rem 1rem 1rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
}

/* Product page */
.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.product-hero-img {
    margin: 0;
}

.product-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.product-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #C8CCD2;
}

.product-hero-info .badges {
    flex-wrap: wrap;
}

.product-block {
    margin-top: 4rem;
    max-width: 900px;
}

.product-block > p {
    line-height: 1.7;
    color: #C8CCD2;
    margin-bottom: 1rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    border-left: 2px solid var(--color-accent-red);
    background: #121216;
}

.spec-table th,
.spec-table td {
    text-align: left;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.spec-table th {
    font-weight: 400;
    color: #A0A0A0;
    width: 45%;
}

.spec-table td {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.03em;
}

.gallery {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery a:hover img {
    transform: scale(1.04);
}

.product-hero-img a {
    display: block;
    cursor: zoom-in;
}

.gallery a {
    cursor: zoom-in;
}

/* Photo lightbox */
.lightbox {
    width: 100vw;
    height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(5, 5, 7, 0.96);
    color: var(--color-text-light);
    overscroll-behavior: contain;
}

.lightbox::backdrop {
    background: rgba(5, 5, 7, 0.9);
}

.lightbox-figure {
    height: 100%;
    margin: 0;
    padding: 4rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.lightbox-img {
    max-width: 100%;
    max-height: calc(100dvh - 8rem);
    object-fit: contain;
    border-radius: 6px;
    user-select: none;
}

.lightbox-caption {
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    color: #A0A0A0;
}

.lightbox-btn {
    position: absolute;
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.7);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.lightbox-btn:hover {
    background: var(--color-accent-red);
    border-color: var(--color-accent-red);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

@media (max-width: 640px) {
    .lightbox-figure { padding: 4rem 0.75rem 5.5rem; }
    .lightbox-img { max-height: calc(100dvh - 10rem); }
    .lightbox-prev, .lightbox-next { top: auto; bottom: 1.25rem; transform: none; }
    .lightbox-prev { left: 1.25rem; }
    .lightbox-next { right: 1.25rem; }
    .lightbox-caption { position: absolute; bottom: 2.1rem; left: 0; right: 0; text-align: center; }
}

.benefits {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.benefits li {
    line-height: 1.6;
    color: #C8CCD2;
    padding-left: 1.25rem;
    border-left: 2px solid rgba(211, 47, 47, 0.6);
}

.benefits strong {
    color: var(--color-text-light);
}

.page-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 4rem 6rem;
    background: #070709;
}

.page-footer-inner {
    max-width: 1300px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
}

.page-footer p {
    color: #8A8F96;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.page-footer a {
    color: #C8CCD2;
    text-decoration: none;
}

.page-footer a:hover {
    color: var(--color-accent-red);
}

.page-footer h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.page-footer ul {
    list-style: none;
    columns: 2;
    column-gap: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.9;
}

.page-footer .disclaimer {
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .info-wrapper { gap: 2.5rem; }
    .faq { margin-right: 0; width: 100%; max-width: 600px; }
    .page-main { padding: 95px 2rem 3rem; }
    .product-hero { grid-template-columns: 1fr; gap: 2rem; }
    .page-footer { padding: 2.5rem 2rem 6rem; }
    .page-footer-inner { grid-template-columns: 1fr 1fr; }
    .page-footer-inner > div { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .page-main { padding: 90px 1.25rem 2.5rem; }
    .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
    .model-card-name { font-size: 1.1rem; padding: 0.2rem 0.75rem 0.8rem; }
    .model-card-cat { padding: 0.7rem 0.75rem 0; font-size: 0.65rem; }
    .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .spec-table th, .spec-table td { padding: 0.75rem 0.9rem; }
    .page-footer { padding: 2rem 1.25rem 6rem; }
    .page-footer-inner { grid-template-columns: 1fr; }
    .nav-polygonal { gap: 0.9rem; }
    .brand-logo { height: 30px; width: auto; }
}

.site-footer {
    position: absolute;
    bottom: 1.5rem;
    left: 4rem;
    font-size: 0.8rem;
    color: #6E737A;
    z-index: 10;
}

/* Vertical Dots Navigation */
.vertical-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 100;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.vertical-dots::-webkit-scrollbar {
    width: 0;
}

.dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.dot::after {
    content: attr(data-title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.dot:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

.dot.active {
    background-color: var(--color-accent-red);
    transform: scale(1.3);
}

.dot.active::after {
    opacity: 1;
    color: var(--color-accent-red);
    transform: translateY(-50%) translateX(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    header {
        background-color: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        height: 70px;
        padding: 0 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-logo {
        height: 35px;
    }
    .product-section {
        padding-top: 70px; /* Push content down to avoid header overlap */
    }
    .bg-title-outline { font-size: 8rem; left: 5%; top: 40%; }
    .main-title { font-size: 3.5rem; }
    .content-wrapper { flex-direction: column; align-items: flex-start; justify-content: center; gap: 2rem; padding: 0 2rem; }
    .product-thumb { max-width: 100%; }
    .stats-panel { margin-right: 0; flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 1rem; border-left: none; border-top: 2px solid var(--color-accent-red); width: 100%; max-width: 600px; padding: 1.5rem 1rem; }
    .nav-polygonal { clip-path: none; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; padding: 0; gap: 1.1rem; }
    .nav-link { font-size: 0.85rem; }
    
    /* Option B: Horizontal dots at the bottom for mobile */
    .vertical-dots { 
        display: flex; 
        flex-direction: row; 
        top: auto; 
        bottom: 1.5rem; 
        right: 0; 
        left: 50%; 
        transform: translateX(-50%); 
        width: 100%; 
        justify-content: center; 
        gap: 0.75rem; 
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    .vertical-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Position the tooltip above the dot on mobile instead of the side */
    .vertical-dots .dot::after {
        right: auto;
        left: 50%;
        top: -35px;
        transform: translateX(-50%);
        font-size: 0.75rem;
    }

    /* Content is taller than the screen on phones/tablets: let sections grow */
    .snap-container { height: 100dvh; scroll-snap-type: y proximity; }
    .product-section { height: auto; min-height: 100dvh; padding-bottom: 6rem; }
    .text-content { width: 100%; }
    .bg-overlay { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10, 10, 12, 0.82); }
    .bg-title-outline { display: none; }
    .edition-tag { margin-bottom: 0; }
    .main-title { margin: 0.5rem 0 1.25rem; }
    .product-showcase { margin: 0 0 1rem; }
    .badges { margin-top: 1rem; }
    .stats-panel .btn-primary { width: 100%; }
    .stat-item { min-width: 40%; }
    .stats-note { max-width: none; }
    .vertical-dots { display: none; }
    .site-footer { left: 2rem; bottom: 1rem; }
}

@media (max-width: 640px) {
    .content-wrapper { padding: 0 1.25rem; gap: 1.25rem; }
    .main-title { font-size: 2.75rem; }
    .stat-value { font-size: 2rem; }
    .stat-value-sm { font-size: 1.3rem; }
    .btn-large { width: 100%; font-size: 1.1rem; }
    .whatsapp-float { right: 1rem; height: 56px; padding: 0 0.75rem; }
    .whatsapp-float-label { display: none; }
    .site-footer { left: 1.25rem; }
}
