/* ===========================
   SEASONAL PRODUCTS STYLING
   =========================== */

/* Seasonal Badge Styles */
.seasonal-badge {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 138, 0, 0.3);
    animation: seasonal-glow 2s ease-in-out infinite alternate;
    margin: 4px 0;
}

.seasonal-badge::before {
    content: "✨";
    font-size: 12px;
}

/* Seasonal Product Container */
.seasonal-product {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ff8a00, #e52e71) padding-box,
                linear-gradient(135deg, #ff8a00, #e52e71) border-box;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.15);
}

.seasonal-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(229, 46, 113, 0.1));
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.seasonal-product .product-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 10px;
    margin: 2px;
    padding: 16px;
    height: calc(100% - 4px);
}

/* Seasonal Product Hover Effects */
.seasonal-product:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.25);
    border-color: #ff8a00;
}

.seasonal-product:hover::before {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.15), rgba(229, 46, 113, 0.15));
}

/* Seasonal Product Image Container */
.seasonal-product .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.seasonal-product .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 138, 0, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.seasonal-product:hover .product-image::after {
    transform: translateX(100%);
}

/* Seasonal Section Header */
.seasonal-section-header {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.seasonal-section-title {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
}

.seasonal-section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.seasonal-section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.seasonal-section-divider::before,
.seasonal-section-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff8a00;
    border-radius: 50%;
    top: -2px;
}

.seasonal-section-divider::before {
    left: -4px;
}

.seasonal-section-divider::after {
    right: -4px;
}

/* Seasonal Grid Container */
.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

/* Seasonal Product Price */
.seasonal-product .product-price {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Seasonal Product Button */
.seasonal-product .btn-seasonal {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}

.seasonal-product .btn-seasonal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
    background: linear-gradient(135deg, #e52e71, #ff8a00);
}

/* Regular Product Styling (for contrast) */
.regular-product {
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
}

.regular-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

/* Seasonal Category Filter */
.category-filter .seasonal-filter {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin: 4px;
    transition: all 0.3s ease;
}

.category-filter .seasonal-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3);
}

.category-filter .seasonal-filter.active {
    background: linear-gradient(135deg, #e52e71, #ff8a00);
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.4);
}

/* Seasonal Product Card Animation */
@keyframes seasonal-glow {
    0% {
        box-shadow: 0 2px 8px rgba(255, 138, 0, 0.3);
    }
    100% {
        box-shadow: 0 4px 16px rgba(229, 46, 113, 0.4);
    }
}

/* Seasonal Notification Banner */
.seasonal-banner {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    color: white;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.seasonal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: banner-shine 3s infinite;
}

.seasonal-banner .banner-text {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

@keyframes banner-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .seasonal-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .seasonal-section-title {
        font-size: 2rem;
    }
    
    .seasonal-product {
        margin: 8px 0;
    }
    
    .seasonal-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .seasonal-section-title {
        font-size: 1.8rem;
    }
    
    .seasonal-product .product-content {
        padding: 12px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .seasonal-product .product-content {
        background: #1a1a1a;
        color: white;
    }
    
    .regular-product {
        border-color: #333;
        background: #1a1a1a;
    }
    
    .seasonal-section-subtitle {
        color: #ccc;
    }
}

/* Print Styles */
@media print {
    .seasonal-product,
    .regular-product {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
    
    .seasonal-badge {
        background: #666 !important;
        color: white !important;
    }
} 