:root {
/* Final Style V2.0 */
    --primary-blue: #2c52a3;
    --secondary-blue: #1c3d82;
    --accent-blue: #3d6acc;
    --success-green: #25d366;
    --dark-grey: #333;
    --light-grey: #f7f7f7;
    --border-grey: #e0e0e0;
    --white: #ffffff;
    --discount-green: #e6ffec;
    --discount-text: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--dark-grey);
}

/* Utils */
.text-success { color: var(--success-green); }
.text-white { color: var(--white); }

/* Top Bar */
.top-bar {
    background-color: var(--secondary-blue);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Header */
.main-header {
    background-color: var(--primary-blue);
    padding: 12px 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
}

.promo-text {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.logo-busca { color: var(--white); }
.logo-busca-alt { color: var(--white); font-weight: 100; opacity: 0.9; }

.menu-btn, .header-icons i {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.header-icons {
    display: flex;
    gap: 15px;
}

/* Adjusted Hero Block */
.hero-block-new {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.main-slider-section {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.blue-price-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.price-header-small {
    font-size: 12px;
    opacity: 0.8;
}

.price-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-huge {
    font-size: 42px;
    font-weight: 900;
}

.limited-time-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 15px;
}

.limited-time-box i { font-size: 34px; }

.limited-text {
    display: flex;
    flex-direction: column;
}

.limited-text span { font-size: 14px; }
.limited-text strong { font-size: 18px; font-weight: 900; }

.shipping-warranty-badges {
    display: flex;
    gap: 10px;
}

.info-badge-white {
    background: #fff;
    color: var(--primary-blue);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.slide-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.main-swiper {
    height: 400px;
    background: #fff;
}

.main-swiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
    color: #333;
    background: rgba(255,255,255,0.8);
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; font-weight: bold; }

/* Price Overlay on Swiper */
.price-overlay {
    background-color: var(--primary-blue);
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.overlay-left {
    display: flex;
    flex-direction: column;
}

.installment-small { font-size: 10px; font-weight: 500; opacity: 0.9; }
.price-large { font-size: 26px; font-weight: 800; line-height: 1; margin-top: 5px; }

.overlay-right {
    display: flex;
    align-items: center;
}

.timer-section {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 15px;
}

.timer-section i { font-size: 24px; }
.timer-text { display: flex; flex-direction: column; }
.timer-title { font-size: 10px; font-weight: 700; }
.timer-subtitle { font-size: 12px; font-weight: 800; }

.shipping-badges {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background: #1a2a44;
    font-size: 11px;
    font-weight: 600;
}

.badge-item { display: flex; align-items: center; gap: 5px; }

/* Thumbnails */
.thumbs-container {
    padding: 10px 15px;
    max-width: 600px;
    margin: 0 auto;
}

.thumbs-swiper .swiper-slide {
    height: 80px;
    overflow: hidden;
    opacity: 0.6;
    cursor: pointer;
    border: 1px solid #eee;
    background: #fff;
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary-blue);
}

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

/* Product Info Section */
.product-info-section {
    padding: 20px 15px;
    max-width: 600px;
    margin: 0 auto;
    background: white;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.stars { color: #f1c40f; font-size: 13px; }
.rating-text { color: #888; font-size: 11px; }

.color-selection {
    margin-top: 20px;
}

.color-selection p { font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.color-options { display: flex; gap: 12px; }

.color-circle {
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.color-circle.active {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

/* Flash Sale Bar */
.flash-sale-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 20px;
}

.flash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-price-col {
    display: flex;
    flex-direction: column;
}

.flash-price {
    font-size: 28px;
    font-weight: 900;
}

.flash-old-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.old-strike { text-decoration: line-through; opacity: 0.7; }

.flash-percent {
    background: #fff;
    color: var(--primary-blue);
    padding: 2px 6px;
    font-weight: 800;
    font-size: 11px;
}

.lightning-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lightning-btn {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
}

.flash-timer {
    font-size: 11px;
    font-weight: 600;
}

/* Premium Info Section */
.product-info-section-premium {
    padding: 20px;
    background: #fff;
}

.savings-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.save-badge {
    background: #e6f3ff;
    color: var(--primary-blue);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
}

.product-brand-badge {
    margin-bottom: 15px;
}

.promo-label {
    background: #e6f3ff;
    color: var(--primary-blue);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 5px;
    display: inline-block;
}

.product-name-new {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.color-selector-new {
    margin: 20px 0;
}

.color-selector-new p {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.color-buttons {
    display: flex;
    gap: 10px;
}

.btn-color {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

#timer {
    background: #fff;
    color: var(--primary-blue);
    padding: 5px 10px;
    border: 1px solid #eef;
    border-radius: 4px;
    font-weight: 700;
}

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

.rating-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.yellow-star { color: #fcc419; }
.rating-text-new { color: #888; font-weight: 500; }

/* Delivery Trust */
.delivery-trust {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.trust-item i { font-size: 22px; width: 30px; }

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong { font-size: 13px; }
.trust-text span { font-size: 11px; color: #666; margin-top: 2px; }

.green-label {
    position: absolute;
    right: 0;
    top: 5px;
    color: var(--success-green);
    font-size: 11px;
    font-weight: 700;
}

/* Buy Button */
.btn-buy {
    display: block;
    background-color: #28a745;
    color: white;
    text-align: center;
    padding: 20px;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 30px;
    transition: background 0.3s;
}

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

.badges-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    text-align: center;
}

.badges-footer .badge {
    font-size: 10px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badges-footer .badge i { font-size: 16px; color: var(--success-green); }

/* Details Tabs */
.details-tabs {
    background: white;
    margin-top: 15px;
    max-width: 600px;
    margin: 15px auto 0;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-grey);
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    color: #888;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.tab-content {
    display: none;
    padding: 20px 15px;
}

.tab-content.active { display: block; }

.tab-content h3 { font-size: 18px; margin-bottom: 15px; }
.tab-content h4 { font-size: 15px; margin-top: 20px; margin-bottom: 10px; }
.tab-content p { font-size: 14px; line-height: 1.6; margin-bottom: 15px; color: #444; }
.tab-content ul { list-style: none; padding-left: 0; }
.tab-content ul li { font-size: 14px; margin-bottom: 10px; line-height: 1.5; border-bottom: 1px solid #f0f0f0; padding-bottom: 8px; }

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #fdfdfd;
    padding: 15px;
    border: 1px solid #f0f0f0;
}

.spec-item { display: flex; flex-direction: column; }
.spec-item strong { font-size: 11px; color: #999; text-transform: uppercase; }
.spec-item span { font-size: 13px; font-weight: 600; margin-top: 2px; }

/* Footer */
.main-footer {
    background-color: #1a2a44;
    color: white;
    padding: 40px 15px;
    margin-top: 40px;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo { margin-bottom: 15px; font-size: 24px; font-weight: 800; }
.main-footer p { font-size: 12px; opacity: 0.7; line-height: 1.6; margin-bottom: 30px; }

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-col h3 { font-size: 14px; font-weight: 700; margin-bottom: 15px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; opacity: 0.8; margin-bottom: 10px; }

.payment-methods {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.payment-methods h3 { font-size: 12px; font-weight: 700; margin-bottom: 15px; }

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons i { font-size: 30px; opacity: 0.5; }

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.footer-bottom p { font-size: 10px; margin-bottom: 5px; }

/* Review Items */
.review-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.review-item:last-child { border-bottom: none; }

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

.review-header .stars { color: #fcc419; font-size: 10px; }

.review-item p {
    font-size: 13px;
    font-style: italic;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .hero-block-new, .product-page { width: 100%; max-width: 100%; border-radius: 0; }
    .top-bar span { font-size: 10px; }
    .header-container { padding: 0 10px; }
    .logo { font-size: 20px; }
    
    .main-slider-section { width: 100%; margin: 0; }
    .main-swiper { height: 350px; width: 100%; }
    
    .price-now { font-size: 28px; }
    .product-name-new { font-size: 19px; line-height: 1.3; font-weight: 800; }
    
    .btn-buy {
        width: 100%;
        padding: 18px;
        font-size: 18px;
        position: sticky;
        bottom: 0;
        left: 0;
        z-index: 9999;
        margin-top: 20px;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        border: none;
    }
    
    .flash-sale-bar { padding: 12px 15px; }
    .flash-price { font-size: 24px; }
    .lightning-btn { font-size: 10px; padding: 4px 8px; }
    
    .product-info-section-premium { padding: 15px; }
    
    .spec-grid { grid-template-columns: 1fr; gap: 10px; }
    
    .tab-btn { padding: 10px; font-size: 13px; }
    
    .footer-col h3 { margin-top: 15px; }
}

@media (min-width: 768px) {
    .header-container, .main-slider-section, .thumbs-container, .product-info-section-premium, .details-tabs, .footer-container {
        max-width: 800px;
    }
}
