/* ============================================================
   OFFCLOCK STORE — DARK LUXURY THEME
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --card: #161616;
    --card2: #1e1e1e;
    --border: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
    --gray: #666;
    --gray2: #999;
    --accent: #c9a84c;
    --font: 'Inter', sans-serif;
    --hero-h: calc(100svh - 56px);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

img {
    display: block;
}

/* ══════════════════════════════════════════
   TOP BANNER
══════════════════════════════════════════ */
.top-banner {
    background: var(--accent);
    color: #000;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 56px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.locale-controls {
    position: relative;
}

.locale-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    padding: 0 9px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--gray2);
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font);
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.locale-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.locale-btn-globe {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.7;
}

.locale-btn:hover .locale-btn-globe {
    opacity: 1;
}

.locale-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 200px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.locale-dropdown.open {
    display: flex;
}

.locale-dropdown-heading {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

.locale-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.locale-option {
    height: 26px;
    padding: 0 9px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray2);
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.15s;
}

.locale-option:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.locale-option.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 168, 76, 0.1);
}

.nav-center {
    display: flex;
    align-items: center;
}

.nav-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.2s;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

.nav-shop-link,
.nav-collection-btn {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    transition: background 0.15s, border-color 0.15s;
}

.nav-collection-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.nav-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════
   HERO — Desktop (full-screen slider)
══════════════════════════════════════════ */
.hero {
    position: relative;
    height: var(--hero-h);
    min-height: 520px;
    overflow: hidden;
    background: #000;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Image */
.hero-image-placeholder {
    flex: 1;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 16px;
}

.hero-image-product {
    flex: 1;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Collar rojo photo has more whitespace — compensate with scale */
.hero-slide[data-product="collar-rojo"] .hero-product-img {
    transform: scale(1.25);
}

/* Gradient overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(0, 0, 0, 0.7) 80%,
            rgba(0, 0, 0, 0.92) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Badge */
.hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-new {
    background: var(--accent);
    color: #000;
}

.badge-soldout {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
}

.badge-newcolor {
    background: var(--accent);
    color: #000;
}

/* Title */
.hero-bottom-text {
    position: absolute;
    bottom: 110px;
    left: 24px;
    z-index: 5;
}

.hero-title {
    font-size: clamp(44px, 9vw, 100px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 0.92;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    letter-spacing: 0.01em;
}

/* Product card */
.hero-product-card {
    position: absolute;
    bottom: 56px;
    right: 24px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hero-product-card .product-card-info {
    text-align: right;
}

.product-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.product-card-brand {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.product-card-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.hero-shop-btn {
    background: var(--accent);
    color: #000;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.hero-shop-btn:hover {
    opacity: 0.85;
}

/* Progress bar */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    padding: 10px 20px;
    gap: 2px;
}

.progress-track {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
}

.progress-num {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    min-width: 18px;
}

.progress-track.active-track .progress-num {
    color: var(--white);
}

.progress-fill {
    flex: 1;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.progress-fill::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 1px;
    transition: width linear;
}

.progress-track.animating .progress-fill::after {
    width: 100%;
}

.progress-track.done .progress-fill::after {
    width: 100%;
}

.progress-pause-btn {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
    flex-shrink: 0;
}

/* ── HERO MOBILE ── */
@media (max-width: 600px) {
    .hero {
        height: auto;
        min-height: unset;
        overflow: hidden;
    }

    .hero-slides-wrapper {
        position: static;
        height: auto;
    }

    .hero-slide {
        position: static;
        opacity: 1;
        display: none;
        transition: none;
        flex-direction: column;
    }

    .hero-slide::after {
        display: none;
    }

    .hero-slide.active {
        display: flex;
        z-index: auto;
    }

    .hero-image-product,
    .hero-image-placeholder {
        flex: 0 0 300px;
        height: 300px;
        width: 100%;
        background: #0d0d0d;
    }

    .hero-product-img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .hero-badge {
        position: static;
        display: inline-block;
        align-self: flex-start;
        margin: 12px 0 0 16px;
        width: fit-content;
    }

    .hero-bottom-text {
        position: static;
        padding: 12px 16px 4px;
    }

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

    .hero-subtitle {
        color: var(--gray2);
    }

    .hero-product-card {
        position: static;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 16px 16px;
    }

    .hero-product-card .product-card-info {
        text-align: left;
        flex: 1;
    }

    .hero-shop-btn {
        border-radius: 10px;
    }

    .hero-progress-bar {
        position: static;
        padding: 10px 16px;
    }
}

/* ══════════════════════════════════════════
   SECTION BLOCK
══════════════════════════════════════════ */
.section-block {
    padding: 48px 0 32px;
    background: var(--bg);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.section-header .section-title {
    padding: 0;
    margin-bottom: 0;
}

/* ══════════════════════════════════════════
   TOP 10 / CATALOG CAROUSEL
══════════════════════════════════════════ */
.top10-track-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

.top10-track-wrapper::-webkit-scrollbar {
    display: none;
}

.top10-track {
    display: flex;
    gap: 1px;
}

.top10-item {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: start;
    background: var(--card);
    border-right: 1px solid var(--border);
    padding-bottom: 16px;
    position: relative;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.top10-item:hover {
    background: var(--card2);
}

@media (min-width: 700px) {
    .top10-item {
        flex: 0 0 calc(25%);
        max-width: unset;
    }
}

.top10-rank {
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    padding: 8px 16px 0;
    letter-spacing: -0.05em;
    user-select: none;
}

/* Product images in cards */
.top10-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
}

.top10-img-product {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.top10-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s ease;
}

.top10-item:hover .top10-product-img {
    transform: scale(1.05);
}

.top10-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 0;
}

.item-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.item-brand {
    font-size: 10px;
    color: var(--gray);
}

.item-brand a {
    color: inherit;
}

.item-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 2px;
}

/* Badge small */
.badge.small {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Arrow buttons */
.section-nav-arrows {
    display: flex;
    gap: 6px;
}

.arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Thumbnails strip (top10 nav) */
.thumbnails-strip {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 16px 20px 8px;
}

.thumb {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background 0.2s;
}

.thumb.active {
    background: var(--accent);
    width: 20px;
}

/* See All button */
.see-all-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 16px 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    text-align: center;
    transition: background 0.2s;
}

.see-all-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ══════════════════════════════════════════
   CLASSIC STYLES GRID
══════════════════════════════════════════ */
.classic-grid-wrapper {
    overflow: hidden;
}

.classic-grid-page {
    display: none;
}

.classic-grid-page.active {
    display: block;
}

.classic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--border);
}

.classic-cell {
    background: var(--card);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s;
}

.classic-cell:hover {
    background: var(--card2);
}

.classic-cell.large {
    grid-row: span 2;
}

.classic-cell.large .cell-img-product {
    aspect-ratio: 1 / 1.75;
}

.cell-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
}

.cell-img-product {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cell-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.classic-cell:hover .cell-product-img {
    transform: scale(1.04);
}

.classic-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
}

/* Dots */
.dots-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════
   BRAND SECTION
══════════════════════════════════════════ */
.brand-section {
    background: var(--bg2);
    overflow: hidden;
}

.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}

.brand-img-wrap {
    overflow: hidden;
    aspect-ratio: 1;
}

.brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-img-wrap:hover .brand-img {
    transform: scale(1.04);
}

.brand-text {
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    background: var(--bg2);
}

.brand-text--dark {
    background: #0d0d0d;
}

.brand-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
}

.brand-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--white);
}

.brand-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray2);
}

@media (max-width: 700px) {
    .brand-text {
        padding: 32px 20px;
    }
}

/* ══════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════ */
.reviews-section {
    padding: 48px 0 40px;
    background: var(--bg);
    overflow: hidden;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 24px;
}

.reviews-header .section-title {
    padding: 0;
    margin-bottom: 0;
}

.reviews-track-wrapper {
    overflow: hidden;
    padding-left: 20px;
}

.reviews-track {
    display: flex;
    gap: 14px;
    transition: transform 0.4s ease;
    padding-right: 20px;
}

.review-card {
    flex: 0 0 280px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.review-body {
    padding: 14px 16px 18px;
}

.review-stars {
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 8px;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.review-product-tag {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray2);
}

@media (min-width: 700px) {
    .review-card {
        flex: 0 0 320px;
    }
}

/* ============================================================
   REVIEW MODAL
   ============================================================ */
.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.review-modal.open {
    opacity: 1;
    pointer-events: all;
}

.review-modal-card {
    width: min(720px, 100%);
    max-height: 88vh;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-modal-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.review-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.review-modal-body {
    padding: 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.review-modal-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 8px;
}

.review-modal-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.review-modal-product {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.review-modal-text {
    font-size: 15px;
    line-height: 1.8;
    color: #c7c7c7;
}

.review-modal-image {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #0b0b0b;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: #000;
    color: var(--white);
    padding: 48px 20px 36px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.logo-symbol {
    font-size: 22px;
    line-height: 1;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.placeholder-icon {
    background: #222;
    color: #777;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.product-brand-icon,
.brand-icon {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.product-brand-icon {
    width: 48px;
    height: 48px;
    font-size: 12px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    font-size: 10px;
}

.brand-icon.small {
    width: 32px;
    height: 32px;
    font-size: 9px;
}

/* Link reset in product cards */
.top10-item,
.classic-cell {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

/* Minimum touch target size for interactive elements */
@media (max-width: 700px) {
    .arrow-btn,
    .progress-pause-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .progress-track {
        padding: 10px 4px;
    }

    /* Reviews: single card on small mobile */
    .review-card {
        flex: 0 0 calc(85vw);
        max-width: 320px;
    }

    /* Footer links: better spacing on mobile */
    .footer-links {
        gap: 16px 24px;
    }

    .footer-links a {
        font-size: 14px;
        padding: 4px 0;
    }

    /* Section title padding fix on mobile */
    .section-title {
        font-size: 18px;
    }

    /* See-all button: full width & large touch target */
    .see-all-btn {
        padding: 18px;
        font-size: 16px;
    }

    /* Classic grid: equal-height cells on mobile */
    .classic-cell .cell-img-product {
        aspect-ratio: 1 / 0.9;
    }

    /* Thumbnails strip: bigger touch targets */
    .thumb {
        width: 28px;
        height: 6px;
        border-radius: 3px;
    }

    .thumb.active {
        width: 28px;
    }

    /* Dots: bigger touch targets */
    .dot {
        width: 10px;
        height: 10px;
        padding: 6px;
        box-sizing: content-box;
    }
}

/* Prevent horizontal overflow on all pages */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================================================
   REVIEWS RATING SUMMARY
   ============================================================ */
.reviews-header-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-rating-stars {
    font-size: 20px;
    color: var(--accent);
    letter-spacing: 2px;
    position: relative;
}

.reviews-rating-stars .star-half {
    opacity: 0.35;
}

.reviews-rating-score {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.reviews-rating-count {
    font-size: 13px;
    color: var(--gray2);
    font-weight: 400;
}

/* ============================================================
   FLOATING REVIEW POPUP
   ============================================================ */
.review-popup {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-120%);
    z-index: 9999;
    background: var(--card2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 12px 14px;
    max-width: 220px;
    width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.review-popup.show {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.review-popup-stars {
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.review-popup-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.review-popup-product {
    font-size: 10px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-popup-text {
    font-size: 11px;
    color: var(--gray2);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 480px) {
    .review-popup {
        max-width: 180px;
        width: 180px;
        left: 10px;
    }
}