/* ==========================================
   CellStore Perú - E-commerce Styles
   ========================================== */

/* Variables */
:root {
    --primary-color: #FFB800;
    --primary-dark: #E6A600;
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.logo strong {
    color: var(--primary-color);
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
}

.search-bar input:focus {
    border-color: var(--primary-color);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    background: var(--primary-dark);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.search-results.active {
    display: block;
}

/* Navigation */
.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-color);
    font-size: 20px;
}

.icon-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: var(--bg-light);
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1920') center/cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(255,184,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 24px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #333;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

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

.link-more {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-more:hover {
    gap: 12px;
}

/* ==========================================
   BRANDS
   ========================================== */
.brands {
    padding: 60px 0;
    background: var(--bg-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.brand-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.brand-item i {
    font-size: 48px;
    color: var(--primary-color);
}

.brand-item span {
    font-weight: 600;
    color: var(--text-color);
}

/* ==========================================
   PRODUCTS GRID
   ========================================== */
.featured-products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: var(--bg-light);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.product-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: var(--success-color);
    color: var(--white);
}

.badge-hot {
    background: var(--danger-color);
    color: var(--white);
}

.badge-sale {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--primary-color);
    font-size: 14px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-light);
}

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

.price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-old {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.product-cart-btn:hover {
    background: var(--primary-dark);
}

/* ==========================================
   SPECIAL OFFERS
   ========================================== */
.special-offers {
    padding: 80px 0;
    background: var(--bg-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-card.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.offer-card.featured {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.offer-card.hot {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--danger-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.offer-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.offer-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.offer-prices .old-price {
    font-size: 20px;
    text-decoration: line-through;
    opacity: 0.7;
}

.offer-prices .new-price {
    font-size: 36px;
    font-weight: 800;
}

.offer-discount {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* ==========================================
   TRUST SIGNALS
   ========================================== */
.trust-signals {
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 36px;
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter {
    padding: 60px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.contact-info i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.payment-methods i {
    font-size: 28px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================
   FLOAT BUTTONS
   ========================================== */
.whatsapp-float, .chat-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float {
    background: #25d366;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.chat-float {
    bottom: 110px;
    background: var(--primary-color);
}

.chat-float:hover {
    transform: scale(1.1);
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
    padding: 20px 0;
    background: var(--bg-light);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-color);
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-bar {
        order: 3;
        flex: 100%;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ==========================================
   SHOP PAGE
   ========================================== */
.shop-main {
    padding: 40px 0 80px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.filter-item:hover {
    background: var(--bg-light);
}

.filter-item input[type="checkbox"],
.filter-item input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

.filter-item .count {
    font-size: 13px;
    color: var(--text-light);
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.price-input-group {
    flex: 1;
}

.price-input-group label {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.price-input-group input {
    padding: 8px;
    font-size: 14px;
}

.price-separator {
    color: var(--text-light);
    font-weight: 600;
}

.price-slider {
    display: flex;
    gap: 10px;
}

.price-slider input[type="range"] {
    flex: 1;
    padding: 0;
}

/* Shop Content */
.shop-content {
    display: flex;
    flex-direction: column;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 20px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.results-count {
    font-size: 14px;
    color: var(--text-color);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-mode {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.sort-by label {
    font-size: 14px;
    font-weight: 500;
}

.sort-by select {
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ==========================================
   PRODUCT DETAIL PAGE
   ========================================== */
.product-detail {
    padding: 40px 0 80px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.wishlist-btn-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.wishlist-btn-detail:hover,
.wishlist-btn-detail.active {
    background: var(--danger-color);
    color: var(--white);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail:hover {
    border-color: var(--primary-color);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.price-old {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-discount {
    padding: 8px 16px;
    background: var(--danger-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

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

.option-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.option-btn.active,
.option-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.option-colors {
    display: flex;
    gap: 12px;
}

.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.color-btn.active,
.color-btn:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.installments-calculator {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
}

.installments-calculator h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.installments-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.installment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.installment-option:hover {
    box-shadow: var(--shadow-sm);
}

.installment-option input {
    width: auto;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--success-color);
    font-weight: 600;
}

.product-warranty {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.warranty-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.warranty-item strong {
    display: block;
    margin-bottom: 3px;
}

.warranty-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    font-weight: 600;
    background: none;
    border: none;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

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

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spec-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.spec-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.spec-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.spec-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.rating-score {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
}

.stars-large {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-bar-item span:first-child {
    min-width: 60px;
    font-size: 14px;
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary-color);
}

.rating-bar-item span:last-child {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
    color: var(--text-light);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.reviewer-info i {
    font-size: 40px;
    color: var(--primary-color);
}

.stars-small {
    font-size: 14px;
    color: var(--primary-color);
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.review-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--success-color);
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 13px;
    transition: var(--transition);
}

.helpful-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-section li {
    padding-left: 0;
    font-size: 15px;
    color: var(--text-color);
}

.related-products {
    margin-top: 80px;
}

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.blog-main {
    padding: 60px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content h2 a {
    color: var(--secondary-color);
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

.blog-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
}

.search-form button {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.category-list span {
    color: var(--text-light);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-post-item a {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.popular-post-item a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 12px;
    color: var(--text-light);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.newsletter-widget {
    background: var(--primary-color) !important;
    color: var(--secondary-color);
}

.newsletter-widget .widget-title {
    color: var(--secondary-color);
}

/* ==========================================
   SUPPORT PAGE
   ========================================== */
.support-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.support-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-search {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}

.hero-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-light);
}

.hero-search input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
}

.support-options {
    padding: 60px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.option-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
}

.whatsapp-icon {
    background: #e8f8f0;
    color: #25d366;
}

.option-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.option-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.faq-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 12px 30px;
    background: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 25px 20px;
    line-height: 1.7;
    color: var(--text-color);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 50px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 3px;
}

.contact-item span {
    font-size: 13px;
    color: var(--text-light);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

/* ==========================================
   CART & CHECKOUT
   ========================================== */
.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.step.completed .step-number {
    background: var(--success-color);
    color: var(--white);
}

.step span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.step.active span {
    color: var(--primary-color);
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--border-color);
    margin: 0 20px;
}

.step-line.completed {
    background: var(--success-color);
}

.cart-main {
    padding: 40px 0 80px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

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

.item-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.item-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.remove-btn {
    color: var(--danger-color);
    font-size: 14px;
    font-weight: 500;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 100px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
}

.summary-row.total-row {
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 15px 0;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.promo-code input {
    flex: 1;
}

.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.trust-badge i {
    color: var(--success-color);
}

/* Checkout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
}

.form-section {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.payment-method {
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.payment-method input:checked + .payment-option {
    border-color: var(--primary-color);
    background: rgba(255, 184, 0, 0.05);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
}

.yape-icon {
    background: #722C8E;
    color: var(--white);
}

.plin-icon {
    background: #00A9E0;
    color: var(--white);
}

.payment-option span {
    font-weight: 600;
    font-size: 14px;
}

.card-details {
    margin-top: 20px;
}

.installments-section {
    margin-top: 20px;
}

.installments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.installment-card {
    cursor: pointer;
}

.installment-card input {
    display: none;
}

.installment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.installment-card input:checked + .installment-content {
    border-color: var(--primary-color);
    background: rgba(255, 184, 0, 0.05);
}

.installment-number {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

.installment-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.checkbox-label a {
    color: var(--primary-color);
}

.order-summary-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-sticky {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.order-item-mini {
    display: flex;
    gap: 15px;
}

.order-item-mini img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.order-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
}

.security-badge i {
    color: var(--success-color);
}

.footer-minimal {
    padding: 30px 0;
}

.footer-content-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods-mini {
    display: flex;
    gap: 15px;
}

.payment-methods-mini i {
    font-size: 24px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

.modal-large {
    max-width: 1200px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 24px;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.modal-close:hover {
    background: var(--danger-color);
    color: var(--white);
}

.modal-body {
    padding: 30px;
}

/* RESPONSIVE ADICIONAL */
@media (max-width: 1200px) {
    .shop-layout {
        grid-template-columns: 250px 1fr;
    }
    
    .product-layout {
        gap: 40px;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 28px;
    }
    
    .price-current {
        font-size: 36px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .installments-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}