@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;600;700&display=swap');


html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --top-banner-height: 34px;
    --header-height: 56px;
    --header-trust-height: 28px;
    --site-header-offset: calc(var(--top-banner-height) + var(--header-height) + var(--header-trust-height));
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
    padding-top: var(--site-header-offset);
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

/* Barra fixa inferior — checkout */
.sticky-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    min-height: 72px;
}

.sticky-checkout__info {
    flex: 1;
    min-width: 0;
}

.sticky-checkout__name {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
}

.sticky-checkout__meta {
    font-size: 13px;
    color: #fc5904;
    font-weight: 600;
    margin: 0;
    line-height: 1.25;
}

.sticky-checkout__btn {
    flex-shrink: 0;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff7a2e 0%, #fc5904 55%, #e04d03 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(252, 89, 4, 0.32);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.sticky-checkout__btn:active {
    transform: scale(0.98);
    filter: brightness(0.97);
    box-shadow: 0 2px 8px rgba(252, 89, 4, 0.28);
}

/* Vídeo flutuante inferior */
.floating-video {
    position: fixed;
    left: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px) + 10px);
    z-index: 998;
    width: 84px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-video.is-hidden,
.floating-video.is-scroll-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.floating-video__card {
    display: block;
    width: 100%;
    padding: 0;
    border: 1.5px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    position: relative;
    aspect-ratio: 9 / 16;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-video__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.floating-video__card:active {
    transform: scale(0.98);
}

.floating-video__preview {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.floating-video__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
    color: #fff;
    pointer-events: none;
}

.floating-video__play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(252, 89, 4, 0.92);
    box-shadow: 0 4px 12px rgba(252, 89, 4, 0.4);
}

.floating-video__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Modal do vídeo */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.video-modal[hidden] {
    display: none;
}

.video-modal:not([hidden]) .video-modal__backdrop {
    animation: videoModalFadeIn 0.22s ease forwards;
}

.video-modal:not([hidden]) .video-modal__panel {
    animation: videoModalSlideIn 0.26s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes videoModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes videoModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.video-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 380px);
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal__stage {
    position: relative;
    background: #000;
    aspect-ratio: 9 / 16;
    max-height: min(82vh, 680px);
    overflow: hidden;
    border-radius: 14px;
}

.video-modal__player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal__close:hover {
    background: rgba(0, 0, 0, 0.72);
}

.video-modal__close:active {
    transform: scale(0.94);
}

.video-modal__play-btn {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.video-modal__play-btn:hover {
    background: rgba(0, 0, 0, 0.72);
}

.video-modal__play-btn:active {
    transform: scale(0.94);
}

.video-modal__play-btn .video-modal__icon-play,
.video-modal__stage.is-paused .video-modal__play-btn .video-modal__icon-pause,
.video-modal__stage.is-ended .video-modal__play-btn .video-modal__icon-pause {
    display: none;
}

.video-modal__stage.is-paused .video-modal__play-btn .video-modal__icon-play,
.video-modal__stage.is-ended .video-modal__play-btn .video-modal__icon-play,
.video-modal__play-btn .video-modal__icon-pause {
    display: block;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #ff7a2e 0%, #fc5904 50%, #e04d03 100%);
    color: #ffffff;
    height: var(--top-banner-height);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-sizing: border-box;
    border-bottom: 1px solid #e04d03;
}

.top-banner__marquee {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.top-banner__track {
    display: flex;
    width: max-content;
    animation: top-banner-scroll 22s linear infinite;
    will-change: transform;
}

.top-banner__group {
    display: inline-flex;
    align-items: center;
    gap: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
    flex-shrink: 0;
}

.top-banner__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(10px, 2.8vw, 12px);
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    color: #ffffff;
}

.top-banner__icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.95);
}

.top-banner__sep {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    flex-shrink: 0;
}

@keyframes top-banner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .top-banner__track {
        animation: none;
        margin: 0 auto;
    }

    .top-banner__group:last-child {
        display: none;
    }
}

/* Header */
.header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: var(--header-height);
    position: fixed;
    top: var(--top-banner-height);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    border-bottom: 1px solid #e8e8e8;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e8e8e8;
}

.header-trust-bar {
    position: fixed;
    top: calc(var(--top-banner-height) + var(--header-height));
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 28px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.02em;
    box-sizing: border-box;
}

.header-trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header-trust-bar__item svg {
    color: #00a650;
}

.header-trust-bar__sep {
    color: #ccc;
    font-size: 10px;
}

.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.header-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #333333;
    transition: background 0.18s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.header-btn:hover, .header-btn:active {
    background: rgba(0, 0, 0, 0.06);
}

.menu-icon, .search-icon, .user-icon, .cart-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    color: #333333;
    flex-shrink: 0;
}

.cart-wrapper {
    position: relative;
    display: inline-block;
}

.cart-icon {
    display: block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF0000;
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
}

.logo-img {
    height: 26px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #f5f5f5;
    padding: 0 16px;
    min-height: 44px;
    font-size: 12px;
    color: #666666;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
}

.breadcrumbs,
.breadcrumbs-inner,
.breadcrumbs-inner span,
.breadcrumbs .home-icon {
    color: #666666;
}

.breadcrumbs .home-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    flex-shrink: 0;
}

/* Official Store Card */
.official-store-card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 12px 2px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ffd4b8;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.official-store-card__logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff4ed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.official-store-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.official-store-card__info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.official-store-card__label {
    font-size: 10px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.official-store-card__name {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.official-store-card__badge {
    flex-shrink: 0;
}

.store-logo {
    background-color: #000000;
    color: #ffffff;
    padding: 2px 6px;
    font-weight: bold;
    font-size: 10px;
    border-radius: 2px;
}

.checkmark {
    color: #000000;
    flex-shrink: 0;
}

/* Product Status */
.product-status {
    padding: 3px 12px 5px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.new-badge {
    background-color: #000000;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
}

.sold-badge {
    color: #666666;
    font-size: 11px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #000000;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1;
}

.rating-value {
    font-weight: bold;
    font-size: 12px;
}

.rating-count {
    color: #666666;
    font-size: 11px;
}

/* Product Title */
.product-title {
    padding: 5px 16px 4px;
    margin-top: 4px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
    color: #000000;
}

/* Product Images */
.product-images {
    padding: 8px 16px 16px;
}

/* Flash Offer Card - responsivo em todas as telas */
.flash-offer-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin: 0 16px 16px;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #000000;
    box-shadow: 0 2px 8px rgba(9, 27, 62, 0.35);
    box-sizing: border-box;
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
}

.flash-offer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.flash-offer-label {
    font-size: clamp(11px, 3.5vw, 15px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.flash-offer-encerra {
    font-size: clamp(10px, 2.8vw, 12px);
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.flash-timer-boxes {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.flash-timer-box {
    background: #ffffff;
    border-radius: 4px;
    padding: 4px clamp(5px, 1.5vw, 8px);
    min-width: 26px;
    width: clamp(26px, 8vw, 36px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flash-timer-box span {
    font-size: clamp(11px, 3.2vw, 15px);
    font-weight: 700;
    color: #1a1a1a;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.flash-timer-sep {
    font-size: clamp(11px, 3.2vw, 15px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

/* Faixa compacta — preço (estilo print / marketplace) */
.price-strip {
    margin: 0 0 4px;
    background: #fff;
    padding: 8px 16px 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.price-strip__top-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c05e00;
    background: #fff4e5;
    border: 1px solid #f5c07a;
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.price-strip__head {
    margin-bottom: 10px;
}

.price-strip__price-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-strip__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    line-height: 1;
}

.price-strip__stars {
    font-size: 11px;
    letter-spacing: 1px;
    color: #f5a623;
}

.price-strip__rating-score {
    font-size: 12px;
    font-weight: 700;
    color: #333;
}

.price-strip__rating-count {
    font-size: 11px;
    font-weight: 400;
    color: #888;
}

.price-strip__old {
    margin: 0;
    padding: 0;
    font-size: 11px;
    color: #999;
    line-height: 1.2;
}

.price-strip__old s {
    text-decoration-thickness: 1px;
}

.price-strip__main-row {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.price-strip__sale {
    font-size: clamp(24px, 7vw, 29px);
    font-weight: 900;
    color: #00a650;
    letter-spacing: -0.03em;
}

.price-strip__badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #00a650, #007d3c);
    padding: 3px 9px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,166,80,0.3);
}

.price-strip__saving {
    font-size: 11px;
    font-weight: 600;
    color: #00843d;
    margin: 3px 0 0;
    padding: 0;
}

.price-strip__installment-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7f7f7;
    border-radius: 9px;
    padding: 9px 12px;
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
}

.price-strip__installment-box strong {
    font-weight: 700;
    color: #111;
}

.stock-urgency {
    margin: 10px 0 12px;
    text-align: center;
}

.stock-urgency__text {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: #555;
}

.stock-urgency__count {
    font-weight: 700;
    color: #b91c1c;
}

.stock-urgency__bar {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: #e8e8e8;
    overflow: hidden;
}

.stock-urgency__fill {
    display: block;
    width: 28%;
    height: 100%;
    border-radius: 999px;
    background: #b91c1c;
}

.price-strip__info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(180deg, #fafbfc 0%, #f5f6f8 100%);
    border: 1px solid #eceef2;
    border-radius: 10px;
}

.price-strip__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-strip__info-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-strip__info-icon--stock {
    background: #e8f8ef;
}

.price-strip__info-icon--shipping {
    background: #fff4ed;
    color: #fc5904;
}

.price-strip__info-copy {
    font-size: 12px;
    line-height: 1.35;
    color: #5a6478;
    font-weight: 500;
}

.price-strip__info-copy strong {
    font-weight: 700;
    color: #152238;
}

.price-strip__info-item--stock .price-strip__info-copy {
    color: #3d5a4a;
}

.price-strip__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00a650;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(0, 166, 80, 0.18);
    animation: price-strip-dot-pulse 2s ease-in-out infinite;
}

@keyframes price-strip-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(0, 166, 80, 0.18); }
    50% { box-shadow: 0 0 0 5px rgba(0, 166, 80, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
    .price-strip__dot {
        animation: none;
    }
}

/* Card brinde */
.bonus-gift {
    margin: 0 16px 12px;
}

.bonus-gift__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid #ebebeb;
    border-left: 3px solid #00a650;
    border-radius: 9px;
}

.bonus-gift__img {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 7px;
    object-fit: cover;
    display: block;
}

.bonus-gift__text {
    flex: 1;
    min-width: 0;
}

.bonus-gift__hook {
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: #555;
}

.bonus-gift__name {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: #222;
}

.bonus-gift__label {
    display: inline-block;
    margin-right: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #00a650;
}

/* Popup brinde */
.gift-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
}

.gift-popup[hidden] {
    display: none;
}

.gift-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 10, 8, 0.62);
    backdrop-filter: blur(4px);
    animation: gift-popup-fade 0.35s ease;
}

.gift-popup__dialog {
    position: relative;
    width: 100%;
    max-width: 300px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    animation: gift-popup-in 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gift-popup-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes gift-popup-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gift-popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #b34303;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(252, 89, 4, 0.12);
    transition: background 0.2s, transform 0.15s;
}

.gift-popup__close:hover {
    background: #fff;
    transform: scale(1.04);
}

.gift-popup__hero {
    position: relative;
    padding: 10px 10px 12px;
    overflow: hidden;
}

.gift-popup__hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.gift-popup__hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.4) 0%, transparent 55%),
        linear-gradient(145deg, #e04d03 0%, #fc5904 45%, #d94a03 100%);
}

.gift-popup__hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(252, 89, 4, 0.08) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.35;
}

.gift-popup__ribbon {
    display: block;
    margin: 0;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b34303;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(252, 89, 4, 0.15);
    border-radius: 999px;
    text-align: center;
}

.gift-popup__img-wrap {
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gift-popup__img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 180px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.gift-popup__free-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 9px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: #00a650;
    border: 2px solid #fff;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 166, 80, 0.45);
}

.gift-popup__body {
    padding: 14px 16px 14px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.gift-popup__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.gift-popup__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b34303;
    background: #fff4ed;
    border: 1px solid #ffd4b8;
    border-radius: 999px;
}

.gift-popup__tag--accent {
    color: #b34303;
    background: #fff8f3;
    border-color: #fc5904;
}

.gift-popup__title {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.15;
    color: #b34303;
}

.gift-popup__lead {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.gift-popup__product {
    margin-bottom: 12px;
    padding: 10px 12px;
    text-align: left;
    background: #fff;
    border: 1px solid #ffd4b8;
    border-left: 3px solid #fc5904;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(252, 89, 4, 0.15);
}

.gift-popup__product-name {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.gift-popup__note {
    margin: 0 0 12px;
    font-size: 10.5px;
    line-height: 1.45;
    color: #cc6600;
}

.gift-popup__btn {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 9px;
    background: linear-gradient(180deg, #ff7a2e 0%, #fc5904 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(252, 89, 4, 0.45);
    transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.gift-popup__btn:hover {
    filter: brightness(1.02);
    box-shadow: 0 8px 22px rgba(252, 89, 4, 0.55);
}

.gift-popup__btn:active {
    transform: scale(0.98);
}

.gift-popup__skip {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 6px;
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.gift-popup__skip:hover {
    color: #666;
}

.main-image-carousel {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: grab;
    user-select: none;
}

.main-image-carousel:active {
    cursor: grabbing;
}

.product-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.product-carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.product-carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    pointer-events: none;
}

.image-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.thumbnail {
    min-width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.thumbnail.active {
    border-color: #000000;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Mobile */
.product-info-mobile {
    padding: 10px 12px;
    background-color: #F5F5F5;
    margin: 12px;
    border-radius: 6px;
    border: 1px solid #E0E0E0;
}

.product-ref {
    font-size: 10px;
    color: #666666;
    margin-bottom: 2px;
}

.product-brand {
    font-size: 12px;
    color: #000000;
    margin-bottom: 4px;
    font-weight: bold;
}

.rating-mobile {
    margin-bottom: 6px;
}

.stars-full {
    color: #000000;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}

.discount-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.discount-badge {
    background-color: #000000;
    color: #ffffff;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: 900;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.free-shipping {
    background-color: #000000;
    color: #ffffff;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: 900;
    font-size: 10px;
    display: inline-block;
    overflow: hidden;
    max-width: 85px;
    vertical-align: middle;
}

.free-shipping-scroll {
    display: inline-flex;
    white-space: nowrap;
    animation: frete-marquee 65s linear infinite;
    will-change: transform;
}

.free-shipping-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 20px;
}

@keyframes frete-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.voltage-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.voltage-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.voltage-options {
    display: flex;
    gap: 8px;
}

.voltage-btn {
    padding: 6px 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.voltage-btn.active {
    border-color: #000000;
    color: #000000;
    background: #fff4ed;
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.original-price {
    text-decoration: line-through;
    color: #999999;
    font-size: 15px;
}

.current-price {
    font-size: 30px;
    font-weight: 900;
    color: #000000;
    line-height: 1.2;
}

.cash-discount {
    font-size: 10px;
    color: #666666;
}

.installments {
    font-size: 11px;
    color: #000000;
    margin-bottom: 6px;
}

.payment-methods a {
    color: #000000;
    text-decoration: none;
    font-size: 11px;
}

/* Related Products */
.related-products {
    padding: 16px;
    background-color: #ffffff;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.related-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.add-all {
    background-color: #000000;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #EEEEEE;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.related-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.related-info {
    flex: 1;
}

.related-title {
    font-size: 14px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-prices {
    display: flex;
    gap: 8px;
    align-items: center;
}

.related-original {
    text-decoration: line-through;
    color: #999999;
    font-size: 12px;
}

.related-current {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}

/* Quantity picker — container acima do botão */
.qty-picker {
    margin-bottom: 12px;
}

.qty-picker .qty-picker__list {
    gap: 8px;
}

.qty-picker .qty-picker__card {
    border: 1.5px solid #e8ebf0;
    border-radius: 10px;
    background: #ffffff;
}

.qty-picker .qty-picker__body {
    min-height: 48px;
    padding: 12px 14px;
    background: transparent;
}

.qty-picker .qty-picker__radio {
    border-color: #c8ced8;
}

.qty-picker .qty-picker__label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.qty-picker .qty-picker__price {
    font-size: 14px;
    font-weight: 700;
    color: #152238;
}

.qty-picker .qty-picker__label-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.qty-picker .qty-picker__discount {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #00a650;
    background: #e8f8ef;
    padding: 2px 7px;
    border-radius: 999px;
    line-height: 1.3;
    width: fit-content;
}

.qty-picker .qty-picker__input:checked + .qty-picker__card {
    border-color: #fc5904;
    box-shadow: 0 0 0 1px rgba(252, 89, 4, 0.15);
}

.qty-picker .qty-picker__input:checked + .qty-picker__card .qty-picker__body {
    background: #fff8f4;
}

.qty-picker .qty-picker__input:checked + .qty-picker__card .qty-picker__radio {
    border-color: #fc5904;
}

.qty-picker .qty-picker__input:checked + .qty-picker__card .qty-picker__radio::after {
    background: #fc5904;
}

.qty-picker .qty-picker__input:checked + .qty-picker__card .qty-picker__price {
    color: #fc5904;
}

.qty-picker .qty-picker__head {
    display: block;
    margin: 0;
    cursor: pointer;
}

.qty-picker .qty-picker__colors {
    display: none;
    padding: 8px 14px 10px;
    border-top: 1px solid rgba(252, 89, 4, 0.12);
    background: #fffaf7;
}

.qty-picker .qty-picker__option.is-selected .qty-picker__colors,
.qty-picker .qty-picker__option:has(.qty-picker__input:checked) .qty-picker__colors {
    display: block;
}

.qty-picker .qty-picker__color-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.qty-picker .qty-picker__color-row + .qty-picker__color-row {
    margin-top: 10px;
}

.qty-picker .qty-picker__color-row-label {
    flex: 0 0 auto;
    padding-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
}

.qty-picker .qty-picker__color-dots {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex: 0 0 auto;
}

.qty-picker .qty-picker__color-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.qty-picker .qty-picker__color-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.qty-picker .qty-picker__color-ball {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #d8dce3;
    overflow: hidden;
    background: #f0f0f0;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.qty-picker .qty-picker__color-ball img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qty-picker .qty-picker__color-dot:has(.qty-picker__color-input:checked) .qty-picker__color-ball {
    box-shadow: 0 0 0 1px #fc5904;
}

.qty-picker .qty-picker__color-name {
    display: block;
    max-width: 48px;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.15;
    color: #888;
    text-align: center;
}

.qty-picker .qty-picker__color-dot:has(.qty-picker__color-input:checked) .qty-picker__color-name {
    color: #fc5904;
}

/* Action Buttons */
.action-buttons {
    padding: 8px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-methods-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 8px;
    margin-top: 4px;
}

.payment-methods-strip img {
    height: 22px;
    width: auto;
    max-width: 52px;
    object-fit: contain;
    vertical-align: middle;
    opacity: 0.95;
}

@media (max-width: 360px) {
    .payment-methods-strip {
        gap: 5px 6px;
    }
    .payment-methods-strip img {
        height: 19px;
        max-width: 46px;
    }
}

.btn-buy-now-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(252, 89, 4, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-buy-now-wrap:active {
    transform: scale(0.985);
    box-shadow: 0 1px 6px rgba(252, 89, 4, 0.18);
}

.btn-buy-now {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #ffffff;
    background: linear-gradient(135deg, #ff7a2e 0%, #fc5904 55%, #e04d03 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: filter 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-buy-now__icon {
    flex-shrink: 0;
    opacity: 0.95;
}

.btn-buy-now__pix-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    background: #ffffff;
    border-top: 1px solid rgba(252, 89, 4, 0.1);
    font-size: 10px;
    font-weight: 600;
    color: #666666;
    line-height: 1;
    letter-spacing: 0.02em;
}

.btn-buy-now__pix-bar strong {
    font-weight: 700;
    color: #00a896;
}

.btn-buy-now__pix-icon {
    flex-shrink: 0;
    height: 13px;
    width: auto;
    object-fit: contain;
}

.btn-buy-now-wrap:hover .btn-buy-now {
    filter: brightness(1.03);
}

.btn-buy-now-wrap:hover {
    box-shadow: 0 3px 14px rgba(252, 89, 4, 0.28);
}

.btn-buy-now:active {
    transform: none;
    filter: brightness(0.97);
}

/* Delivery Info */
.trust-cards {
    padding: 4px 16px 16px;
    background: #fff;
}

.trust-cards__panel {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    background: #fafafa;
    overflow: hidden;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #ededed;
}

.trust-card:last-child {
    border-bottom: none;
}

.trust-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.trust-card__icon--delivery {
    color: #00a650;
    background: #e8f8ef;
    box-shadow: none;
}

.trust-card__icon--google {
    background: #fff;
    box-shadow: none;
}

.trust-card__icon--card {
    color: #fc5904;
    background: #fff4ed;
    box-shadow: none;
}

.trust-card__icon--mp {
    background: #e8f4fd;
    box-shadow: none;
}

.trust-card__mp-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.trust-card__body {
    flex: 1;
    min-width: 0;
}

.trust-card__title {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin: 0 0 2px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-card__verify-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.trust-card__sub {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.trust-card__badge--green {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #00a650;
    background: #e8f8ef;
    padding: 2px 8px;
    border-radius: 999px;
    margin: 0 0 5px;
}

.trust-card__title-alt {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 1.35;
}

.trust-card__title-alt strong {
    font-weight: 700;
}

.trust-card__timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.trust-card__timer svg {
    color: #fc5904;
    flex-shrink: 0;
}

.trust-card__timer strong {
    color: #fc5904;
    font-weight: 700;
}

.delivery-info {
    padding: 12px 16px 16px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    background: #fff;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.delivery-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.delivery-card__icon-wrap {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a7a3c;
}

.delivery-card__body {
    flex: 1;
    min-width: 0;
}

.delivery-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a7a3c;
    margin-bottom: 3px;
}

.delivery-card__badge--pickup {
    color: #555;
}

.delivery-card__title {
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 4px;
}

.delivery-card__title strong {
    font-weight: 700;
}

.delivery-card__timer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #777;
}

.delivery-card__timer svg {
    flex-shrink: 0;
    color: #999;
}

.delivery-card__countdown {
    font-weight: 700;
    color: #333;
}

.delivery-card__link {
    font-size: 11px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1px;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.delivery-card__link:hover {
    border-color: #111;
}

/* Product Banners */
.product-banners {
    margin: 24px 0;
}

.banner-led {
    position: relative;
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    padding: 40px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
}

.banner-led-image {
    flex: 1;
}

.banner-led-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.banner-led-text {
    color: #000000;
    font-size: 28px;
    font-weight: 900;
    text-align: right;
    flex: 1;
    text-transform: uppercase;
    line-height: 1.2;
}

.banner-product-code {
    position: absolute;
    bottom: 8px;
    right: 16px;
    color: #ffffff;
    font-size: 12px;
}

.banner-combo {
    background: linear-gradient(to bottom, #000000 50%, #000000 50%);
    padding: 24px 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-combo-left {
    flex: 1;
}

.banner-logo {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
}

.banner-combo-title {
    font-size: 14px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.banner-combo-note {
    font-size: 10px;
    color: #000000;
}

.banner-combo-right {
    flex: 1;
    text-align: right;
}

.banner-combo-right img {
    max-width: 150px;
    height: auto;
}

.banner-volt-logo {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    margin-top: 8px;
}

.banner-batteries {
    display: flex;
    gap: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: #F5F5F5;
}

.battery-panel, .charger-panel {
    flex: 1;
    text-align: center;
}

.battery-panel img,
.charger-panel img {
    width: 100%;
    max-width: 80px;
    height: auto;
    margin-bottom: 8px;
}

.battery-text, .charger-text {
    font-size: 10px;
    color: #000000;
    margin-bottom: 4px;
    line-height: 1.3;
}

.battery-logo, .charger-logos {
    font-size: 10px;
    font-weight: bold;
    color: #000000;
}

.banner-compact {
    background: linear-gradient(to right, #000000 50%, transparent 50%);
    padding: 40px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.banner-compact-left {
    flex: 1;
    z-index: 1;
}

.banner-compact-title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-top: 8px;
    line-height: 1.3;
}

.banner-volt-logo-compact {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    margin-top: 8px;
}

.banner-compact-right {
    flex: 1;
    text-align: right;
    position: relative;
}

.banner-compact-right img {
    max-width: 200px;
    height: auto;
}

.banner-product-code-compact {
    position: absolute;
    bottom: 8px;
    right: 16px;
    color: #ffffff;
    font-size: 12px;
}

/* Product Features */
.product-features {
    padding: 24px 16px;
    background-color: #ffffff;
}

.main-heading {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
}

.intro-text {
    font-size: 16px;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.6;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
}

.feature-item {
    margin-bottom: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* Product Image Section */
.product-image-section {
    padding: 0 16px 24px;
}

.product-image-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Product Description */
.product-description {
    padding: 32px 0 20px;
    background: linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
}

/* Descrição simples */
.simple-desc {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.simple-desc__title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0 0 18px;
    padding: 0;
    border: none;
    letter-spacing: -0.03em;
}

.simple-desc__card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(252, 89, 4, 0.38);
    border-radius: 16px;
    padding: 20px 20px 22px;
    margin-bottom: 0;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.simple-desc__card--hero {
    padding: 22px 22px 24px;
    border-color: rgba(252, 89, 4, 0.45);
}

.simple-desc__lead {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.simple-desc__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 560px) {
    .simple-desc__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.simple-desc__intro {
    font-size: 14px;
    color: #5c5c5c;
    line-height: 1.7;
    margin: 0 0 12px;
}

.simple-desc__intro:last-child {
    margin-bottom: 0;
}

.simple-desc__intro strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.45;
}

.simple-desc__block {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.simple-desc__subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0 0 14px;
    text-transform: none;
    letter-spacing: -0.01em;
}

.simple-desc__subtitle::before {
    content: '';
    flex-shrink: 0;
    width: 3px;
    height: 14px;
    border-radius: 2px;
    background: #fc5904;
}

.simple-desc__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-desc__list li {
    font-size: 13.5px;
    color: #555;
    line-height: 1.5;
    padding: 0;
    border-bottom: none;
    position: relative;
}

.simple-desc__list li strong {
    color: #111;
    font-weight: 600;
}

.simple-desc__list--accessories {
    display: grid;
    gap: 10px;
    padding-bottom: 2px;
}

.simple-desc__list--accessories li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(252, 89, 4, 0.22);
    border-radius: 10px;
}

.simple-desc__list--accessories li span {
    font-size: 12.5px;
    color: #777;
    line-height: 1.4;
}

.simple-desc__list--compact li {
    padding: 9px 0 9px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.simple-desc__list--compact li:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.simple-desc__list--compact li::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #bbb;
}

.product-description__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 18px;
}

.desc-section-header {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 28px);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.desc-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fc5904;
    background: rgba(252, 89, 4, 0.08);
    border: 1px solid rgba(252, 89, 4, 0.18);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.desc-title {
    font-size: clamp(1.35rem, 3.8vw, 1.65rem);
    font-weight: 800;
    color: #fc5904;
    margin: 0 0 8px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.desc-title-sub {
    font-size: 14px;
    line-height: 1.55;
    color: #6b6560;
    margin: 0;
    font-weight: 400;
}

.desc-hero {
    position: relative;
    border-radius: 16px;
    padding: 1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(9, 27, 62, 0.18), rgba(9, 27, 62, 0.05));
    box-shadow:
        0 4px 24px rgba(9, 27, 62, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.desc-hero__inner {
    background: linear-gradient(165deg, #fff 0%, #fff8f3 48%, #fff4ed 100%);
    border-radius: 15px;
    padding: clamp(18px, 4vw, 26px);
    border: 1px solid rgba(9, 27, 62, 0.07);
}

.desc-lead {
    font-size: 15px;
    line-height: 1.7;
    color: #4a453f;
    margin: 0;
}

.desc-lead strong {
    color: #fc5904;
    font-weight: 700;
}

.desc-cards-grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 860px) {
    .desc-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: stretch;
    }
    .desc-card--span-full {
        grid-column: 1 / -1;
    }
}

.desc-card {
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(9, 27, 62, 0.1);
    background: #fff;
    box-shadow:
        0 2px 8px rgba(9, 27, 62, 0.04),
        0 12px 40px rgba(9, 27, 62, 0.06);
    padding: 18px 18px 16px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
    .desc-card:hover {
        transform: translateY(-2px);
        box-shadow:
            0 8px 20px rgba(9, 27, 62, 0.08),
            0 20px 48px rgba(9, 27, 62, 0.1);
    }
}

.desc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000, #333333);
    opacity: 0.85;
}

.desc-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(9, 27, 62, 0.08);
}

.desc-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(145deg, #000000, #333333);
    box-shadow: 0 4px 12px rgba(9, 27, 62, 0.25);
}

.desc-card__icon svg {
    display: block;
}

.desc-heading {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #fc5904;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.02em;
}

.desc-card__badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fc5904;
    background: rgba(252, 89, 4, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(252, 89, 4, 0.15);
}

.desc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desc-list li {
    position: relative;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.58;
    color: #5c564f;
    margin-bottom: 10px;
}

.desc-list li:last-child {
    margin-bottom: 0;
}

.desc-list li::before {
    display: none;
}

.desc-list--check li {
    padding-left: 28px;
}

.desc-list--check li::before {
    display: flex;
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(9, 27, 62, 0.1);
    border: 1px solid rgba(9, 27, 62, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fc5904' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

.desc-list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.desc-list--inline li {
    margin-bottom: 0;
}

.desc-list--measures li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 16px;
    padding: 11px 14px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff8f3 0%, #fff4ed 100%);
    border: 1px solid rgba(9, 27, 62, 0.08);
    border-radius: 10px;
    border-left: 3px solid #000000;
    box-shadow: 0 1px 4px rgba(9, 27, 62, 0.04);
}

.desc-list--measures li:last-child {
    margin-bottom: 0;
}

.desc-list--measures li::before {
    display: none;
}

.desc-list--measures li span:first-child {
    font-weight: 600;
    color: #1a2332;
    font-size: 13px;
}

.desc-measure-meta {
    font-size: 11.5px;
    font-weight: 500;
    color: #6b655c;
    text-align: right;
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 480px) {
    .desc-list--measures li {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .desc-measure-meta {
        text-align: left;
        opacity: 0.95;
        border-top: 1px dashed rgba(9, 27, 62, 0.1);
        padding-top: 6px;
        margin-top: 2px;
    }
}

.desc-note-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-radius: 14px;
    padding: 20px;
    margin: 0;
    background:
        linear-gradient(145deg, rgba(9, 27, 62, 0.06), rgba(9, 27, 62, 0.02)),
        #fff8f3;
    border: 1px solid rgba(9, 27, 62, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 8px 32px rgba(9, 27, 62, 0.08);
}

.desc-note-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fc5904;
    background: #fff;
    border: 1px solid rgba(9, 27, 62, 0.12);
    box-shadow: 0 2px 12px rgba(9, 27, 62, 0.08);
}

.desc-note-card__icon svg {
    display: block;
}

.desc-note-card__text {
    font-size: 13px;
    line-height: 1.62;
    color: #5c564f;
}

.desc-note-card__text strong {
    display: block;
    font-size: 14px;
    color: #fc5904;
    margin-bottom: 6px;
    font-weight: 700;
}

/* backward compat legacy description classes if used elsewhere */
.desc-block {
    margin-bottom: 18px;
}

.desc-note {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    background: #fff4ed;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 4px;
}

.desc-note strong {
    color: #fc5904;
    font-weight: 600;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
}

.description-slogan {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
}

.description-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 16px;
}

.description-tips {
    background: #fff4ed;
    border-left: 4px solid #000000;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.description-list {
    padding-left: 20px;
    margin: 8px 0 0 0;
}

.description-list li {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 6px;
}

.description-highlight {
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.5;
}

.description-question {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-top: 24px;
    margin-bottom: 16px;
}

/* Technical Specifications */
.technical-specs {
    padding: 8px 0 36px;
    background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.technical-specs__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 16px;
}

.specs-main-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

/* Ficha técnica estilo marketplace */
.spec-sheet {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spec-sheet__group {
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(252, 89, 4, 0.38);
    border-radius: 16px;
    padding: 18px 18px 20px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.spec-sheet__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.01em;
}

.spec-sheet__heading::before {
    content: '';
    flex-shrink: 0;
    width: 3px;
    height: 14px;
    border-radius: 2px;
    background: #fc5904;
}

.spec-sheet__table {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(252, 89, 4, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
}

.spec-sheet__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 14px;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-sheet__row:last-child {
    border-bottom: none;
}

.spec-sheet__row:nth-child(odd) {
    background: transparent;
}

.spec-sheet__row:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.spec-sheet__row dt {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-weight: 400;
    color: #666;
}

.spec-sheet__row dd {
    flex-shrink: 0;
    max-width: 52%;
    margin: 0;
    font-weight: 500;
    color: #111;
    text-align: right;
}

.specs-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.spec-highlight:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.spec-highlight:last-child:nth-child(odd) .spec-highlight__icon {
    flex-shrink: 0;
}

.spec-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 10px;
    background: #fff4ed;
    border: 1px solid #ffb380;
    border-radius: 10px;
}

.spec-highlight__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(9, 27, 62, 0.12);
    color: #000000;
}

.spec-highlight__label {
    font-size: 10px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.spec-highlight__value {
    font-size: 12px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.specs-groups {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-group-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.spec-group-card__title {
    margin: 0;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    background: #fff4ed;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #ffb380;
}

.spec-dl {
    margin: 0;
    padding: 0;
}

.spec-dl__row {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
}

@media (max-width: 480px) {
    .spec-dl__row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .spec-dl__row dd:has(.spec-badge) {
        justify-self: start;
    }
}

.spec-dl__row:last-child {
    border-bottom: none;
}

.spec-dl__row dt {
    font-size: 12px;
    color: #777;
    font-weight: 400;
    line-height: 1.35;
    min-width: 0;
    padding-top: 1px;
}

.spec-dl__row dd {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #222;
    line-height: 1.45;
    text-align: left;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.spec-dl__row dd:has(.spec-badge) {
    justify-self: end;
    text-align: right;
}

.spec-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.spec-badge--yes {
    color: #000000;
    background: rgba(9, 27, 62, 0.12);
}

.spec-badge--no {
    color: #888;
    background: #f0f0f0;
}

.specs-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.specs-codes__item {
    font-size: 11px;
    color: #888;
}

.specs-codes__item strong {
    color: #555;
    font-weight: 600;
}

/* Product Diagram */
.product-diagram {
    padding: 24px 16px;
    background-color: #ffffff;
    position: relative;
}

.product-diagram img {
    width: 100%;
    height: auto;
}

.diagram-label {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
}

.label-chuck {
    top: 20%;
    left: 10%;
}

.label-speed {
    top: 15%;
    right: 15%;
}

.label-led {
    top: 35%;
    left: 20%;
}

.label-torque {
    top: 50%;
    right: 20%;
}

/* Reviews Section */
.reviews-section {
    padding: 24px 16px;
    background-color: #ffffff;
}

.product-header-review {
    background-color: #E0E0E0;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-code-review {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

.product-volt-review {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}

.review-text-top {
    font-size: 14px;
    color: #000000;
    margin-bottom: 16px;
    padding-left: 16px;
}

.reviews-title {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
}

.rating-summary {
    margin-bottom: 24px;
}

.stars-visual {
    color: #000000;
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 12px;
    line-height: 1;
}

.rating-average {
    font-size: 22px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 6px;
}

.rating-based {
    font-size: 14px;
    color: #666666;
}

.rating-breakdown {
    margin-bottom: 24px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-bar-item span:first-child {
    width: 80px;
    font-size: 14px;
    color: #000000;
}

.rating-bar {
    flex: 1;
    height: 20px;
    background-color: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: #000000;
    border-radius: 10px;
}

.rating-bar-item span:last-child {
    width: 40px;
    text-align: right;
    font-size: 14px;
    color: #000000;
}

.sort-reviews {
    font-size: 14px;
    color: #000000;
    margin-bottom: 24px;
}

.sort-button {
    background-color: #F5F5F5;
    border: 1px solid #CCCCCC;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 8px;
}

/* Review Items */
.review-item {
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.review-name {
    font-weight: bold;
    font-size: 16px;
    color: #000000;
}

.review-date {
    font-size: 14px;
    color: #999999;
}

.review-stars {
    color: #000000;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 8px;
    line-height: 1;
}

.review-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-text-only {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: 8px;
}

/* Hair Types Section */
.hair-types-section {
    padding: 24px 16px 8px;
    background: #fff;
}

.hair-types-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.hair-types-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    padding-right: 16px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
}

.hair-types-track:active {
    cursor: grabbing;
}

.hair-types-track::-webkit-scrollbar {
    display: none;
}

.hair-type-card {
    scroll-snap-align: start;
    min-width: calc(75vw);
    max-width: calc(75vw);
    background: #fdf5f9;
    border-radius: 14px;
    padding: 0 0 14px 0;
    flex-shrink: 0;
    overflow: hidden;
}

.hair-type-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.hair-type-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hair-type-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.hair-type-desc {
    font-size: 12px;
    color: #222;
    font-weight: 600;
    line-height: 1.4;
    padding: 0 10px;
    margin-bottom: 6px;
}

.hair-type-mode {
    font-size: 11px;
    color: #888;
    padding: 0 10px;
    margin-bottom: 6px;
}

.hair-type-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 10px;
}

.hair-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #222;
    width: fit-content;
}

/* Banner Oferta */
.banner-oferta-wrap {
    width: 100%;
    line-height: 0;
}

.banner-oferta-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Section - Reclame Aqui */
.trust-section {
    margin: 16px 16px 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1.5px solid #e8e8e8;
}

.trust-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.trust-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.reclame-logo {
    height: 24px;
    width: auto;
}

.reclame-placeholder {
    display: none;
    align-items: center;
    gap: 6px;
}

.reclame-text-badge {
    background-color: #000000;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 5px;
    letter-spacing: 0.5px;
}

.reclame-name {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.trust-score-badge {
    display: flex;
    align-items: baseline;
    gap: 4px;
    position: absolute;
    right: 0;
}

.trust-score-number {
    font-size: 26px;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}

.trust-score-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-headline {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.trust-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 12px 14px;
    gap: 12px;
}

.trust-stat-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.trust-stat-value {
    font-size: 16px;
    font-weight: 900;
    color: #000000;
}

.trust-stat-label {
    font-size: 13px;
    color: #555;
    line-height: 1.3;
}

.trust-footer-text {
    text-align: center;
    font-size: 11px;
    color: #aaa;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.trust-award-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
}

/* Reclame AQUI — Depoimentos */
.ra-section {
    padding: 28px 0 24px;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
}

.ra-section__header {
    text-align: center;
    padding: 0 16px;
    margin-bottom: 20px;
}

.ra-section__score-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 5px 10px 5px 8px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff4e5 100%);
    border: 1px solid #fde0c2;
    border-radius: 999px;
}

.ra-section__score {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #152238;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ra-section__stars {
    font-size: 11px;
    color: #f5a623;
    letter-spacing: 1px;
    line-height: 1;
}

.ra-section__score-divider {
    width: 1px;
    height: 12px;
    background: #e8dcc8;
    flex-shrink: 0;
}

.ra-section__score-label {
    font-size: 10px;
    font-weight: 600;
    color: #8a7560;
    letter-spacing: 0.02em;
    line-height: 1;
}

.ra-section__title {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(17px, 4.5vw, 20px);
    font-weight: 800;
    color: #152238;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ra-section__subtitle {
    font-size: 12px;
    color: #8a94a6;
    margin: 0 auto;
    line-height: 1.45;
    max-width: 280px;
}

.ra-carousel {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ra-carousel__track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    padding: 4px 16px 8px;
    animation: ra-carousel-scroll 48s linear infinite;
    will-change: transform;
}

.ra-card {
    display: flex;
    width: min(300px, 78vw);
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8ebf0;
    box-shadow: 0 4px 18px rgba(21, 34, 56, 0.07);
    overflow: hidden;
    min-height: 138px;
}

.ra-card__media {
    width: 108px;
    flex-shrink: 0;
    background: #f3f4f6;
}

.ra-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ra-card__body {
    flex: 1;
    min-width: 0;
    padding: 10px 11px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ra-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ra-card__mini-logo {
    height: 11px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.ra-card__rating {
    font-size: 10px;
    font-weight: 700;
    color: #152238;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.ra-card__stars {
    color: #f5a623;
    font-size: 9px;
    letter-spacing: -0.5px;
}

.ra-card__user {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.ra-card__avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.ra-card__avatar--1 { background: #8b5e3c; }
.ra-card__avatar--2 { background: #fc5904; }
.ra-card__avatar--3 { background: #2d6a4f; }
.ra-card__avatar--4 { background: #7b2cbf; }
.ra-card__avatar--5 { background: #1d4ed8; }
.ra-card__avatar--6 { background: #b45309; }
.ra-card__avatar--7 { background: #be123c; }
.ra-card__avatar--8 { background: #0f766e; }

.ra-card__name {
    font-size: 11px;
    font-weight: 700;
    color: #152238;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ra-card__quote {
    margin: 0;
    font-size: 10.5px;
    line-height: 1.45;
    color: #5c6578;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ra-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
}

.ra-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 8.5px;
    font-weight: 700;
    color: #008f47;
    background: #e8f8ef;
    border-radius: 999px;
    padding: 3px 7px;
    white-space: nowrap;
}

@keyframes ra-carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ra-carousel__track {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        max-width: 100%;
        padding-bottom: 12px;
    }

    .ra-card {
        scroll-snap-align: start;
    }
}

#todos-feedbacks {
    scroll-margin-top: 90px;
}

/* Seção de vídeo do produto */
.product-video-section {
    padding: 32px 16px 36px;
    background: linear-gradient(180deg, #fff8f4 0%, #fff 55%, #fafafa 100%);
    scroll-margin-top: calc(var(--site-header-offset, 90px) + 8px);
}

.product-video-section__inner {
    max-width: 420px;
    margin: 0 auto;
}

.product-video-section__header {
    text-align: center;
    margin-bottom: 22px;
}

.product-video-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fc5904;
    background: rgba(252, 89, 4, 0.1);
    border-radius: 999px;
}

.product-video-section__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.product-video-section__subtitle {
    margin: 0 auto;
    max-width: 340px;
    font-size: 14px;
    line-height: 1.55;
    color: #666;
}

.product-video-section__card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0e6df;
    box-shadow:
        0 16px 48px rgba(252, 89, 4, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.product-video-section__stage {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #0a0a0a;
    cursor: pointer;
    position: relative;
    aspect-ratio: 9 / 16;
    max-height: min(68vh, 520px);
    margin: 0 auto;
    overflow: hidden;
}

.product-video-section__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.product-video-section__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.product-video-section__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(252, 89, 4, 0.95);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(252, 89, 4, 0.45);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.product-video-section__play-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: videoModalPulse 2s ease infinite;
}

.product-video-section__stage:hover .product-video-section__play {
    transform: translate(-50%, -58%) scale(1.06);
}

.product-video-section__cta {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.product-video-section__features {
    list-style: none;
    margin: 0;
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-video-section__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #444;
}

.product-video-section__feature strong {
    color: #111;
    font-weight: 700;
}

.product-video-section__feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(252, 89, 4, 0.1);
    color: #fc5904;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Section (legado) */
.video-section {
    padding: 24px 16px 28px;
    background: linear-gradient(180deg, #fff4ed 0%, #fff 100%);
}

.video-section__card {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ffb380;
    box-shadow: 0 8px 32px rgba(9, 27, 62, 0.08);
    overflow: hidden;
}

.video-section__header {
    padding: 20px 18px 0;
    text-align: center;
}

.video-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    background: rgba(9, 27, 62, 0.1);
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.video-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.video-section__subtitle {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.video-section__player-wrap {
    padding: 18px 18px 0;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    background: #000;
    border: 3px solid #fff;
    outline: 1px solid rgba(9, 27, 62, 0.2);
}

.video-section__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 16px 18px 20px;
}

.video-section__tag {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 6px 12px;
    border-radius: 20px;
}

.video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    cursor: pointer;
    background: #1a1a1a url('images/videoproduto-thumb.jpg?v=20260530') center / cover no-repeat;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 10;
    pointer-events: auto;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 6px 28px rgba(9, 27, 62, 0.35);
}

.video-play-btn:active {
    transform: translate(-50%, -50%) scale(0.98);
}

.video-player.is-playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
    padding-left: 0;
}

/* Loja física — destaque */
.store-spotlight {
    padding: 8px 16px 24px;
    background: #fff;
}

.store-spotlight__card {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ffb380;
    box-shadow: 0 10px 36px rgba(9, 27, 62, 0.1);
    background: #fff;
}

.store-spotlight__visual {
    position: relative;
    height: 168px;
    overflow: hidden;
}

.store-spotlight__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-spotlight__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
    pointer-events: none;
}

.store-spotlight__badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: rgba(151, 138, 126, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.store-spotlight__content {
    padding: 16px 16px 18px;
}

.store-spotlight__title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.store-spotlight__text {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 14px;
}

.store-spotlight__perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.store-spotlight__perks li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 10px 6px;
    background: #fff4ed;
    border-radius: 10px;
    border: 1px solid #ffb380;
    font-size: 10px;
    font-weight: 600;
    color: #444;
    line-height: 1.25;
}

.store-spotlight__perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(252, 89, 4, 0.12);
    color: #fc5904;
}

.store-spotlight__perk-icon svg {
    display: block;
    flex-shrink: 0;
}

/* Reviews Section Nova */
.reviews-header {
    margin-bottom: 20px;
}

.reviews-title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
}

.reviews-score {
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}

.reviews-stars {
    color: #000000;
    font-size: 18px;
    letter-spacing: 2px;
}

.reviews-total {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin-top: 2px;
}

.reviews-count {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review-card {
    padding: 16px 0;
    border-bottom: 1px solid #EBEBEB;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #555;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.review-verify-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.review-stars {
    color: #000000;
    font-size: 13px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 13px;
    color: #333;
    line-height: 1.55;
    margin-bottom: 10px;
}

.review-photos {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.review-photo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #F0F0F0;
}

.review-date {
    font-size: 11px;
    color: #999;
}

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.footer-banner {
    background: #fc5904;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 6px 12px;
}

.footer-tagline {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin: 0;
}

.newsletter-section {
    padding: 24px 16px;
    background-color: #ffffff;
}

.newsletter-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.newsletter-icon {
    width: 20px;
    height: 20px;
    color: #fc5904;
    flex-shrink: 0;
}

.newsletter-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.newsletter-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 11px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #111;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #fc5904;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #fc5904;
}

.form-checkbox label {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.btn-register {
    width: 100%;
    background: #fc5904;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 14px;
    transition: background 0.2s;
}

.btn-register:hover {
    background: #e04d03;
}

.form-disclaimer {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 8px;
}

.form-disclaimer a {
    color: #fc5904;
    text-decoration: underline;
}

.form-note {
    font-size: 12px;
    color: #666666;
}

/* Navigation Menu */
.nav-menu {
    padding: 24px 16px;
    background-color: #ffffff;
    display: none;
}

.nav-section {
    margin-bottom: 32px;
}

.nav-section h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E0E0E0;
}

.nav-section ul {
    list-style: none;
    padding-left: 0;
}

.nav-section ul li {
    font-size: 14px;
    color: #000000;
    margin-bottom: 8px;
    cursor: pointer;
}

#escolha-cor {
    scroll-margin-top: 100px;
}

#escolha-tamanho {
    scroll-margin-top: 100px;
}

#escolha-brinde {
    scroll-margin-top: 100px;
}

.checkout-alert {
    position: fixed;
    top: var(--site-header-offset);
    left: 50%;
    z-index: 10001;
    transform: translateX(-50%) translateY(-8px);
    width: calc(100% - 32px);
    max-width: 420px;
    padding: 12px 14px;
    background: #fff3f3;
    border: 1px solid #f5c2c2;
    border-left: 4px solid #e53935;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.checkout-alert.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.checkout-alert__text {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #b71c1c;
    text-align: center;
}

/* Picker sections — Cor e Tamanho */
.picker-section {
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

#escolha-tamanho.picker-section {
    border-bottom: none;
    padding-bottom: 8px;
}

/* Cor do sofá brinde — bolinhas de cor */
.gift-picker__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 0;
}

.gift-picker__color-option {
    flex: 0 0 auto;
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.gift-picker__color-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.gift-picker__color-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 40px;
}

.gift-picker__color-swatch {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.gift-picker__color-swatch--azul { background: #2a4d7a; }
.gift-picker__color-swatch--marromacinzentado { background: #8b7d6b; }
.gift-picker__color-swatch--pichacao {
    background: linear-gradient(135deg, #6d7a5e 0%, #8a7f62 35%, #5f6b52 70%, #7d7358 100%);
}
.gift-picker__color-swatch--vermelho { background: #b71c1c; }

.gift-picker__color-name {
    font-size: 9px;
    font-weight: 600;
    color: #888;
    text-align: center;
    line-height: 1.15;
    max-width: 56px;
}

.gift-picker__color-option:has(.gift-picker__color-input:checked) .gift-picker__color-swatch {
    border-color: #fc5904;
    box-shadow: 0 0 0 2px rgba(252, 89, 4, 0.45);
    transform: scale(1.04);
}

.gift-picker__color-option:has(.gift-picker__color-input:checked) .gift-picker__color-name {
    color: #b34303;
    font-weight: 700;
}

.gift-picker__intro {
    flex: 1;
    min-width: 0;
}

#escolha-cor-brinde .gift-picker__group {
    margin-bottom: 4px;
}

#escolha-cor-brinde .gift-picker__group-head {
    margin-bottom: 4px;
}

#escolha-cor-brinde .gift-picker__group-label {
    font-size: 8px;
}

#escolha-cor-brinde .gift-picker__group-value {
    font-size: 10px;
}

.picker-section__header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.picker-section__label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.picker-section__value {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.picker-section__value::before {
    content: '·';
    margin-right: 6px;
    color: #ccc;
}

/* Color picker */
.color-picker__grid {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 2px 0 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.color-picker__grid::-webkit-scrollbar { display: none; }

.color-picker__option {
    flex: 0 0 76px;
    display: block;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.color-picker__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.color-picker__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.color-picker__thumb {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e8e8e8;
    background: #f0f0f0;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.color-picker__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.color-picker__check {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: #fc5904;
    color: #ffffff;
    border-radius: 50%;
    font-size: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}

.color-picker__option:has(.color-picker__input:checked) .color-picker__thumb {
    border-color: #fc5904;
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(252, 89, 4, 0.45);
}

.color-picker__option:has(.color-picker__input:checked) .color-picker__check {
    display: flex;
}

.color-picker__name {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-align: center;
}

.color-picker__option:has(.color-picker__input:checked) .color-picker__name {
    color: #b34303;
    font-weight: 700;
}

/* Legacy title classes (mantidas para compatibilidade) */
.color-picker__title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 3px;
}
.color-picker__subtitle {
    font-size: 12px;
    color: #666;
    margin: 0 0 4px;
}
.color-picker__subtitle strong { color: #111; font-weight: 700; }
.color-picker__hint { margin: 0 0 10px; font-size: 11px; color: #cc6600; }

/* Viajantes */
.travelers-section {
    padding: 28px 0 24px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.travelers-section__header {
    padding: 0 16px;
    margin-bottom: 20px;
    text-align: center;
}

.travelers-section__eyebrow {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fc5904;
    margin: 0 0 6px;
}

.travelers-section__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.travelers-section__track {
    display: flex;
    gap: 12px;
    padding: 4px 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.travelers-section__track::-webkit-scrollbar { display: none; }

.traveler-card {
    flex: 0 0 155px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.traveler-card__img-wrap {
    width: 155px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.traveler-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.traveler-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.traveler-card__caption {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    margin: 0;
    line-height: 1.4;
}

.traveler-card__bar {
    display: block;
    width: 28px;
    height: 2px;
    background: #fc5904;
    border-radius: 2px;
}

/* Loja Física */
.store-section {
    padding: 28px 16px 32px;
    background: #f7f7f7;
}

.store-section__inner {
    max-width: 680px;
    margin: 0 auto;
}

.store-section__visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.store-section__img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.store-section__card {
    position: relative;
    margin: -28px 12px 0;
    padding: 22px 20px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(252, 89, 4, 0.22);
    border-radius: 16px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.store-section__eyebrow {
    display: inline-block;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fc5904;
    margin: 0 0 8px;
}

.store-section__title {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.store-section__text {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 18px;
}

.store-section__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.store-section__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
}

.store-section__feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: #fc5904;
    border: 1px solid rgba(252, 89, 4, 0.15);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.store-section__feature-text {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.35;
}

/* Descrição simples — blocos legado removidos da seção editorial */

.simple-desc__note {
    font-size: 11.5px;
    color: #999;
    margin: 10px 0 0;
    font-style: italic;
}

.simple-desc__sizes-line {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    padding: 24px 16px 28px;
    background: #fff;
}

.faq__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #000000;
}

.faq__item {
    border-bottom: 1px solid #ffe0cc;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
    text-align: left;
    cursor: pointer;
    gap: 12px;
    line-height: 1.4;
}

.faq__icon {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    flex-shrink: 0;
    line-height: 1;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    padding-bottom: 14px;
}

/* Feedbacks dos Clientes */
.client-feedback {
    padding: 24px 20px 22px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.client-feedback__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.client-feedback__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fc5904;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.client-feedback__block {
    margin-bottom: 20px;
}

.client-feedback__block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.client-feedback__label {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.client-feedback__value {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 20px;
}

.client-feedback__value--green {
    color: #fc5904;
    background: #fdf0e5;
}

.client-feedback__bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.client-feedback__bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 99px;
    overflow: hidden;
}

.client-feedback__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff7a2e 0%, #fc5904 100%);
    border-radius: 99px;
    transition: width 0.6s ease;
}

.client-feedback__seg-bar {
    display: flex;
    gap: 4px;
    height: 8px;
}

.client-feedback__seg {
    flex: 1;
    background: #f0f0f0;
    border-radius: 4px;
}

.client-feedback__seg--active {
    background: #fc5904;
}

.client-feedback__bar-ends {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaa;
}

.client-feedback__recommend {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 14px 16px;
    background: #f7f7f7;
    border-radius: 12px;
    border: 1px solid #ebebeb;
}

.client-feedback__recommend-pct {
    font-size: 28px;
    font-weight: 900;
    color: #fc5904;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.client-feedback__recommend-text {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    font-weight: 500;
}

/* Seção de tamanhos */
.size-picker-section {
    padding: 10px 14px 10px;
    background: #fff;
}

.size-picker__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin-bottom: 4px;
}

.size-picker__option {
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.size-picker__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-picker__card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 6px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
}

.size-picker__option:has(.size-picker__input:checked) .size-picker__card {
    border-color: #111;
    background: #111;
    color: #fff;
}

.size-picker__divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #555;
}

.size-picker__divider::before,
.size-picker__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d0d0d0;
}

/* Escolha do brinde */
.gift-picker {
    padding: 0 16px 16px;
    margin-top: 0;
    background: #fff;
}

.gift-picker__card {
    padding: 14px;
    background: linear-gradient(180deg, #f8fdf9 0%, #fff 100%);
    border: 1px solid #d4edda;
    border-left: 3px solid #00a650;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 166, 80, 0.08);
}

.gift-picker__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #dceee3;
}

.gift-picker__tag {
    display: inline-block;
    margin-bottom: 5px;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00a650;
    background: #e8f8ef;
    border-radius: 999px;
}

.gift-picker__title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.gift-picker__desc {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #666;
}

.gift-picker__media {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gift-picker__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gift-picker__free {
    position: absolute;
    top: -4px;
    right: -4px;
    padding: 2px 6px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: #00a650;
    border: 1.5px solid #fff;
    border-radius: 999px;
}

.gift-picker__intro {
    flex: 1;
    min-width: 0;
}

.gift-picker__badge {
    display: inline-block;
    margin-bottom: 4px;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00a650;
    background: #e8f8ef;
    border-radius: 999px;
}

.gift-picker__title {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.gift-picker__desc {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.4;
    color: #666;
}

.gift-picker__group {
    margin-bottom: 10px;
}

.gift-picker__group:last-of-type {
    margin-bottom: 8px;
}

.gift-picker__group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 6px;
}

.gift-picker__group-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

.gift-picker__group-value {
    font-size: 11px;
    font-weight: 700;
    color: #111;
}

.gift-color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 6px;
}

.gift-color-picker__option {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.gift-color-picker__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.gift-color-picker__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 40px;
}

.gift-color-picker__swatch {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.gift-color-picker__swatch--light {
    border-color: #ccc;
}

.gift-color-picker__name {
    font-size: 9px;
    font-weight: 600;
    color: #777;
    transition: color 0.15s;
}

.gift-color-picker__option:has(.gift-color-picker__input:checked) .gift-color-picker__swatch {
    border-color: #00a650;
    border-width: 2px;
    box-shadow: 0 0 0 1.5px rgba(0, 166, 80, 0.2);
    transform: scale(1.04);
}

.gift-color-picker__option:has(.gift-color-picker__input:checked) .gift-color-picker__name {
    color: #00a650;
    font-weight: 700;
}

.gift-size-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.gift-size-picker__option {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.gift-size-picker__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.gift-size-picker__card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 5px 10px;
    border: 1.5px solid #dceee3;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    background: #fff;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.gift-size-picker__option:has(.gift-size-picker__input:checked) .gift-size-picker__card {
    border-color: #00a650;
    background: #00a650;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 166, 80, 0.22);
}

.gift-picker__summary {
    margin: 0;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #2d6a4a;
    text-align: center;
    background: #eefbf3;
    border: 1px solid #ccebd8;
    border-radius: 7px;
}

/* Escolha de quantidade */
.qty-picker-section {
    padding: 0 14px 16px;
    background: #fff;
}

.qty-picker__title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.28;
}

.qty-picker__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qty-picker__option {
    display: block;
    margin: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.qty-picker__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.qty-picker__card {
    display: block;
    border: 1.5px solid #ffd4b8;
    border-radius: 12px;
    background: #fff8f3;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.qty-picker__ribbon {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    box-sizing: border-box;
}

.qty-picker__ribbon--popular {
    color: #fc5904;
    background: #ffe0cc;
}

.qty-picker__ribbon--best {
    color: #ffffff;
    background: #fc5904;
}

.qty-picker__body {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 14px;
    box-sizing: border-box;
}

.qty-picker__radio {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #000000;
    border-radius: 50%;
    background: #fff;
    position: relative;
    transition: border-color 0.18s ease;
}

.qty-picker__radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000000;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease;
}

.qty-picker__input:checked + .qty-picker__card {
    border-color: #000000;
    box-shadow: 0 0 0 1px rgba(252, 89, 4, 0.4);
}

.qty-picker__input:checked + .qty-picker__card .qty-picker__body {
    background: #fff4ed;
}

.qty-picker__input:checked + .qty-picker__card .qty-picker__radio {
    border-color: #000000;
}

.qty-picker__input:checked + .qty-picker__card .qty-picker__radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.qty-picker__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.qty-picker__label {
    font-size: 14px;
    font-weight: 600;
    color: #383f4a;
    line-height: 1.25;
}

.qty-picker__save {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.qty-picker__price {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fc5904;
    white-space: nowrap;
    line-height: 1.2;
}

.qty-picker__prices {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.qty-picker__old {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    line-height: 1.2;
}

.qty-picker__prices .qty-picker__price {
    font-size: 15px;
}

@media (hover: hover) {
    .qty-picker__option:hover .qty-picker__card {
        border-color: #000000;
    }
}

/* Responsive adjustments */

/* Preços por dispositivo — controlado via JS por User Agent */
.price-desktop { display: block; }
.price-mobile  { display: none; }

html.is-real-mobile .price-desktop { display: none; }
html.is-real-mobile .price-mobile  { display: block; }

@media (min-width: 768px) {
    .product-images {
        display: block;
    }

    .main-image-carousel {
        width: 100%;
    }

    .image-thumbnails {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Popup Promoção */
.promo-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.promo-popup-overlay.show {
    display: flex;
}

.promo-popup {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.promo-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
}

.promo-popup-close:hover {
    color: #333;
}

.promo-popup-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

.promo-popup-text {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 10px;
}

.promo-popup-timer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    background-color: #000000;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
}

.promo-popup-timer .flash-offer-left {
    justify-content: flex-start;
    padding-left: 0;
}

.promo-popup-timer .flash-offer-encerra {
    font-size: 15px;
    font-weight: 700;
}

.promo-popup-text:last-of-type {
    margin-bottom: 20px;
}

.promo-popup-text strong {
    color: #000000;
}

.promo-popup-buttons {
    display: flex;
    justify-content: center;
}

.promo-popup-btn {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.promo-popup-btn-close {
    background: rgba(150, 150, 150, 0.4);
    color: #666;
}

.promo-popup-btn-close:hover {
    background: rgba(130, 130, 130, 0.5);
    color: #555;
}
