﻿/* ============================================
   STYLES.CSS - ESTILOS PRINCIPAIS
   ============================================ */

/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: var(--primary-color);
}

body {
    padding-top: 150px;
}

/* Variáveis CSS */
:root {
    --primary-color: #000;
    --secondary-color: #666;
    --border-color: #e5e5e5;
    --hover-color: #f5f5f5;
    --green-color: #22c55e;
    --reserva-red: #800020;
    --reserva-gold: #ffd700;
}

/* Fontes */
@font-face {
    font-family: 'Reserva Display';
    src: url('fonts/ReservaDisplay.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Audacious Black';
    src: url('fonts/DEMO-audacious-displayblack.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   PROMO BAR E COUNTDOWN
   ============================================ */

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #800020;
    color: #fff;
    padding: 10px 0;
    z-index: 102;
    font-size: 13px;
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-bar.promo-hidden,
.header.promo-bar-hidden {
    transform: translateY(-100%);
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgency-badge {
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 2px;
    color: gold;
    text-transform: uppercase;
    opacity: 1;
    font-family: 'Inter', sans-serif;
    align-items: center;
    animation: 2s ease-in-out infinite twinkle;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.urgency-badge i {
    font-size: 12px;
    color: gold;
    animation: 2s ease-in-out infinite twinkle;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.scarcity-text {
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    opacity: 1;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 1.2px;
    align-items: center;
}

.scarcity-text i {
    font-size: 12px;
    color: gold;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.countdown-label {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    opacity: 1;
    white-space: nowrap;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.8px;
    flex-shrink: 0;
}

.countdown-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.countdown-logo img {
    display: block;
    visibility: visible;
}

.logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.countdown-timer {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-number {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: gold;
    line-height: 1;
    min-width: 22px;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.countdown-label-unit {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #fff;
    text-transform: lowercase;
    line-height: 1;
    margin-top: 2px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.countdown-separator {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: gold;
    margin: 2px 2px 0;
    align-self: flex-start;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
    animation: 1s ease-in-out infinite blink;
}

.promo-text {
    margin: 0;
    color: #fff;
}

.promo-highlight {
    color: #22c55e;
    font-weight: 600;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 101;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.header.promo-bar-hidden {
    top: 0;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header-main {
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-start;
    padding-top: 6px;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: -50px;
    top: calc(50% + 3px);
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
}

.logo img {
    height: 35px;
}

.menu-btn {
    background: none;
    border: none;
    padding: 8px;
    display: none;
    align-items: center;
    cursor: pointer;
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    line-height: 1;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    white-space: nowrap;
}

.main-nav a:hover {
    text-decoration: underline;
}

.main-nav .outlet {
    color: #000;
}

.header-right {
    display: flex;
    transform: translate(15px, 6px);
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
}

.search-btn {
    display: none;
}

.search-text {
    color: #000;
    flex: 1;
    text-align: left;
}

.search-icon {
    color: #000;
    flex-shrink: 0;
}

.search-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    font-size: 14px;
    width: 200px;
}

.search-input-container .search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: var(--primary-color);
    background: none;
}

.search-input-container .search-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-btn img {
    display: block;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.wishlist-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wishlist-btn img {
    display: block;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   PRODUCT SECTION
   ============================================ */

.product-section {
    padding: 20px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    will-change: auto;
}

.main-image img,
.main-image video {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    object-fit: cover;
}

/* Badges de desconto */
.pix-badges-container {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.pix-badge {
    position: relative;
    background: #e4f6ed;
    color: #4a9721;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 20px;
}

.pix-badge-text,
.pix-badge-method,
.frete-badge-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    display: inline;
    font-family: 'Inter', sans-serif;
    color: #4a9721;
}

.premium-discount-badge {
    z-index: 11;
    background: #000;
    border-radius: 0;
    min-width: 65px;
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.premium-discount-number,
.premium-discount-text {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 36px;
}

.premium-discount-number {
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
}

.premium-discount-text {
    color: red;
    line-height: 1;
    letter-spacing: 2px;
    margin-top: 2px;
}

.discount-badge-47 {
    z-index: 11;
    background: #000;
    border-radius: 0;
    min-width: 65px;
    position: absolute;
    top: 25px;
    right: 16px;
    color: #fff;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.discount-number,
.discount-text {
    font-weight: 800;
    font-family: 'Spectral', serif;
    line-height: 1;
}

.discount-number {
    font-size: 28px;
    color: #fff;
}

.discount-text {
    font-size: 20px;
    color: red;
    letter-spacing: 1px;
    margin-top: 2px;
}

.discount-pix {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}

/* Carousel */
.carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: 0.3s;
    padding: 0;
    cursor: pointer;
}

.carousel-indicator.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transition: 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.main-image:hover .carousel-prev,
.main-image:hover .carousel-next {
    opacity: 1;
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

/* Zoom Overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.zoom-overlay.active {
    display: flex;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 32px;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#zoomImage {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

/* ============================================
   PRODUCT INFO
   ============================================ */

.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-info h1 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: gold;
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Seleção de Camisetas */
.shirt-selection-container {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: none;
}

.shirt-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.selection-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.selection-group:last-child {
    margin-bottom: 0;
}

.selection-label {
    font-size: 14px;
    color: var(--secondary-color);
}

.selection-label span {
    color: var(--primary-color);
    font-weight: 500;
}

.color-options,
.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 10px;
    padding-bottom: 4px;
}

.color-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    padding: 3px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #fff;
    transition: 0.2s;
    cursor: pointer;
}

.color-btn:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.color-btn.active {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-btn-out-of-stock {
    position: relative;
    opacity: 0.5;
    cursor: not-allowed;
    overflow: visible;
}

.color-btn-out-of-stock:hover {
    border-color: var(--border-color) !important;
}

.color-btn-out-of-stock .notify-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 18px;
    height: 18px;
    color: #999;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-btn-out-of-stock .color-thumb {
    opacity: 0.5;
}

.color-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.size-btn {
    padding: 8px 14px;
    min-width: 44px;
    min-height: 44px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: 0.2s;
}

.size-btn:hover {
    background: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.size-btn.active {
    background: var(--primary-color);
    border-width: 3px;
    color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.size-btn-out-of-stock {
    position: relative;
    color: #999 !important;
    opacity: 0.7;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
}

.size-btn-out-of-stock:hover {
    background: #fff !important;
    border-color: var(--border-color) !important;
}

.size-btn-out-of-stock .notify-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    color: #999;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

.size-btn-out-of-stock span {
    color: #999;
}

/* Preço */
.price-section {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.price-discount-badge {
    background: #dc2626;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.price-old {
    font-size: 16px;
    color: var(--secondary-color);
    text-decoration: line-through;
}

.price-current {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
}

.price-installment {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.savings {
    color: #22c55e;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
}

.frete-badge {
    position: relative;
    background: #e4f6ed;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin-top: 0;
    margin-bottom: 8px;
    width: fit-content;
}

.frete-badge-text,
.frete-badge-state {
    line-height: 20px;
    font-family: 'Inter', sans-serif;
    color: #4a9721;
}

.frete-badge-state {
    font-size: 12px;
    display: inline;
    font-weight: 600;
}

/* Botão de Comprar */
.cart-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.add-to-cart-btn {
    flex: 1;
    background: #38ab6b;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #2d8a56;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 100px;
}

.trust-badge-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.trust-badge-item span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: var(--secondary-color);
}

.trust-text {
    text-align: center;
    color: var(--secondary-color);
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
}

/* Informações Adicionais */
.additional-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    padding: 8px 0;
}

.info-link:hover {
    text-decoration: underline;
}

.info-link .chevron {
    margin-left: auto;
    transition: transform 0.3s;
}

.info-link.active .chevron {
    transform: rotate(180deg);
}

.info-link img {
    display: block;
}

/* Tabela de Tamanhos */
.size-table-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.size-table-container.active {
    max-height: 400px;
    margin-top: 16px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.size-table thead {
    background: var(--primary-color);
    color: #fff;
}

.size-table td,
.size-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
}

.size-table td:first-child {
    font-weight: 600;
}

.size-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.size-table tbody tr:last-child {
    border-bottom: none;
}

.size-table tbody tr:hover {
    background: var(--hover-color);
}

/* Tabs */
.tabs {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.tab-list {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ============================================
   CARRINHO LATERAL
   ============================================ */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100dvh;
    background: #fff;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.cart-sidebar-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.cart-product-count {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 400;
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: opacity 0.2s;
}

.cart-close-btn:hover {
    opacity: 0.7;
}

.cart-sidebar-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 24px 20px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.cart-empty {
    padding: 60px 24px;
    text-align: center;
}

.cart-empty p {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 0;
}

.cart-empty-subtitle {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 8px;
    opacity: 0.7;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--hover-color);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--secondary-color);
}

.cart-item-size-color {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
}

.cart-item-price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cart-item-discount {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.cart-item-price-old {
    font-size: 13px;
    color: var(--secondary-color);
    text-decoration: line-through;
}

.cart-item-price-current {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Order Bump */
.cart-item-bonus {
    background: linear-gradient(135deg, #f8f9fa 0, #fff 100%);
    padding: 16px;
    border-radius: 0;
    border: none;
    transition: 0.3s;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.cart-item-bonus + .cart-item-bonus {
    margin-top: 16px;
}

.cart-item-bonus .cart-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-bonus .cart-item-details {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-bonus .cart-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

.order-bump-header {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.order-bump-label {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
}

.order-bump-content {
    position: relative;
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-left: 0;
    flex-shrink: 0;
}

.order-bump-content::before {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.order-bump-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.order-bump-checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: 0.2s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.order-bump-checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.order-bump-checkbox:checked + .order-bump-checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.order-bump-checkbox:checked + .order-bump-checkbox-custom::after {
    opacity: 1;
}

.order-bump-label:hover .order-bump-checkbox-custom {
    border-color: var(--primary-color);
}

.cart-item-bonus:hover,
.order-bump-label:hover .cart-item-bonus {
    background: linear-gradient(135deg, #f0f0f0 0, #fff 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-bump-label:has(.order-bump-checkbox:checked) .cart-item-bonus {
    background: linear-gradient(135deg, #e8f5e9 0, #f1f8f4 100%);
    border: 2px solid var(--green-color);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.order-bump-options {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
    animation: 0.3s slideDown;
    clear: both;
    width: 100%;
}

.order-bump-promo-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 12px 0 4px;
    text-align: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.order-bump-cueca-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-bump-cueca-group {
    margin-bottom: 12px;
}

.order-bump-cueca-group:last-child {
    margin-bottom: 0;
}

.order-bump-option-group {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.order-bump-option-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    display: block;
}

.order-bump-options-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-bump-color-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    width: 100%;
    max-width: 180px;
}

.order-bump-size-options {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    min-width: 220px;
}

.order-bump-color-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 4px;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-color);
    flex: 1;
    justify-content: center;
}

.order-bump-color-btn:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

.order-bump-color-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.order-bump-color-btn.active .order-bump-color-thumb {
    border-color: #fff;
}

.order-bump-color-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid transparent;
    transition: border-color 0.2s;
}

.order-bump-size-btn {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
    transition: 0.2s;
    color: var(--primary-color);
}

.order-bump-size-btn:hover {
    border-color: var(--primary-color);
}

.order-bump-size-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

/* Footer do Carrinho */
.cart-sidebar-footer {
    flex-shrink: 0;
    position: relative;
    padding: 16px 20px calc(50px + env(safe-area-inset-bottom));
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    border-top: 2px solid var(--border-color);
}

.cart-total {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.cart-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--secondary-color);
}

.cart-total-line:last-child {
    margin-bottom: 0;
}

.cart-total-pix {
    color: var(--green-color);
    font-weight: 500;
}

.cart-total-bonus {
    color: var(--primary-color);
    font-weight: 500;
}

.cart-total-final {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 12px;
    padding-top: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-top: 2px solid var(--border-color);
}

.cart-checkout-btn {
    width: 100%;
    padding: 20px;
    background: #38ab6b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(56, 171, 107, 0.3);
    position: relative;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.cart-checkout-btn:hover {
    background: #2d8a56;
}

.cart-checkout-btn .checkout-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */

.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-help-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000;
    background: #fff;
    transition: 0.3s;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
}

.whatsapp-help-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.whatsapp-expanded {
    position: relative;
    margin-top: 8px;
    animation: 0.3s slideDown;
}

.whatsapp-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000;
    background: #fff;
    transition: 0.3s;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 140px;
}

.whatsapp-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 24px;
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: 'Manrope', sans-serif;
}

.whatsapp-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #666;
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-close:hover {
    background: #f5f5f5;
    transform: scale(1.1);
    color: #000;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #f5f5f5;
    margin-top: 60px;
}

.footer-newsletter {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
    align-items: center;
}

.newsletter-left {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.newsletter-icon {
    flex-shrink: 0;
    color: #e74c3c;
}

.newsletter-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.newsletter-text p {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-btn {
    padding: 12px 32px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #333;
}

.footer-nav {
    padding: 40px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25d366 !important;
    font-weight: 600;
}

.contact-email,
.contact-hours {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 20px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   SIMILAR PRODUCTS
   ============================================ */

.similar-products {
    padding: 60px 0;
    background: #fff;
}

.similar-products-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.similar-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}

.wishlist-icon:hover {
    transform: scale(1.1);
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.out-of-stock-overlay span {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-info h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.4;
    min-height: 40px;
}

.product-card-prices {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card-prices .new-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 15px gold, 0 0 25px rgba(255, 215, 0, 0.5);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    }
    50% {
        opacity: 0.7;
        text-shadow: 0 0 20px gold;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }
    
    .promo-bar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .countdown-content {
        gap: 8px;
        padding: 4px 0;
    }
    
    .header {
        top: 80px;
    }
    
    .main-nav,
    .menu-btn {
        display: none;
    }
    
    .logo {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        pointer-events: none;
        display: flex;
        align-items: center;
        padding-left: 16px;
    }
    
    .logo img {
        height: 28px;
    }
    
    .mobile-search,
    .search-btn {
        display: none !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .main-image {
        aspect-ratio: 1/1.2;
        width: 100vw;
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .header-main,
    .product-section {
        padding: 12px 0;
    }
    
    .zoom-overlay {
        padding: 20px;
    }
    
    #zoomImage {
        max-width: 95%;
        max-height: 95%;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .similar-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-info h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .product-rating {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .price-old,
    .star-rating i,
    .whatsapp-text {
        font-size: 14px;
    }
    
    .rating-text,
    .trust-text {
        font-size: 12px;
    }
    
    .trust-badges {
        gap: 16px;
        padding: 12px 0;
    }
    
    .trust-badge-item {
        min-width: 80px;
    }
    
    .trust-badge-item i {
        font-size: 20px;
    }
    
    .trust-badge-item span {
        font-size: 11px;
    }
    
    .trust-text {
        padding: 0 10px;
    }
    
    .color-btn {
        width: 40px;
        height: 40px;
    }
    
    .size-btn {
        padding: 10px 16px;
        min-width: 48px;
        min-height: 48px;
        font-size: 15px;
    }
    
    .price-discount-badge {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .price-current {
        font-size: 24px;
    }
    
    .price-installment,
    .savings {
        font-size: 13px;
    }
    
    .shirt-selection-container {
        padding: 10px 12px;
        margin-bottom: 16px;
    }
    
    .shirt-selection-container:last-of-type {
        margin-bottom: 0;
    }
    
    .premium-discount-badge {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
        min-width: 55px;
    }
    
    .premium-discount-number {
        font-size: 28px;
    }
    
    .premium-discount-text {
        font-size: 28px;
        margin-top: 1px;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-help-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .whatsapp-card {
        padding: 10px 16px;
        min-width: 120px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    
    .whatsapp-close {
        width: 28px;
        height: 28px;
        top: -6px;
        right: -6px;
    }
    
    .countdown-content {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .urgency-badge {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .countdown-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .scarcity-text {
        white-space: normal;
        text-align: center;
        font-size: 10px;
        letter-spacing: 0.8px;
        line-height: 1.3;
    }
    
    .countdown-logo {
        display: flex;
    }
    
    .countdown-timer {
        padding: 5px 12px;
        border-width: 1px;
    }
    
    .countdown-number {
        font-size: 13px;
        min-width: 20px;
    }
    
    .countdown-label-unit {
        font-size: 9px;
    }
    
    .cart-sidebar {
        max-width: 100%;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .cart-sidebar-header {
        padding: 20px;
        flex-shrink: 0;
    }
    
    .cart-sidebar-content {
        padding: 20px 20px 30px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }
    
    .cart-sidebar-footer {
        flex-shrink: 0;
        position: relative;
        padding: 16px 20px calc(50px + env(safe-area-inset-bottom));
        z-index: 100;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
    }
    
    .cart-item-title {
        font-size: 15px;
    }
    
    .cart-item-info {
        font-size: 13px;
    }
    
    .cart-total {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .cart-checkout-btn {
        padding: 18px;
        font-size: 14px;
        line-height: 16px;
        margin-top: 10px;
        position: relative;
        z-index: 101;
    }
    
    .cart-total-line {
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .cart-total-final {
        margin-top: 10px;
        padding-top: 10px;
        font-size: 17px;
    }
    
    .cart-item-bonus {
        padding: 16px;
    }
    
    .order-bump-content {
        padding-left: 0;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .order-bump-content::before {
        width: 20px;
        height: 20px;
    }
    
    .order-bump-checkbox-custom {
        width: 20px;
        height: 20px;
        top: 0;
        left: 0;
    }
    
    .cart-item-bonus .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-bonus .cart-item-details {
        padding-right: 0;
        min-width: 0;
        flex: 1;
    }
    
    .cart-item-bonus .cart-item-title {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .cart-item-bonus .cart-item-price {
        margin-top: 6px;
    }
    
    .cart-item-bonus .cart-item-price-old {
        font-size: 11px;
    }
    
    .cart-item-bonus .cart-item-price-current {
        font-size: 16px;
    }
    
    .order-bump-options {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .order-bump-cueca-group {
        margin-bottom: 10px;
    }
    
    .order-bump-cueca-label {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .order-bump-options-row {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .order-bump-option-group {
        min-width: calc(50% - 4px);
        flex: 1;
    }
    
    .order-bump-option-label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .order-bump-color-btn,
    .order-bump-size-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .order-bump-color-thumb {
        width: 18px;
        height: 18px;
    }
}
