* {
    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: #1f1e60;
    color: #ffffff;
    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: #333276;
    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(51, 50, 118, 0.45);
    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: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #c9c8ff;
    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: #333276;
    color: #000000;
    padding: 2px 6px;
    font-weight: bold;
    font-size: 10px;
    border-radius: 2px;
}

.checkmark {
    color: #0066CC;
    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: #0066CC;
    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: #333276;
    box-shadow: 0 2px 8px rgba(51, 50, 118, 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, #f8f9fc 0%, #f0f2f8 100%);
    border: 1px solid #e2e6ee;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(51, 50, 118, 0.08);
}

.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: #333276;
    background: rgba(51, 50, 118, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.gift-bonus-text {
    font-size: 13px;
    line-height: 1.4;
    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: #333276;
}

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

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

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

.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: #0066CC;
    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: #333276;
    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: #333276;
    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: #c9c8ff;
    color: #333276;
    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: #0066CC;
    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: #333276;
    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, #333276 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: #333276;
    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, #333276 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: #fdf0f5;
    border-left: 4px solid #333276;
    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: #333276;
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 12px;
    line-height: 1;
}

.rating-average {
    font-size: 22px;
    font-weight: 900;
    color: #333276;
    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: #333276;
    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: #333276;
    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: #333276;
    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: #eeeeff;
}

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

.video-carousel-container {
    overflow: hidden;
    width: 100%;
}

.video-carousel-track {
    display: flex;
    justify-content: center;
    gap: 12px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 0;
}

.video-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(51, 50, 118, 0.2);
    flex: 0 0 92%;
    aspect-ratio: 9 / 16;
    position: relative;
    background-color: transparent;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: -3%;
    left: -3%;
    width: 106%;
    height: 106%;
    border: none;
    pointer-events: auto;
}

.video-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.video-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(51, 50, 118, 0.25);
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.video-dot.active {
    background-color: #333276;
    transform: scale(1.3);
}

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

.reviews-stars {
    color: #333276;
    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: #333276;
    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: #333276;
    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: #0066CC;
    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 */
.buy-discount-section {
    margin-top: 14px;
}

.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: #333276;
    cursor: pointer;
    margin: 0;
}

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

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

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

.buy-option-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1f1e60;
    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: #333276;
}

.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: #c9c8ff;
    color: #1f1e60;
    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: #333276;
}

.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 aviso + cronômetro */
.urgency-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    padding: 16px;
}

.urgency-popup.show {
    opacity: 1;
    pointer-events: auto;
}

.urgency-popup-card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcff 100%);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    border: none;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.urgency-popup-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(90deg, #333276 0%, #1f1e60 100%);
}

.urgency-popup-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 6px;
}

.urgency-popup-badge {
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.urgency-popup-text {
    padding: 14px 14px 12px;
}

.urgency-popup-text p {
    font-size: 16px;
    color: #111111;
    line-height: 1.45;
    margin-bottom: 10px;
}

.urgency-popup-ends {
    margin-bottom: 8px !important;
    font-weight: 800;
    color: #111111;
}

.urgency-popup-stock {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    background: #f6f7fb;
    border: 1px solid #e9eaf3;
    border-radius: 12px;
    padding: 10px 12px;
    margin: 10px 0 12px;
}

.urgency-popup-stock-label {
    font-size: 13px;
    color: #444;
    font-weight: 700;
}

.urgency-popup-units {
    font-size: 22px;
    font-weight: 1000;
    color: #333276;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

.urgency-popup-stock-suffix {
    font-size: 13px;
    color: #444;
    font-weight: 700;
}

.urgency-popup-timer {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-popup-box {
    min-width: 56px;
    background: #333276;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    font-size: 24px;
    font-weight: 1000;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

.urgency-popup-sep {
    display: inline-block;
    color: #333276;
    font-size: 26px;
    font-weight: 1000;
}

.urgency-popup-close {
    width: 100%;
    background: #e9e9e9;
    color: #333333;
    border: 1px solid #d7d7d7;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.urgency-popup-close:active {
    transform: translateY(1px);
}

/* Notificação compras recentes (removida) */

/* =========================
   Carrinho e Checkout
   ========================= */
.theme-light {
    background: #f4f6ff;
    color: #1f2642;
    padding-top: 0;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.checkout-header {
    background: #ffffff;
    border-bottom: 1px solid #e7ebf8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.checkout-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-img--header {
    height: 42px;
    width: auto;
}

.logo-text--header {
    font-weight: 900;
    color: #1f2f7a;
    display: none;
}

.icon-button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #1f2f7a;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger-icon::before { top: -6px; }
.hamburger-icon::after { top: 6px; }

.site-nav__icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #d7def7;
    background: #fff;
    color: #1f2f7a;
    text-decoration: none;
}

.checkout-page {
    padding: 20px 0 34px;
}

.checkout-page__container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #1f2f7a;
    text-decoration: none;
}

.checkout-page__title {
    margin: 14px 0 0;
    font-size: 26px;
    color: #1f2f7a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon--bag-red {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: #1f2f7a;
    display: inline-block;
}

.icon--user-red {
    width: 14px;
    height: 14px;
    border: 2px solid #1f2f7a;
    border-radius: 999px 999px 5px 5px;
    display: inline-block;
}

.checkout-stepper {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.checkout-step {
    color: #7f8ab5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.checkout-step__icon {
    width: 20px;
    height: 20px;
    border: 1px solid currentColor;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.checkout-step--active {
    color: #1f2f7a;
    font-weight: 700;
}

.checkout-step--done {
    color: #17995c;
}

.checkout-step--done .checkout-step__icon {
    background: #17995c;
    border-color: #17995c;
    color: #fff;
}

.checkout-step__connector {
    flex: 1;
    height: 2px;
    background: #dbe3ff;
    border-radius: 999px;
}

.checkout-step__connector--active {
    background: #1f2f7a;
}

.checkout-layout {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

.checkout-forms-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.card {
    background: #fff;
    border: 1px solid #e7ebf8;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(27, 50, 125, 0.05);
}

.card--form,
.card--summary {
    padding: 20px;
}

.card__header {
    margin-bottom: 12px;
}

.card__title {
    margin: 0;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card__header--summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card__summary-total {
    color: #1f2f7a;
    font-weight: 800;
}

.summary-product {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.summary-product__image-wrap {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #eff3ff;
}

.summary-product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-product__image-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    background: #eff3ff;
}

.summary-product__name {
    margin: 0 0 4px;
    font-size: 14px;
}

.summary-product__attrs {
    margin: 0 0 4px;
    color: #6f79a1;
    font-size: 12px;
}

.summary-product__price {
    margin: 0;
    color: #1f2f7a;
    font-weight: 700;
    font-size: 14px;
}

.summary-lines {
    font-size: 14px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
}

.summary-line--total span:last-child {
    color: #1f2f7a;
    font-weight: 800;
}

.summary-separator {
    border: none;
    border-top: 1px solid #edf1ff;
    margin: 8px 0;
}

.summary-frete--pending {
    color: #8f97b8;
    font-style: italic;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form__group label {
    font-size: 14px;
    font-weight: 600;
}

.form__group input,
.card-form__select {
    border: 1px solid #d4dcf8;
    border-radius: 999px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    width: 100%;
    max-width: 100%;
}

.form__row {
    display: flex;
    gap: 10px;
    min-width: 0;
}

.form__group--flex1 { flex: 1; min-width: 0; }
.form__group--flex2 { flex: 2; min-width: 0; }
.form__group--flex3 { flex: 3; min-width: 0; }

.btn {
    border: none;
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn--full { width: 100%; }

.btn--gradient {
    color: #fff;
    background: linear-gradient(90deg, #1f4fb4, #0f2e70);
}

.btn--primary {
    background: #1f2f7a;
    color: #fff;
}

.btn--secondary {
    background: #eef3ff;
    color: #1f2f7a;
}

.checkout-form-error {
    margin-top: 10px;
    background: #feeceb;
    color: #b42318;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

.checkout-form-success {
    margin-top: 10px;
    background: #e7efff;
    color: #1f2f7a;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}

.cep-row {
    display: flex;
    gap: 8px;
}

.cep-status {
    margin-top: 4px;
    font-size: 12px;
    color: #6f79a1;
}

.shipping-block {
    margin-top: 8px;
    border-top: 1px solid #edf1ff;
    padding-top: 12px;
}

.shipping-block__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d7def7;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    cursor: pointer;
}

.shipping-option--selected {
    border-color: #1f2f7a;
    background: #eef3ff;
}

.shipping-option--free {
    cursor: default;
}

.shipping-option__radio {
    width: 18px;
    height: 18px;
    accent-color: #1f2f7a;
}

.shipping-option__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shipping-option__name {
    font-size: 14px;
    font-weight: 700;
}

.shipping-option__prazo {
    font-size: 12px;
    color: #7f8ab5;
}

.shipping-option__price {
    font-size: 14px;
    font-weight: 800;
    color: #1f2f7a;
}

.cart-actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pix-customer-summary {
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid #e1e7fb;
    border-radius: 12px;
    background: #f9fbff;
    font-size: 14px;
    line-height: 1.5;
}

.payment-summary__address {
    color: #4c5785;
}

.payment-summary__shipping {
    color: #1f2f7a;
    font-weight: 700;
}

.checkout-page .payment-methods {
    margin-bottom: 12px;
}

.payment-methods__label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
}

.payment-methods__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.payment-method-btn {
    border: 1px solid #c4d2f1;
    background: #fff;
    color: #17397e;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.payment-method-btn--active {
    background: #17397e;
    border-color: #17397e;
    color: #fff;
}

.pix-instructions {
    margin: 0 0 10px;
    color: #5f6b96;
    font-size: 13px;
}

.pix-result {
    margin-top: 10px;
}

.pix-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    background: #e7efff;
    color: #17397e;
    margin-bottom: 10px;
}

.pix-status--paid {
    background: #d9f8e5;
    color: #0f7f45;
}

.pix-status--failed {
    background: #feeceb;
    color: #b42318;
}

.pix-qr-wrap {
    min-height: 220px;
    border: 1px solid #e1e7fb;
    border-radius: 12px;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 14px;
}

.pix-qr-img {
    max-width: 220px;
    width: 100%;
    border-radius: 10px;
}

.pix-copy-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 13px;
}

.pix-copy-area {
    border: 1px solid #dbe4ff;
    border-radius: 10px;
    padding: 12px;
    background: #f8faff;
    font-size: 12px;
    line-height: 1.45;
    font-family: monospace;
    word-break: break-all;
    margin-bottom: 8px;
}

.pix-actions {
    margin-top: 8px;
}

.checkout-success {
    text-align: center;
    padding: 8px 4px 16px;
    max-width: 420px;
    margin: 0 auto;
}

.checkout-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1f3a8a 0%, #152a66 100%);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(31, 58, 138, 0.25);
}

.checkout-success__title {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #152a66;
    letter-spacing: -0.02em;
}

.checkout-success__text {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.55;
    color: #3d4f7a;
}

.checkout-success__text .js-success-email {
    color: #1f3a8a;
    word-break: break-all;
}

.checkout-success__hint {
    margin: 0 0 22px;
    font-size: 13px;
    color: #7f8ab5;
}

.checkout-success__cta {
    margin-top: 4px;
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-element-shell {
    border: 1px solid #dbe4f6;
    border-radius: 12px;
    padding: 12px;
}

.pagou-card-element {
    min-height: 48px;
}

.card-form__row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-form__row label {
    font-size: 13px;
    font-weight: 700;
}

.checkout-empty {
    margin-top: 14px;
    text-align: center;
    background: #fff;
    border: 1px solid #e7ebf8;
    border-radius: 14px;
    padding: 24px 16px;
}

.site-footer {
    margin-top: 24px;
    background: #fff;
    border-top: 1px solid #e7ebf8;
    padding: 20px 0 22px;
}

.footer-accordions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.footer-accordion {
    border-bottom: 1px solid #edf1ff;
    padding-bottom: 6px;
}

.footer-accordion__summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.footer-accordion__summary::-webkit-details-marker { display: none; }

.footer-accordion__content ul {
    list-style: none;
    padding: 6px 0 0;
    margin: 0;
}

.footer-accordion__content li + li {
    margin-top: 4px;
}

.footer-meta {
    margin-top: 10px;
    border-top: 1px solid #edf1ff;
    padding-top: 10px;
    font-size: 12px;
    color: #7f8ab5;
}

.footer-meta p { margin: 0; }
.footer-meta p + p { margin-top: 4px; }

@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .checkout-stepper {
        flex-direction: column;
        align-items: flex-start;
    }
    .checkout-step__connector {
        width: 90px;
        flex: 0 0 auto;
    }
    .footer-accordions {
        grid-template-columns: 1fr;
    }

    .checkout-page__container {
        padding: 0 10px;
    }

    .checkout-layout,
    .checkout-forms-col,
    .card,
    .card--form,
    .card--summary,
    .card__body,
    .card__body--summary {
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }

    .form__row {
        flex-wrap: wrap;
    }

    .form__group--flex1,
    .form__group--flex2,
    .form__group--flex3 {
        flex: 1 1 100%;
    }

    .cep-row {
        flex-wrap: wrap;
    }

    .cep-row .btn {
        width: auto;
        min-width: 88px;
    }

    .btn--full {
        width: 100%;
        max-width: 100%;
    }

    .payment-methods__options {
        grid-template-columns: 1fr;
    }
}
