/* Font Face Declarations */
@font-face {
    font-family: 'ShopeeFont1';
    src: url('../fonts/2313f68c10458709.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ShopeeFont2';
    src: url('../fonts/769ea541b3eef14d.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ShopeeFont1', 'ShopeeFont2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 80px;
}
img.frete-car {
    width: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Utility Classes */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}
svg.shopee-svg-icon.navbar__link-icon.icon-shopping-cart-2 {
    stroke: white;
    width: 25px;
}
.navbar__link-icon.icon-shopping-cart-2 {
    fill: rgb(255 255 255);
    cursor: pointer;
    width: 26px;
    height: 26px;
}
svg.shopee-svg-icon.header-with-search__shopee-logo.icon-shopee-logo {
    width: 92px;
    height: 50px;
    fill: white;
}


.header {
    padding: 1px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(#ee4d2d, #ff7337);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    color: white;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    font-family: 'ShopeeFont1', sans-serif;
}

.header-center {
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: 2px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'ShopeeFont1', sans-serif;
}

.search-btn {
    background: #ee4d2d;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-btn,
.cart-btn,
.menu-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.cart-btn {
    background: transparent;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ee4d2d;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #333;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Product Page */
.product-page {
    width: 100%;
    box-sizing: border-box;
}

.mobile-title {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
}

.mobile-title h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-summary {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: #666;
    flex-wrap: wrap;
}

.product-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Product Images */
.product-images {
    background: white;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.main-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    touch-action: pan-x pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.image-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ee4d2d #f0f0f0;
    padding: 10px 5px;
    margin-top: 10px;
    /* Garantir que o scroll funcione em todos os dispositivos */
    white-space: nowrap;
    width: 100%;
}

/* Estilizar scrollbar no Chrome/Safari/Edge */
.image-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.image-thumbnails::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0 5px;
}

.image-thumbnails::-webkit-scrollbar-thumb {
    background: #ee4d2d;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.image-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #d43f1f;
}

.barra-offer {
    width: 100%;
    margin-top: 15px;
}

.thumbnail {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #ee4d2d;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    background: white;
    padding: 15px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.product-badge {
    display: inline-block;
    background: #ee4d2d;
    color: white;
    padding: 2px 2px;
    font-size: 9px;
}

.product-title {
    font-size: 15px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: normal;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffc107;
    font-size: 16px;
}

.star.half {
    background: linear-gradient(90deg, #ffc107 50%, #e0e0e0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.reviews-count {
    font-size: 12px;
    color: #666;
}

.report-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-left: auto;
}

.report-link:hover {
    color: #ee4d2d;
}

/* Nova estrutura de preço - Estilo Shopee */
.product-price-section {
    background: #fff5f3;
    padding: 16px 15px 12px;
    margin-bottom: 0;
    margin-top: 0;
    border-bottom: none;
}

.price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.price-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sold-count {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
}

.installment-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #333;
    margin-top: 4px;
}

.installment-value {
    color: #333;
    font-weight: 500;
}

.installment-info svg {
    color: #999;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .product-price-section {
        padding: 12px 15px 10px;
    }
    
    .current-price {
        font-size: 26px;
    }
    
    .original-price {
        font-size: 13px;
    }
    
    .discount-badge {
        font-size: 13px;
    }
    
    .sold-count {
        font-size: 12px;
    }
    
    .installment-info {
        font-size: 13px;
    }
    
    .favorite-btn {
        width: 24px;
        height: 24px;
    }
    
    .favorite-btn svg {
        width: 18px;
        height: 18px;
    }
}

#reviewsContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Paginação de Reviews */
.reviews-pagination {
    display: none; /* Esconder por padrão */
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
    padding: 0 12px;
}

.pagination-btn:hover {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.pagination-btn.active {
    background: #ee4d2d;
    color: #fff;
    border-color: #ee4d2d;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #e5e5e5;
    color: #999;
}

.pagination-btn:disabled:hover {
    border-color: #e5e5e5;
    color: #999;
}

.pagination-dots {
    padding: 0 5px;
    color: #999;
}

/* Barra de Frete Grátis */
.frete-banner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 60px;
}

.frete-banner-left {
    background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 100%;
    position: relative;
    min-width: 80px;
}

.frete-banner-left::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 40%, 0 60%, 100% 80%, 100% 100%, 0 100%);
    z-index: 1;
}

.frete-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    z-index: 2;
    position: relative;
}

.frete-banner-right {
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
    height: 100%;
}

.frete-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.2;
}

.frete-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.frete-conditions {
    color: #007bff;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}

.frete-conditions:hover {
    text-decoration: underline;
}

/* Responsividade para barra de frete */
@media (max-width: 768px) {
    .frete-banner {
        height: 55px;
    }

    .frete-banner-left {
        min-width: 70px;
        padding: 0 15px;
    }

    .frete-icon {
        width: 35px;
        height: 35px;
    }

    .frete-title {
        font-size: 14px;
    }

    .frete-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .frete-banner {
        height: 50px;
    }

    .frete-banner-left {
        min-width: 60px;
        padding: 0 10px;
    }

    .frete-icon {
        width: 30px;
        height: 30px;
    }

    .frete-title {
        font-size: 13px;
    }

    .frete-subtitle {
        font-size: 11px;
        flex-wrap: wrap;
    }
}

.current-price {
    font-size: 30px;
    font-weight: 500;
    color: rgb(238, 77, 45);
    font-family: 'ShopeeFont2', sans-serif;
    line-height: 1;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    line-height: 1;
}

.discount-badge {
    color: rgb(238, 77, 45);
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(254, 238, 234);
    line-height: 1;
}

span.txt {
    font-size: 10px;
}

.favorite-btn {
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ee4d2d;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.favorite-btn:hover {
    background: #fff5f3;
    transform: scale(1.1);
}

.favorite-btn.favorited {
    color: #ee4d2d;
}

.favorite-btn.favorited svg path {
    fill: #ee4d2d;
    stroke: #ee4d2d;
}

/* Color Options */
.color-options {
    margin-bottom: 20px;
}

.color-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
    -webkit-overflow-scrolling: touch;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    border: 2px solid transparent;
    min-width: 70px;
    flex-shrink: 0;
}

.color-item:hover {
    background: #f5f5f5;
}

.color-item.active {
    border-color: #ee4d2d;
}

.color-swatch {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.color-item span {
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* Seller Info */
.seller-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 4px;
}

.seller-logo-container {
    position: relative;
    flex-shrink: 0;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.logo-e {
    color: white;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.logo-bar {
    width: 30px;
    height: 4px;
    background: linear-gradient(to right, #ff7337, #ffc107);
    border-radius: 2px;
}

.official-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ee4d2d;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    white-space: nowrap;
    z-index: 1;
    border: 1px solid white;
}

.seller-info-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seller-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.seller-details {
    flex: 1;
}

.seller-name {
    font-size: 15px;
    color: #000000;
    margin-bottom: 4px;
    line-height: 1.2;
}

.seller-status {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

.view-store-btn {
    background: transparent;
    color: #ee4d2d;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid #ee4d2d;
    transition: all 0.2s;
}

.view-store-btn:hover {
    background: #ee4d2d;
    color: white;
}

.seller-stats {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.seller-stat-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.stat-value {
    color: #ee4d2d;
    font-size: 14px;
    font-weight: 600;
}

.stat-label {
    color: #666;
    font-size: 13px;
    font-weight: 400;
}

/* Responsive adjustments for seller info */
@media (max-width: 480px) {
    .seller-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .view-store-btn {
        width: 100%;
        text-align: center;
    }

    .seller-stats {
        gap: 12px;
    }

    .seller-stat-item {
        font-size: 12px;
    }

    .stat-value {
        font-size: 13px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* Specifications */
.specifications {
    margin-bottom: 20px;
}

.spec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.spec-header h2 {
    font-size: 15px;
    font-weight: normal;
    color: #000000;
}

.spec-link {
    color: #ee4d2d;
    text-decoration: none;
    font-size: 14px;
}

/* Size Guide Section (na página) */
.size-guide-section-page {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.size-guide-header-page {
    margin-bottom: 15px;
}

.size-guide-header-page h2 {
    font-size: 15px;
    font-weight: normal;
    color: #000000;
}

.size-guide-content-page {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.size-guide-content-page table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.size-guide-content-page th,
.size-guide-content-page td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: center;
    font-size: 13px;
}

.size-guide-content-page th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.size-guide-content-page tr:nth-child(even) {
    background-color: #fafafa;
}

.size-guide-content-page img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

/* Product Video Modal */
.product-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.product-video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-video-modal .video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.product-video-modal .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    z-index: 1;
}

.product-video-modal .video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 5px 10px;
}

.product-video-modal video {
    width: 100%;
    max-height: 80vh;
    background: #000;
    border-radius: 8px;
}

/* Description */
.description {
    margin-bottom: 20px;
}

.description h2 {
    font-size: 15px;
    font-weight: normal;
    color: #000000;
    margin-bottom: 15px;
}

.description p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.description p.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.see-more-btn {
    background: transparent;
    border: none;
    color: #ee4d2d;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0 auto;
}

/* Reviews */
.reviews {
    margin-bottom: 20px;
    margin-top: 2rem;
}

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

.reviews-header h2 {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}

.see-all-link {
    color: #ee4d2d;
    text-decoration: none;
    font-size: 14px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fafafa;
    border-radius: 4px;
}

.stars-large {
    display: flex;
    gap: 2px;
}

.stars-large .star {
    font-size: 24px;
}

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

.rating-number {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.reviews-count-large {
    font-size: 14px;
    color: #666;
}

.review-item {
    padding: 15px;
    background: white;
    border-radius: 4px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-avatar-icon {
    width: 100%;
    height: 100%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.helpful-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-menu-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.review-stars .star {
    font-size: 16px;
}

.review-variation {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.review-image {
    position: relative;
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
  .offer-contain {
    background: linear-gradient(to right, rgb(238, 77, 45), rgb(255, 115, 55));
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    flex-wrap: wrap;
}
img.offermy {
    margin-left: 6px;
    max-width: 150px;
    height: auto;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
}

.timer-box {
    background: #1a1a1a;
    border-radius: 2px;
    padding: 3px 3px;
    display: flex;
    gap: 1px;
    min-width: 12px;
    justify-content: center;
}

.timer-digit {
    color: white;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Arial', 'Helvetica', sans-serif;
    min-width: 9px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 8px rgba(135, 206, 250, 0.4);
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
}

.timer-separator {
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin: 0 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 6px rgba(255, 255, 255, 0.5);
    line-height: 1;
}

span.timer {
    color: white;
    font-size: 12px;
    margin-left: 10px;
    white-space: nowrap;
}

/* Action Buttons (Mobile) */
.action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    height: 3.1rem;
}

.action-btn {
    flex: 0.8;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-family: 'ShopeeFont1', sans-serif;
    line-height: 10px;
}

.chat-btn {
    background: #00bfa5;
    color: white;
}

.cart-btn-mobile {
    background: #00bfa5;
    color: white;
}

.buy-btn {
    background: #ee4d2d;
    color: white;
    flex: 1.3;
    padding: 10px;
    border: none;
    font-size: 15px;
}

.buy-btn-desktop {
    width: 100%;
    padding: 14px 20px;
    background: #ee4d2d;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 16px;
    margin-bottom: 16px;
    transition: background 0.3s;
    font-family: 'ShopeeFont1', sans-serif;
}

.buy-btn-desktop:hover {
    background: #d73211;
}

.action-btn:hover {
    opacity: 0.9;
}

.action-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: white;
}

/* Desktop Styles */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
  
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }

    .header {
        padding: 15px 0;
    }

    .product-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }

    .product-images {
        flex: 1;
        max-width: 500px;
        display: flex;
        flex-direction: column;
    }

    .barra-offer {
        width: 100%;
        margin-top: 15px;
        order: 2;
    }

    .product-info {
        flex: 1;
        padding: 20px;
    }

    .product-title {
        font-size: 20px;
    }

    .current-price {
        font-size: 32px;
    }

    .original-price {
        font-size: 16px;
    }
    
    .discount-badge {
        font-size: 16px;
    }

    .color-list {
        max-height: none;
    }

    .action-buttons {
        display: none;
    }

    .breadcrumb {
        display: block;
    }

    .product-page {
        padding: 20px 0;
    }

    .view-store-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .seller-info {
        gap: 15px;
        padding: 20px;
    }

    .seller-header-row {
        align-items: center;
    }

    .seller-name {
        font-size: 20px;
    }

    .seller-stats {
        gap: 30px;
    }

    .seller-avatar {
        width: 70px;
        height: 70px;
    }

    .logo-e {
        font-size: 38px;
    }

    .seller-header-row {
        align-items: center;
    }

    .seller-name {
        font-size: 16px;
    }

    .seller-stats {
        gap: 25px;
    }

    /* Timer maior no desktop */
    .timer-box {
        padding: 6px 10px;
        border-radius: 6px;
        min-width: 45px;
    }

    .timer-digit {
        font-size: 18px;
        min-width: 12px;
    }

    .timer-separator {
        font-size: 18px;
        margin: 0 3px;
    }

    span.timer {
        font-size: 14px;
        margin-left: 15px;
    }

    .timer-display {
        gap: 3px;
        margin-left: 6px;
    }

    .countdown {
        gap: 8px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .product-content {
        gap: 50px;
    }

    .product-images {
        max-width: 600px;
        display: flex;
        flex-direction: column;
    }

    .barra-offer {
        width: 100%;
        margin-top: 15px;
    }
}

/* Scrollbar Styling */
.color-list::-webkit-scrollbar {
    width: 6px;
}

.color-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.color-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.color-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus {
    outline-offset: 2px;
}

/* =================================
   Product Page - Variations Section
   ================================= */
.product-variations-section {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.product-variations-section .section-label,
.product-sizes-section .section-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: block;
}

.color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Shopee Selection Box Style - Variations */
.selection-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 2px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.1s ease;
    background: white;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.87);
    min-height: 40px;
    position: relative;
    overflow: hidden;
}

.selection-box:hover {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.selection-box.selected {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.selection-box.selected::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent #ee4d2d transparent;
}

.selection-box.selected::after {
    content: '\2713';
    position: absolute;
    bottom: 0;
    right: 1px;
    color: white;
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
}

.selection-box-image {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.selection-box-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

/* =================================
   Product Page - Variations Section
   ================================= */
.product-variations-section {
    margin: 8px 0 0 0;
}

.product-variations-section .section-label {
    margin-bottom: 8px;
}

/* =================================
   Product Page - Sizes Section
   ================================= */
.product-sizes-section {
    margin: 0 0 8px 0;
    padding-top: 0;
}

.product-sizes-section .section-label {
    margin-bottom: 8px;
}

.size-options-page {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* Shopee Selection Box Style - Sizes */
.size-option-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 2px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.1s ease;
    background: white;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.87);
    min-height: 40px;
    min-width: 50px;
    position: relative;
    overflow: hidden;
}

.size-option-item:hover {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.size-option-item.selected {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.size-option-item.selected::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent #ee4d2d transparent;
}

.size-option-item.selected::after {
    content: '\2713';
    position: absolute;
    bottom: 0;
    right: 1px;
    color: white;
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
}

.size-guide-link-page {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ee4d2d;
    font-size: 13px;
    text-decoration: none;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.size-guide-link-page:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.size-guide-link-page svg {
    flex-shrink: 0;
}

/* =================================
   Size Guide Modal
   ================================= */
.size-guide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    pointer-events: none;
}

.size-guide-modal.show {
    display: block;
    pointer-events: all;
}

.size-guide-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.size-guide-modal.show .size-guide-modal-overlay {
    opacity: 1;
}

.size-guide-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 12px;
    max-width: 90%;
    max-height: 85vh;
    width: 600px;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.size-guide-modal.show .size-guide-modal-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.size-guide-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.size-guide-modal-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.size-guide-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.2s;
}

.size-guide-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.size-guide-modal-body {
    padding: 20px;
}

.size-guide-modal-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.size-guide-modal-body th,
.size-guide-modal-body td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
}

.size-guide-modal-body th {
    background: #f8f8f8;
    font-weight: 600;
    color: #333;
}

.size-guide-modal-body tr:nth-child(even) {
    background: #fafafa;
}

.size-guide-modal-body tr:hover {
    background: #fff5f3;
}

.size-guide-modal-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.size-guide-modal-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.size-guide-modal-body li {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .selection-box {
        padding: 6px 10px;
        font-size: 13px;
        min-height: 36px;
    }

    .selection-box-image {
        width: 20px;
        height: 20px;
    }

    .selection-box-name {
        max-width: 80px;
    }

    .size-option-item {
        padding: 6px 12px;
        font-size: 13px;
        min-height: 36px;
        min-width: 45px;
    }

    .size-guide-modal-content {
        max-width: 95%;
        max-height: 90vh;
    }

    .size-guide-modal-body th,
    .size-guide-modal-body td {
        padding: 8px 6px;
        font-size: 12px;
    }
}

/* Review Image Lightbox */
.review-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
}

.review-lightbox.show {
    display: block;
}

.review-lightbox .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.review-lightbox .lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.review-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.review-lightbox .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.review-lightbox .lightbox-close:hover {
    opacity: 0.7;
}

/* Review Video Modal */
.review-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
}

.review-video-modal.show {
    display: block;
}

.review-video-modal .video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.review-video-modal .video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.review-video-modal .video-modal-content video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.review-video-modal .video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.review-video-modal .video-modal-close:hover {
    opacity: 0.7;
}

/* Review Image Clickable */
.review-image {
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.review-image:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Review Video Styles */
.review-video {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    width: 120px;
    height: 120px;
}

.review-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-video .video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.review-video .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.2s;
}

.review-video:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.review-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
}


