/* Cigar Humidor Page Specific Styles */

/* Hero Section */
.cigar-humidor-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;
}

/* Humidor Categories Section */
.humidor-categories {
    background-color: #ffffff;
}

.humidor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.humidor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.humidor-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
    transition: all 0.3s ease;
}

.humidor-card:hover .humidor-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.humidor-specs .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Featured Products Section */
.featured-humidors {
    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: #6f42c1;
}

.product-badge.luxury {
    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 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* Technology Section */
.technology-section {
    background-color: #ffffff;
}

.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;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.tech-icon i {
    font-size: 1.5rem;
}

.tech-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tech-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Cigar Care Section */
.cigar-care {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.care-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.care-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
    transition: all 0.3s ease;
}

.care-card:hover .care-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.care-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.care-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 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) {
    .cigar-humidor-hero-section {
        padding: 60px 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    .tech-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 2rem !important;
    }
    
    .humidor-card {
        margin-bottom: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .care-card {
        margin-bottom: 1rem;
    }
    
    .product-image img {
        height: 200px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cigar-humidor-hero-section {
        padding: 40px 0;
    }
    
    .hero-features .feature-item {
        justify-content: center;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .product-features .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon i {
        font-size: 1.2rem;
    }
}

/* 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-content h4 {
    color: var(--primary-color);
}

.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 Item Animations */
.tech-item {
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateX(10px);
}

.tech-item:hover h5 {
    color: var(--primary-color);
}

/* Care Card Icon Animations */
.care-card:hover .care-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.care-card:hover h5 {
    color: var(--primary-color);
}

/* 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);
}

/* Product Badge Animations */
.product-badge {
    transition: all 0.3s ease;
}

.product-card:hover .product-badge {
    transform: scale(1.1);
}

/* Spec Item Animations */
.spec-item {
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(218, 161, 76, 0.05);
    padding: 0.5rem;
    border-radius: 5px;
}

/* Humidor Card Animations */
.humidor-card:hover h4 {
    color: var(--primary-color);
}

.humidor-specs .badge {
    transition: all 0.3s ease;
}

.humidor-specs .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Staggered Animation for Cards */
.humidor-card:nth-child(1) { transition-delay: 0.1s; }
.humidor-card:nth-child(2) { transition-delay: 0.2s; }
.humidor-card:nth-child(3) { transition-delay: 0.3s; }

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }

.care-card:nth-child(1) { transition-delay: 0.1s; }
.care-card:nth-child(2) { transition-delay: 0.2s; }
.care-card:nth-child(3) { transition-delay: 0.3s; }
.care-card:nth-child(4) { transition-delay: 0.4s; }

/* Tech Item Staggered Animation */
.tech-item:nth-child(1) { transition-delay: 0.1s; }
.tech-item:nth-child(2) { transition-delay: 0.2s; }
.tech-item:nth-child(3) { transition-delay: 0.3s; }
.tech-item:nth-child(4) { transition-delay: 0.4s; }

/* Image Hover Effects */
.tech-image img {
    transition: all 0.3s ease;
}

.tech-image:hover img {
    transform: scale(1.02);
}

/* Content Fade In Animation */
.tech-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.tech-content.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Product Actions Animation */
.product-actions .btn {
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
}

/* Care Tips Animation */
.care-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.care-card.visible {
    opacity: 1;
    transform: translateY(0);
} 