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

*:focus,
*:focus-visible,
*:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #0f1111;
    line-height: 1.6;
    padding-bottom: 80px; /* Espaço para o botão fixado */
    -webkit-touch-callout: none;
    touch-action: pan-y;
}

input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text;
    user-select: text;
}

p, span, div, h1, h2, h3, h4, h5, h6 {
    -webkit-user-select: text;
    user-select: text;
}

/* Header */
.header {
    background-color: #ffffff;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wap-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1400px;
    margin: 10px auto;
    padding: 0 20px;
    font-size: 12px;
    color: #565959;
}

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

.breadcrumb a:hover {
    color: #c7511f;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 20px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-title-above {
    font-size: 18px;
    font-weight: 400;
    color: #0f1111;
    line-height: 1.4;
    margin-bottom: 8px;
}

.sales-badge {
    margin-bottom: -5px;
    margin-top: -20px;
}

.sales-badge-text {
    font-size: 13px;
    color: #565959;
    font-weight: 400;
    font-style: italic;
}

.image-carousel {
    position: relative;
    width: 100%;
}

.main-image-container {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    min-height: 500px;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    cursor: grab;
}

.main-image-container:active {
    cursor: grabbing;
}

.main-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    color: #0f1111;
    left: 10px;
    right: auto;
}

.carousel-btn:active,
.carousel-btn:focus {
    transform: translateY(-50%);
    outline: none;
}

.carousel-btn:hover {
    background-color: #fff;
    border-color: #ff9900;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-50%);
}

.carousel-next {
    left: auto;
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    flex-wrap: wrap;
    max-width: 100%;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: #ff9900;
    width: 30px;
    border-radius: 5px;
}

.indicator:hover {
    background-color: #ff9900;
}

.main-image {
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.main-image img {
    max-width: 100%;
    max-height: 460px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
}

.main-image img:hover {
    transform: scale(1.02);
}

.product-video {
    width: 100%;
    margin-bottom: 20px;
}

.product-video video {
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    background-color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 5px;
    width: 100%;
}

.thumbnail {
    width: calc((100% - 30px) / 4);
    height: auto;
    aspect-ratio: 1;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    padding: 2px;
    background-color: #fff;
    transition: border-color 0.3s;
    object-fit: cover;
    flex-shrink: 0;
    position: relative;
}


.thumbnail:hover {
    border-color: #ff9900;
}

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

.thumbnail-wrapper {
    width: calc((100% - 30px) / 4);
    aspect-ratio: 1;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.thumbnail-wrapper .thumbnail {
    width: 100%;
    height: 100%;
    margin: 0;
}

.thumbnail-wrapper:hover .thumbnail {
    border-color: #ff9900;
}

.thumbnail-wrapper.active .thumbnail {
    border-color: #ff9900;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.thumbnail-wrapper:hover .thumbnail-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.thumbnail-count {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Voltage Selector */
.voltage-selector {
    margin-top: 15px;
}

.voltage-label {
    font-size: 14px;
    font-weight: 600;
    color: #0f1111;
    display: block;
    margin-bottom: 12px;
}

.voltage-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

.voltage-btn {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.voltage-btn:hover {
    border-color: #ff9900;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.voltage-btn.active {
    border-color: #007185;
    background-color: #f0f9ff;
    box-shadow: 0 2px 8px rgba(0,113,133,0.2);
}

.voltage-btn-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voltage-value {
    font-size: 16px;
    font-weight: 600;
    color: #0f1111;
}

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

.voltage-price-current {
    font-size: 24px;
    font-weight: 600;
    color: #0f1111;
}

.voltage-price-current sup {
    font-size: 14px;
    vertical-align: super;
}

.voltage-price-old {
    font-size: 14px;
    color: #565959;
    text-decoration: line-through;
}

.voltage-stock {
    font-size: 14px;
    color: #007600;
    font-weight: 500;
}

/* Offer Container */
.offer-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.product-video-section .product-video-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-video-section .product-video-container #productVideo {
    width: 100%;
    max-width: 800px;
    border-radius: 4px;
    background-color: #000;
    display: block;
    object-fit: contain;
    height: auto;
    min-height: 300px;
}

.product-video-section .product-video-container #productVideo::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.product-video-section .product-video-container #productVideo::--webkit-media-controls-fullscreen-button {
    display: none !important;
}

.product-video-section .product-video-container #productVideo:not([poster]) {
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.product-video-section .product-video-container #productVideo[poster] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-video-section .product-video-container .video-play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    padding: 0;
    box-sizing: border-box;
}

.product-video-section .product-video-container .video-play-pause-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.product-video-section .product-video-container .video-play-pause-btn:active {
    opacity: 0.8;
}

.product-video-section .product-video-container .video-play-pause-btn svg {
    width: 28px;
    height: 28px;
}

.product-video-section .product-video-container #productVideo.playing + .video-play-pause-btn {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.product-video-section .product-video-container .video-play-pause-btn.fade-out {
    opacity: 0.2;
    pointer-events: auto;
}

.product-video-section .product-video-container:hover .video-play-pause-btn.fade-out,
.product-video-section .product-video-container .video-play-pause-btn:hover,
.product-video-section .product-video-container .video-play-pause-btn:hover.fade-out,
.product-video-section .product-video-container #productVideo.paused + .video-play-pause-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #f0f2f2;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 0;
}

.countdown-label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.countdown-time {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Lightning Offer */
.lightning-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #FF722B 0%, #FF2C54 100%);
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 0;
}

.lightning-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lightning-icon path {
    fill: #ffffff;
}

.lightning-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Product Info */
.product-info {
    padding: 0 0px;
}

.product-title {
    font-size: 20px;
    font-weight: 400;
    color: #0f1111;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-rating {
    margin-bottom: 15px;
    margin-top: -15px;
}

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

.star {
    color: #ffa41c;
    font-size: 18px;
}

.rating-number {
    font-size: 14px;
    color: #007185;
    font-weight: 600;
}

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

.rating-link:hover {
    color: #c7511f;
    text-decoration: underline;
}


.price-current {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.price-discount {
    font-size: 24px;
    font-weight: 600;
    color: #B12704;
    line-height: 1;
}

.price-symbol {
    font-size: 18px;
    vertical-align: top;
}

.price-value {
    font-size: 42px;
    font-weight: 400;
    color: #0f1111;
    line-height: 1;
}

.price-old {
    margin-top: 5px;
}

.price-old-value {
    font-size: 16px;
    color: #565959;
    text-decoration: line-through;
}

.shipping-info {
    margin: 20px 0;
    padding: 15px;
    background-color: #f0f2f2;
    border-radius: 4px;
}

.shipping-text {
    color: #007600;
    font-size: 14px;
    margin-bottom: 5px;
}

.delivery-info {
    font-size: 14px;
    color: #0f1111;
}

.product-features {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.product-features h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #0f1111;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff9900;
    font-weight: bold;
}

.quantity-selector {
    margin: 20px 0;
}

.quantity-selector label {
    font-size: 14px;
    margin-right: 10px;
}

.quantity-select {
    padding: 8px 12px;
    border: 1px solid #d5d9d9;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f0f2f2;
    cursor: pointer;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.btn-add-cart,
.btn-buy-now {
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-add-cart {
    background-color: #ffd814;
    color: #0f1111;
}

.btn-add-cart:hover {
    background-color: #f7ca00;
}

.btn-buy-now {
    background-color: #ffa41c;
    color: #0f1111;
}

.btn-buy-now:hover {
    background-color: #fa8900;
}

.secure-payment {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #565959;
}

.secure-payment p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-payment .lock-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #565959;
}


/* Product Details Section */
.product-details-section {
    max-width: 1400px;
    margin: 40px auto 0;
}

.product-details-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0f1111;
}

/* Product Video Section */
.product-video-section {
    max-width: 1400px;
    margin: 40px auto 0;
}

.product-video-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0f1111;
}

.product-video-section .product-video {
    width: 100%;
    margin-bottom: 20px;
}

.product-video-section .product-video video {
    width: 100%;
    max-width: 800px;
    border-radius: 4px;
    background-color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tab-content h3 {
    font-size: 16px;
    margin: 20px 0 10px 0;
    color: #0f1111;
}

.tab-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
}

.tab-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.tab-content li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table tr {
    border-bottom: 1px solid #e7e7e7;
}

.spec-label {
    padding: 12px;
    background-color: #f0f2f2;
    font-weight: 600;
    width: 30%;
    font-size: 14px;
}

.spec-value {
    padding: 12px;
    font-size: 14px;
}

/* Reviews Section */
.reviews-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e7e7e7;
}

/* Specifications Section */
/* Product Presentation Section */
.product-presentation-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e7e7e7;
}

.presentation-block {
    margin-bottom: 50px;
}

.presentation-block:last-child {
    margin-bottom: 0;
}

.presentation-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.presentation-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.presentation-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.presentation-grid-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.presentation-text {
    max-width: 800px;
    margin: 0 auto;
}

.presentation-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f1111;
    margin-bottom: 15px;
    line-height: 1.3;
}

.presentation-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #0f1111;
    margin-bottom: 20px;
    line-height: 1.4;
}

.presentation-description {
    font-size: 16px;
    color: #0f1111;
    line-height: 1.6;
    margin-bottom: 15px;
}

.presentation-description:last-child {
    margin-bottom: 0;
}

/* Features Carousel Section */
.features-carousel-section {
    margin-top: 50px;
    padding: 30px 0;
}

.features-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.features-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.features-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.features-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.features-slide-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.features-slide-content {
    text-align: center;
    max-width: 600px;
}

.features-slide-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f1111;
    margin-bottom: 10px;
    line-height: 1.3;
}

.features-slide-text {
    font-size: 16px;
    color: #565959;
    line-height: 1.5;
    margin: 0;
}

.features-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #0f1111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.features-carousel-btn:hover {
    background-color: #fff;
    border-color: #ff9900;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.features-carousel-prev {
    left: 10px;
}

.features-carousel-next {
    right: 10px;
}

.features-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.features-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.features-indicator.active {
    background-color: #ff9900;
    width: 30px;
    border-radius: 6px;
}

.features-indicator:hover {
    background-color: #ff9900;
}

@media (max-width: 968px) {
    .presentation-content {
        gap: 25px;
    }
    
    .presentation-title {
        font-size: 24px;
    }
    
    .presentation-subtitle {
        font-size: 18px;
    }
    
    .presentation-description {
        font-size: 15px;
    }
    
    .presentation-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-carousel-section {
        margin-top: 40px;
    }
    
    .features-slide-title {
        font-size: 18px;
    }
    
    .features-slide-text {
        font-size: 15px;
    }
    
    .features-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .features-carousel-prev {
        left: 5px;
    }
    
    .features-carousel-next {
        right: 5px;
    }
}

@media (max-width: 600px) {
    .presentation-block {
        margin-bottom: 40px;
    }
    
    .presentation-title {
        font-size: 22px;
    }
    
    .presentation-subtitle {
        font-size: 16px;
    }
    
    .presentation-description {
        font-size: 14px;
    }
    
    .features-carousel-section {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .features-carousel-container {
        max-width: 100%;
    }
    
    .features-slide {
        padding: 0 15px;
        gap: 15px;
    }
    
    .features-slide-image {
        max-width: 100%;
    }
    
    .features-slide-title {
        font-size: 16px;
    }
    
    .features-slide-text {
        font-size: 14px;
    }
    
    .features-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .features-carousel-prev {
        left: 5px;
    }
    
    .features-carousel-next {
        right: 5px;
    }
    
    .features-indicator {
        width: 10px;
        height: 10px;
    }
    
    .features-indicator.active {
        width: 25px;
    }
}

.specifications-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e7e7e7;
}

.reviews-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.overall-rating {
    text-align: center;
}

.rating-large {
    font-size: 48px;
    font-weight: 600;
    display: block;
}

.stars-large {
    font-size: 24px;
    color: #ffa41c;
    display: block;
    margin: 10px 0;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
}

.rating-bar span:first-child {
    width: 80px;
}

.bar {
    flex: 1;
    height: 20px;
    background-color: #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background-color: #ffa41c;
    transition: width 0.3s;
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.review-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.review-stars {
    color: #ffa41c;
    font-size: 16px;
}

.verified-badge {
    font-size: 12px;
    color: #007600;
    background-color: #f0f2f2;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 500;
}

.review-date {
    color: #565959;
    font-size: 12px;
}

.review-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
    color: #0f1111;
}

.review-text {
    font-size: 14px;
    line-height: 1.8;
    color: #0f1111;
    margin-bottom: 5px;
}

.review-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.review-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

.review-image:hover {
    transform: scale(1.1);
    border-color: #ff9900;
    z-index: 10;
    position: relative;
}

/* Footer */
/* Proteção do Cliente */
.customer-protection {
    background-color: #ffffff;
    border-top: 1px solid #e7e7e7;
    padding: 40px 0;
    margin-top: 50px;
}

.customer-protection-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.customer-protection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    cursor: pointer;
}

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

.header-shield-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-shield-icon svg {
    width: 32px;
    height: 32px;
}

.customer-protection-title {
    font-size: 20px;
    font-weight: 600;
    color: #8B4513;
    margin: 0;
}

.header-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-arrow svg {
    width: 20px;
    height: 20px;
}

.customer-protection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.protection-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    background-color: transparent;
    border: none;
}

.protection-item:hover {
    box-shadow: none;
    transform: none;
}

.protection-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.protection-icon svg {
    width: 24px;
    height: 24px;
}

.protection-title {
    font-size: 16px;
    font-weight: 400;
    color: #0f1111;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

@media (max-width: 768px) {
    .customer-protection {
        padding: 30px 0;
    }
    
    .customer-protection-header {
        margin-bottom: 25px;
    }
    
    .customer-protection-title {
        font-size: 18px;
    }
    
    .header-shield-icon {
        width: 28px;
        height: 28px;
    }
    
    .header-shield-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .customer-protection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .protection-item {
        gap: 12px;
    }
    
    .protection-title {
        font-size: 15px;
    }
}

.footer {
    background-color: #131921;
    color: #ffffff;
    padding: 40px 20px 20px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #3a4553;
    text-align: center;
}

.footer-track-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dddddd;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.footer-track-link i {
    font-size: 18px;
    color: #ff9900;
}

.footer-track-link:hover {
    color: #ff9900;
    text-decoration: none;
}

.footer-track-link:hover i {
    color: #ff9900;
}


.footer-security {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
}

.footer-security-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.security-badge:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.footer-bottom-content {
    margin-bottom: 15px;
}

.footer-bottom-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-disclaimer {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    background-color: #fff;
    padding: 50px 20px;
    margin-top: 50px;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 48px;
    color: #ffa41c;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f1111;
    margin: 0;
}

.benefit-text {
    font-size: 14px;
    color: #565959;
    line-height: 1.5;
    margin: 0;
}

.benefit-text strong {
    color: #0f1111;
    font-weight: 600;
}

/* Botão Fixado de Comprar Agora */
.fixed-buy-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e7e7e7;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 20px;
}

.fixed-buy-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
}

.fixed-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.fixed-price .price-symbol {
    font-size: 16px;
    vertical-align: top;
}

.fixed-price .price-value {
    font-size: 32px;
    font-weight: 600;
    color: #0f1111;
    line-height: 1;
}

.btn-buy-now-fixed {
    flex: 1;
    max-width: 300px;
    padding: 15px 30px;
    background-color: #ffa41c;
    color: #0f1111;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-buy-now-fixed:hover {
    background-color: #fa8900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-buy-now-fixed:active {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
    transition: opacity 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #ff9900;
    text-decoration: none;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    padding: 16px;
    user-select: none;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 4px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ff9900;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 2001;
}


/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    animation: fadeIn 0.3s;
    align-items: center;
    justify-content: center;
}

.payment-modal[style*="display: block"],
.payment-modal.show {
    display: flex !important;
}

.payment-modal-content {
    position: relative;
    margin: 20px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.payment-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #565959;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 10;
}

.payment-modal-close:hover {
    color: #ff9900;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.payment-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.payment-header-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f1111;
    margin: 0;
}

.payment-instruction {
    font-size: 14px;
    color: #565959;
    margin-bottom: 20px;
}

.payment-options {
    margin-bottom: 24px;
}

.payment-option {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.payment-option:hover {
    border-color: #ff9900;
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.1);
}

.payment-option.active {
    border-color: #ff9900;
    background-color: #fff8f0;
}

.payment-option-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.payment-option-content input[type="radio"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.payment-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    flex: 1;
    width: 100%;
}

.payment-method-name {
    font-size: 16px;
    font-weight: 500;
    color: #0f1111;
    flex-shrink: 0;
}

.payment-badge {
    background-color: #28a745;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.payment-card-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    margin-left: 30px;
    flex-wrap: wrap;
}

.payment-card-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    max-width: 60px;
}

.payment-pix-logo {
    margin-top: 12px;
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.pix-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.payment-buy-button {
    width: 100%;
    padding: 14px 20px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.payment-buy-button:hover {
    background-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.payment-buy-button:active {
    transform: translateY(0);
}

.lock-icon {
    flex-shrink: 0;
}

.payment-trust-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #e7e7e7;
    flex-wrap: nowrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #565959;
}

.trust-badge svg {
    flex-shrink: 0;
}

/* Tracking Modal */
.tracking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    animation: fadeIn 0.3s;
    align-items: center;
    justify-content: center;
}

.tracking-modal.show {
    display: flex !important;
}

.tracking-modal-content {
    position: relative;
    margin: 20px;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.tracking-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #565959;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 10;
}

.tracking-modal-close:hover {
    color: #ff9900;
}

.tracking-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #0f1111;
    margin: 0 0 24px 0;
}

.tracking-form-section {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e7e7e7;
}

.tracking-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f1111;
    margin-bottom: 8px;
}

.tracking-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.tracking-input:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.tracking-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff9900;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tracking-submit-btn:hover {
    background-color: #e68900;
}

.tracking-info-section {
    margin-top: 24px;
}

.tracking-section-title {
    font-size: 16px;
    font-weight: 400;
    color: #0f1111;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.tracking-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #0f1111;
    margin: 24px 0 12px 0;
}

.tracking-steps {
    margin: 0 0 24px 20px;
    padding: 0;
    color: #565959;
    line-height: 1.8;
}

.tracking-steps li {
    margin-bottom: 8px;
}

.tracking-links-section {
    margin: 24px 0;
}

.tracking-note {
    font-size: 14px;
    color: #565959;
    margin: 16px 0 8px 0;
    line-height: 1.5;
}

.tracking-link {
    display: inline-block;
    color: #0066c0;
    text-decoration: none;
    font-size: 14px;
    margin: 8px 0;
    transition: color 0.3s;
}

.tracking-link:hover {
    color: #ff9900;
    text-decoration: underline;
}

.tracking-important-info {
    margin: 24px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.tracking-info-list {
    margin: 12px 0 0 20px;
    padding: 0;
    color: #565959;
    line-height: 1.8;
}

.tracking-info-list li {
    margin-bottom: 8px;
}

.tracking-delivery-info {
    margin-top: 24px;
}

.tracking-text {
    font-size: 14px;
    color: #565959;
    line-height: 1.6;
    margin: 12px 0 0 0;
}

@media (max-width: 600px) {
    .payment-modal-content {
        width: 95%;
        padding: 20px;
        margin: 10px auto;
    }
    
    .payment-modal-title {
        font-size: 16px;
    }
    
    .payment-instruction {
        font-size: 13px;
    }
    
    .payment-method-name {
        font-size: 15px;
    }
    
    .payment-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .payment-card-logos {
        margin-left: 0;
        gap: 6px;
    }
    
    .payment-card-logo {
        height: 20px;
    }
    
    .payment-pix-logo {
        margin-left: 0;
    }
    
    .pix-logo-img {
        height: 28px;
    }
    
    .payment-buy-button {
        font-size: 15px;
        padding: 12px 18px;
    }
    
    .payment-trust-badges {
        gap: 16px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .trust-badge {
        font-size: 11px;
    }
}

/* Product Videos Section */
.product-videos-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e7e7e7;
}

.product-videos-section .product-videos-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    flex-wrap: nowrap !important;
}

.product-videos-section .product-video-wrapper {
    flex: 0 0 calc((100% - 30px) / 3) !important;
    width: calc((100% - 30px) / 3) !important;
    display: flex !important;
    justify-content: center;
    min-width: 0;
    box-sizing: border-box;
    max-width: calc((100% - 30px) / 3) !important;
    position: relative;
}

.product-videos-section .video-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-videos-section .product-video-wrapper .product-video {
    width: 100% !important;
    height: auto;
    border-radius: 4px;
    background-color: #000;
    display: block;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    object-fit: contain;
    min-height: 250px;
}

.product-videos-section .product-video-wrapper .product-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.product-videos-section .product-video-wrapper .product-video::--webkit-media-controls-fullscreen-button {
    display: none !important;
}

.product-videos-section .product-video-wrapper .product-video:not([poster]) {
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.product-videos-section .product-video-wrapper .product-video[poster] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Garantir que o preview do vídeo apareça no mobile */
.product-videos-section .product-video-wrapper .product-video,
.product-video-section .product-video-container #productVideo {
    perspective: 1000px;
    -webkit-perspective: 1000px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #000 !important;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

/* Forçar exibição do primeiro frame no mobile */
.product-videos-section .product-video-wrapper .product-video::-webkit-media-controls-start-playback-button,
.product-video-section .product-video-container #productVideo::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.product-videos-section .product-video-wrapper .product-video:not([poster]),
.product-video-section .product-video-container #productVideo:not([poster]) {
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.video-container .video-play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    padding: 0;
    box-sizing: border-box;
}

.video-container .video-play-pause-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.video-container .video-play-pause-btn:active {
    opacity: 0.8;
}

.video-container .video-play-pause-btn svg {
    width: 28px;
    height: 28px;
}

.video-container .product-video.playing + .video-play-pause-btn {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.video-container .video-play-pause-btn.fade-out {
    opacity: 0.2;
    pointer-events: auto;
}

.video-container:hover .video-play-pause-btn.fade-out,
.video-container .video-play-pause-btn:hover,
.video-container .video-play-pause-btn:hover.fade-out,
.video-container .product-video.paused + .video-play-pause-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-container {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (max-width: 968px) {
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .wap-logo {
        max-height: 40px;
    }
    
    .breadcrumb {
        font-size: 11px;
        margin: 8px auto;
    }
    
    .product-title-above {
        font-size: 16px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .voltage-value {
        font-size: 14px;
    }
    
    .voltage-price-current {
        font-size: 20px;
    }
    
    .voltage-price-current sup {
        font-size: 12px;
    }
    
    .voltage-price-old {
        font-size: 12px;
    }
    
    .voltage-stock {
        font-size: 12px;
    }
    
    .offer-container {
        flex-wrap: nowrap;
        flex-direction: row;
        gap: 10px;
    }
    
    .countdown-timer {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .countdown-time {
        font-size: 13px;
    }
    
    .lightning-offer {
        padding: 8px 10px;
    }
    
    .lightning-text {
        font-size: 11px;
    }
    
    .lightning-icon {
        width: 16px;
        height: 16px;
    }
    
    .product-info {
        font-size: 14px;
    }
    
    .star {
        font-size: 16px;
    }
    
    .rating-number {
        font-size: 12px;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .spec-label {
        font-size: 12px;
        padding: 10px;
    }
    
    .spec-value {
        font-size: 12px;
        padding: 10px;
    }
    
    .btn-add-cart,
    .btn-buy-now {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .quantity-select {
        font-size: 13px;
    }
    
    .secure-payment {
        font-size: 12px;
    }
    
    .footer-top {
        padding-bottom: 15px;
    }
    
    .footer-track-link {
        font-size: 15px;
    }
    
    .footer-bottom {
        font-size: 11px;
    }
    
    .footer-disclaimer {
        font-size: 10px;
    }
    
    .tracking-modal-content {
        width: 95%;
        padding: 20px;
        max-height: 85vh;
    }
    
    .tracking-modal-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .tracking-subtitle {
        font-size: 16px;
    }
    
    .tracking-section-title {
        font-size: 14px;
    }
    
    .thumbnail-images {
        gap: 8px;
    }
    
    .thumbnail {
        width: calc((100% - 24px) / 4);
    }
    
    .thumbnail-wrapper {
        width: calc((100% - 24px) / 4);
    }
    
    .thumbnail-count {
        font-size: 16px;
    }
    
    .price-discount {
        font-size: 20px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .price-value-large {
        font-size: 28px;
    }
    
    .fixed-price .price-value {
        font-size: 20px;
    }
    
    .rating-large {
        font-size: 40px;
    }
    
    .benefits-section {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .benefit-icon {
        width: 54px;
        height: 54px;
    }
    
    .benefit-icon i {
        font-size: 42px;
    }
    
    .benefit-title {
        font-size: 15px;
    }
    
    .benefit-text {
        font-size: 13px;
    }
    
    .footer-security {
        padding: 25px 0;
    }
    
    .footer-security-title {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .footer-security-badges {
        gap: 18px;
    }
    
    .security-badge {
        height: 70px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 12px 0;
    }
    
    .wap-logo {
        max-height: 35px;
    }
    
    .breadcrumb {
        font-size: 10px;
        margin: 12px auto;
    }
    
    .main-content {
        padding: 0px 15px;
    }
    
    .offer-container {
        flex-wrap: nowrap;
        flex-direction: row;
        gap: 8px;
    }
    
    .countdown-timer {
        padding: 5px 7px;
        font-size: 10px;
        white-space: nowrap;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .countdown-time {
        font-size: 11px;
    }
    
    .lightning-offer {
        padding: 5px 7px;
        white-space: nowrap;
    }
    
    .lightning-text {
        font-size: 10px;
    }
    
    .lightning-icon {
        width: 12px;
        height: 12px;
    }
    
    .main-image-container {
        height: 300px;
        min-height: 300px;
        padding: 15px;
    }

    .main-image img {
        max-height: 270px;
    }
    
    .thumbnail-images {
        gap: 6px;
        padding: 3px;
    }
    
    .thumbnail {
        width: calc((100% - 18px) / 4);
    }
    
    .thumbnail-wrapper {
        width: calc((100% - 18px) / 4);
    }
    
    .thumbnail-count {
        font-size: 14px;
    }
    
    .product-video-section .product-video-container #productVideo {
        min-height: 250px;
    }
    
    .product-videos-section .product-video-wrapper .product-video {
        min-height: 200px;
    }

    .product-title-above {
        font-size: 14px;
    }

    .product-title {
        font-size: 16px;
    }
    
    .voltage-value {
        font-size: 13px;
    }
    
    .voltage-price-current {
        font-size: 18px;
    }
    
    .voltage-price-current sup {
        font-size: 11px;
    }
    
    .voltage-price-old {
        font-size: 11px;
    }
    
    .voltage-stock {
        font-size: 11px;
    }
    
    .product-info {
        font-size: 13px;
    }
    
    .star {
        font-size: 14px;
    }
    
    .rating-number {
        font-size: 11px;
    }
    
    .sales-badge-text {
        font-size: 11px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .voltage-buttons {
        flex-wrap: wrap;
    }

    .voltage-btn {
        min-width: calc(50% - 7.5px);
    }
    
    .spec-label {
        font-size: 11px;
        padding: 8px;
    }
    
    .spec-value {
        font-size: 11px;
        padding: 8px;
    }
    
    .btn-add-cart,
    .btn-buy-now {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .quantity-select {
        font-size: 12px;
    }
    
    .secure-payment {
        font-size: 11px;
    }
    
    .product-details-section h2 {
        font-size: 18px;
    }
    
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-bottom {
        font-size: 10px;
    }
    
    .footer-disclaimer {
        font-size: 9px;
    }
    
    .footer-track-link {
        font-size: 14px;
    }
    
    .footer-track-link i {
        font-size: 16px;
    }
    
    .tracking-modal-content {
        width: 95%;
        padding: 16px;
        max-height: 85vh;
    }
    
    .tracking-modal-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .tracking-subtitle {
        font-size: 15px;
    }
    
    .tracking-section-title {
        font-size: 13px;
    }
    
    .tracking-steps,
    .tracking-info-list {
        font-size: 13px;
        margin-left: 16px;
    }
    
    .tracking-note,
    .tracking-text {
        font-size: 13px;
    }
    
    .tracking-link {
        font-size: 13px;
    }

    .price-discount {
        font-size: 25px;
    }
    
    .price-value {
        margin-left: 0px;
        font-size: 32px;
    }
    
    .price-value-large {
        font-size: 24px;
    }

    .fixed-price .price-value {
        font-size: 20px;
    }
    
    .rating-large {
        font-size: 36px;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-rating-badge {
        align-items: flex-start;
        margin-top: 0px;
    }

    .review-images {
        gap: 8px;
    }

    .review-image {
        width: 80px;
        height: 80px;
    }

    .fixed-buy-content {
        flex-direction: column;
        gap: 10px;
    }

    .fixed-price {
        justify-content: center;
    }

    .btn-buy-now-fixed {
        max-width: 100%;
        width: 100%;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .lightbox-content {
        width: 95%;
        padding: 10px;
    }

    .lightbox-content img {
        max-height: 80vh;
    }

    .lightbox-counter {
        font-size: 14px;
        padding: 8px 15px;
        bottom: 20px;
    }
    
    .benefits-section {
        padding: 30px 15px;
        margin-top: -20px;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon i {
        font-size: 38px;
    }
    
    .benefit-title {
        font-size: 14px;
    }
    
    .benefit-text {
        font-size: 12px;
    }
    
    .footer-security {
        padding: 20px 0;
    }
    
    .footer-security-title {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .footer-security-badges {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .security-badge {
        height: 50px;
    }
}

