
:root {
    --primary: #D8003D;
    --primary-light: #ff4f81;
    --accent: #FFF600;
    --dark: #191818;
    --light: #ffffff;
    --gray: #f5f5f5;
}


.oferta {
    margin-top: 80px;
    padding-top: 40px;
    background-color: var(--light);
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
    margin-top: 10px;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 49px;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    background-color: #f9f9f9;
}

.category-btn.active {
    background-color: #ffd000;
    color: #ffffff;
    border-color: #ffd000;
}


.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-header {
    background-color: white;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.product-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbff00;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1.3);
}

.product-content {
    display: flex;
    flex-wrap: wrap;
}


.product-images {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 20px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 5px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-image:hover img {
    transform: scale(1.03);
}

.product-thumbnails {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.thumbnail {
    flex: 1;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
    transition: opacity 0.2s ease;
}

.thumbnail:hover {
    opacity: 0.85;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.product-details {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-specs, .product-info {
    margin-bottom: 25px;
}

.product-specs h4, .product-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    position: relative;
    display: inline-block;
}

.product-specs h4::after, .product-info h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #ffd000;
    bottom: -5px;
    left: 0;
}

.product-specs ul, .product-info ul {
    list-style: none;
}

.product-specs li, .product-info li {
    font-size: 1.1rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    color: #555;
}

.product-specs li::before, .product-info li::before {
    content: '•';
    color: #ffd000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.product-pricing {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
}

.price .amount {
    color: #D8003D;
    margin-left: 5px;
    font-size: 1.5rem;
}

.product-pricing .btn {
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 5px;
    background-color: #ffd000;
    color: #333;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-pricing .btn:hover {
    background-color: #e6bc00;
    transform: translateY(-2px);
}

.product-warning {
    margin-top: 10px;
    text-align: left;
    padding: 12px 15px;
    border-radius: 5px;
    border-left: 3px solid #D8003D;
    background-color: #fff5f5;
}

.product-warning h4 {
    color: #D8003D;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.product-warning p {
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .product-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .product-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .category-nav {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .product-name {
        font-size: 1.6rem;
    }
    
    .product-specs h4, .product-info h4 {
        font-size: 1.1rem;
    }
    
    .product-specs li, .product-info li {
        font-size: 0.95rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .price .amount {
        font-size: 1.3rem;
    }
} 