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

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Barra de Frete Grátis */
.frete-banner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    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: 21px;
    font-weight: normal;
    color: rgb(238, 77, 45);
    font-family: 'ShopeeFont2', sans-serif;
}

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

.discount-badge {
    color: rgb(238, 77, 45);
    padding: 4px 4px;
    border-radius: 4px;
    font-size: 10px;
    background-color: rgb(254, 238, 234);
}
span.txt {
    font-size: 10px;
}
.favorite-btn {
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    margin-left: auto;
}

.favorite-btn:hover {
    border-color: #ee4d2d;
    color: #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;
}

/* 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: 26px;
    }

    .original-price {
        font-size: 18px;
    }

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


