/* Wine Cabinets Page Specific Styles */

/* Hero Section */
.wine-cabinets-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-features .feature-item i {
    font-size: 1.2rem;
}

/* Product Categories Section */
.product-categories {
    background-color: #ffffff;
}

.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.category-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
}

.category-specs .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Featured Products Section */
.featured-products {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.premium {
    background: #6c757d;
}

.product-badge.professional {
    background: #dc3545;
}

.product-specs .spec-item {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-specs .spec-item strong {
    color: var(--text-dark);
}

.product-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.product-actions {
    margin-top: 1.5rem;
}

/* Technology Section */
.technology-section {
    background-color: #ffffff;
}

.tech-content {
    padding-right: 2rem;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(218, 161, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 1.5rem;
}

.tech-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tech-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-image img {
    transition: transform 0.3s ease;
}

.tech-image:hover img {
    transform: scale(1.02);
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-table {
    border: 1px solid rgba(0,0,0,0.1);
}

.comparison-table .table th {
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
}

.comparison-table .table td {
    border: none;
    padding: 1rem;
    vertical-align: middle;
}

.comparison-table .table tbody tr:hover {
    background-color: rgba(218, 161, 76, 0.05);
}

.comparison-table .text-success i {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b98b4e 100%);
    color: white;
}

.cta-section .main-heading {
    color: white !important;
}

.cta-section .paragraph {
    color: rgba(255,255,255,0.9) !important;
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .wine-cabinets-hero-section {
        padding: 60px 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .tech-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 2rem !important;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-image img {
        height: 200px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .tech-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .wine-cabinets-hero-section {
        padding: 40px 0;
    }
    
    .hero-features .feature-item {
        justify-content: center;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .product-specs .spec-item {
        font-size: 0.8rem;
    }
    
    .comparison-table .table th,
    .comparison-table .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b98b4e;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Product Card Hover Effects */
.product-card:hover .product-badge {
    transform: scale(1.1);
}

.product-features .badge {
    transition: all 0.3s ease;
}

.product-features .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Technology Icon Animations */
.tech-icon {
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

/* Comparison Table Animations */
.comparison-table .table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table .table tbody tr:hover {
    transform: translateX(5px);
}

/* Category Card Icon Animations */
.category-card:hover .category-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

/* Button Hover Effects */
.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 161, 76, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
} 