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

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: 86px;
}

/* Top Banner */
.top-banner {
    background-color: #adff2f !important;
    color: #103681 !important;
    padding: 0;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
    font-weight: 500;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    white-space: nowrap;
    box-sizing: border-box;
}

.banner-scroll {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-banner 25s linear infinite;
    will-change: transform;
}

.banner-text {
    display: inline-block;
    white-space: nowrap;
    padding-right: 50px;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header */
.header {
    background-color: #103681 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
}

.header.scrolled {
    background-color: rgba(16, 54, 129, 0.5) !important; /* Transparencia 50% ao rolar */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.menu-icon, .search-icon, .user-icon, .cart-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    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: 36px;
    width: auto;
    max-width: 200px;
    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 */
.official-store {
    padding: 6px 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.store-logo {
    background-color: #103681;
    color: #000000;
    padding: 2px 6px;
    font-weight: bold;
    font-size: 10px;
    border-radius: 2px;
}

.checkmark {
    color: #103681;
    flex-shrink: 0;
}

/* Product Status */
.product-status {
    padding: 6px 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.new-badge {
    background-color: #4CAF50;
    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: #103681;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}

.rating-value {
    font-weight: bold;
    font-size: 13px;
}

.rating-count {
    color: #666666;
    font-size: 11px;
}

/* Product Title */
.product-title {
    padding: 8px 12px;
    margin-top: 6px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
}

/* Product Images */
.product-images {
    padding: 0 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: #103681;
    box-shadow: 0 2px 8px rgba(16, 54, 129, 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;
}

/* Gift Bonus Card */
.gift-bonus-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 16px 16px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
    border: 1px solid #cfe3ff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(16, 54, 129, 0.08);
    /* Animacao sutil para chamar atencao sem ser agressivo */
    animation: giftBonusFloat 6s ease-in-out infinite;
    will-change: transform, box-shadow;
}

@keyframes giftBonusFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(16, 54, 129, 0.08);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(16, 54, 129, 0.12);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(16, 54, 129, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gift-bonus-card {
        animation: none;
    }
}

.gift-bonus-image {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e8eaef;
}

.gift-bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.gift-bonus-content {
    flex: 1;
    min-width: 0;
}

.gift-bonus-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #103681;
    background: rgba(16, 54, 129, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.gift-bonus-text {
    font-size: 15px;
    line-height: 1.5;
    color: #2d2d2d;
}

.gift-bonus-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.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: #103681;
}

.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: #103681;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}

.discount-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.discount-badge {
    background-color: #103681;
    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: #103681;
    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: #103681;
    color: #103681;
    background: #fff0eb;
}

.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: #103681;
    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: #103681;
    color: #000000;
    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;
}

/* Action Buttons */
.action-buttons {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-buy-now {
    background-color: #103681;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart {
    background-color: rgba(16, 54, 129, 0.2);
    color: #103681;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Delivery Info */
.delivery-info {
    padding: 16px;
    background-color: #ffffff;
}

.delivery-option, .pickup-option {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.delivery-icon, .pickup-icon {
    width: 24px;
    height: 24px;
    color: #000000;
    flex-shrink: 0;
}

.delivery-text, .pickup-text {
    flex: 1;
}

.delivery-text div:first-child,
.pickup-text div:first-child {
    font-size: 14px;
    color: #000000;
    margin-bottom: 4px;
}

.delivery-time, .pickup-time {
    font-size: 12px;
    color: #666666;
    margin-bottom: 4px;
}

.delivery-text a,
.pickup-text a {
    color: #103681;
    text-decoration: none;
    font-size: 12px;
}

/* 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: #103681;
    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, #103681 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: #103681;
    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, #103681 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: 24px 16px;
    background-color: #ffffff;
}

.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: #fff5f0;
    border-left: 4px solid #103681;
    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: 24px 16px;
    background-color: #ffffff;
}

/* Quick specs */
.quick-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 0 4px;
}

.quick-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.quick-spec-item svg {
    flex-shrink: 0;
}

/* Two column specs layout */
.specs-two-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.specs-col {
    width: 100%;
}

.specs-title {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 24px;
}

.specs-title:first-child {
    margin-top: 0;
}

.specs-table {
    margin-bottom: 8px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 16px;
}

.spec-row.alt {
    background-color: #F5F5F5;
    border-radius: 6px;
}

.spec-label {
    font-size: 15px;
    color: #666666;
    min-width: 120px;
    flex-shrink: 0;
}

.spec-value {
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

/* Product Codes */
.product-codes {
    padding: 24px 16px;
    background-color: #ffffff;
}

.codes-table {
    background-color: #F5F5F5;
    padding: 16px;
    border-radius: 8px;
}

.code-row {
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.code-row:last-child {
    margin-bottom: 0;
}

.code-row strong {
    font-weight: bold;
}

/* 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: #103681;
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 12px;
    line-height: 1;
}

.rating-average {
    font-size: 22px;
    font-weight: 900;
    color: #103681;
    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: #103681;
    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: #103681;
    color: #000000;
    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: #103681;
    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: #00A859;
    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: #00A859;
    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: #00A859;
}

.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;
}

/* Video Section */
.video-section {
    padding: 32px 16px;
    background-color: #eef6ff; /* azul bem fraquinho */
}

.video-section-title {
    font-size: 16px;
    font-weight: 800;
    color: #103681;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.video-container {
    max-width: 360px;
    margin: 0 auto;
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 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: #103681;
    line-height: 1;
}

.reviews-stars {
    color: #103681;
    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;
}

.review-stars {
    color: #103681;
    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;
}

.footer-banner {
    background-color: #103681;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.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: #000000;
    flex-shrink: 0;
}

.newsletter-header h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.newsletter-text {
    font-size: 16px;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    font-size: 16px;
    color: #000000;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}

.btn-register {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 16px;
}

.form-disclaimer {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.form-disclaimer a {
    color: #103681;
    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;
}

/* Buy with Discount Section */
#escolha-unidades.buy-discount-section,
.buy-discount-section {
    margin-top: 14px;
}

#escolha-unidades {
    scroll-margin-top: 100px;
}

.buy-discount-title {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #555;
    letter-spacing: 0.5px;
}

.buy-discount-title::before,
.buy-discount-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.buy-option {
    display: block;
    position: relative;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px 12px 12px 12px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s;
}

.buy-option input[type="radio"] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    accent-color: #103681;
    cursor: pointer;
    margin: 0;
}

.buy-option-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 28px;
}

/* Card 1 unidade: centralizar apenas em altura */
#buy-opt-1 .buy-option-inner {
    align-items: center;
}

.buy-option-active {
    border-color: #103681;
    border-width: 2px;
}

.buy-option:has(.buy-option-badge) {
    padding-top: 30px;
}

.buy-option-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #103681;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0 6px 0 6px;
    letter-spacing: 0.3px;
}

.buy-option-badge-alt {
    background-color: #103681;
}

.buy-option-left {
    flex: 1;
}

.buy-option-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.buy-save-tag {
    background-color: rgba(16, 54, 129, 0.2);
    color: #103681;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

.buy-option-per {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px;
}

.buy-selectors-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
}

.buy-selector-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.buy-selector-num {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    min-width: 18px;
}

.buy-select-color,
.buy-select-size {
    border: 1.5px solid #ccc;
    border-radius: 5px;
    padding: 4px 6px;
    font-size: 12px;
    color: #222;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.buy-select-color:focus,
.buy-select-size:focus {
    border-color: #103681;
}

.buy-select-color {
    flex: 1;
}

.buy-select-size {
    width: 58px;
}

.buy-option-right {
    text-align: right;
    flex-shrink: 0;
    margin-left: 10px;
}

.buy-option-price {
    font-size: 16px;
    font-weight: 900;
    color: #111;
    white-space: nowrap;
}

.buy-option-original {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    white-space: nowrap;
}

/* Primeiro card: evita preço sair do card em telas estreitas */
#buy-opt-1 .buy-option-left {
    min-width: 0;
}

/* 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: #103681;
    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: #103681;
}

.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;
}
