/* Navratri Special Section Styles */

.navratri-special {
    position: relative;
    min-height: 20vh;
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, 
        var(--cream-50) 0%, 
        #f0f0f0 50%, 
        var(--cream-100) 100%);
    overflow: hidden;
    margin-top: 8%;
}

.navratri-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Text Content */
.navratri-text {
    padding-right: var(--space-8);
}

.navratri-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-gold);
    animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    0% { box-shadow: var(--shadow-gold); }
    100% { box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4); }
}

.navratri-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-light);
    color: var(--green-800);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.title-accent {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-semibold);
}

.navratri-description {
    font-size: var(--text-lg);
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.navratri-offer {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    position: relative;
    overflow: hidden;
}

.navratri-offer::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: shine 3s infinite;
}

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

.offer-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.offer-label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    opacity: 0.9;
    margin-bottom: var(--space-1);
}

.offer-price {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.offer-text {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.navratri-features {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--neutral-600);
    font-weight: var(--font-medium);
}

.feature i {
    color: var(--gold-600);
    font-size: var(--text-base);
}

.navratri-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.btn-navratri {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-8);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-luxury);
    position: relative;
    overflow: hidden;
}

.btn-navratri:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.btn-navratri::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left var(--transition-luxury);
}

.btn-navratri:hover::before {
    left: 100%;
}

.offer-timer {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
}

.timer-text {
    color: var(--neutral-600);
    font-weight: var(--font-medium);
}

.countdown {
    display: flex;
    gap: var(--space-2);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 50px;
}

.time-number {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--green-800);
    line-height: 1;
}

.time-label {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    font-weight: var(--font-medium);
    letter-spacing: 0.05em;
}

/* Right Side - Model and Products */
.navratri-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.model-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-3xl);
    overflow: hidden;
}

.model-image {
    width: 100%;
    height: 100%;
    background: transparent;
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Floating Product Cards */
.floating-product {
    position: absolute;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.product-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.product-2 {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.product-3 {
    bottom: 25%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.mini-product-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-3);
    box-shadow: var(--shadow-luxury);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 120px;
    transition: all var(--transition-luxury);
}

.mini-product-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-luxury-lg);
}

.mini-product-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2);
}

.mini-product-info {
    text-align: center;
}

.mini-product-name {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--green-800);
    margin-bottom: var(--space-1);
    line-height: 1.2;
}

.mini-product-price {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--gold-600);
}

/* Decorative Elements */
.navratri-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.mandala-pattern {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, 
        transparent 30%, 
        rgba(212, 175, 55, 0.1) 40%, 
        transparent 50%);
    border-radius: 50%;
    opacity: 0.6;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.festive-sparkles {
    position: absolute;
    inset: 0;
}

.sparkle {
    position: absolute;
    font-size: var(--text-lg);
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 40%;
    right: 25%;
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1s;
}

.sparkle-4 {
    bottom: 15%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

/* Background Pattern */
.navratri-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(27, 77, 62, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navratri-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .navratri-text {
        padding-right: 0;
        order: 2;
    }
    
    .navratri-visual {
        order: 1;
        height: 300px;
    }
    
    .navratri-features {
        justify-content: center;
    }
    
    .floating-product {
        display: none;
    }
}

@media (max-width: 768px) {
    .navratri-special {
        padding: var(--space-12) 0;
    }
    
    .navratri-title {
        font-size: var(--text-3xl);
    }
    
    .offer-price {
        font-size: var(--text-4xl);
    }
    
    .navratri-features {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 45px;
        padding: var(--space-1) var(--space-2);
    }
    
    .navratri-visual {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .navratri-offer {
        padding: var(--space-4);
    }
    
    .offer-price {
        font-size: var(--text-3xl);
    }
    
    .btn-navratri {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
    
    .offer-timer {
        flex-direction: column;
        gap: var(--space-2);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-product,
    .mandala-pattern,
    .sparkle,
    .badge-glow,
    .shine {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .navratri-badge {
        background: var(--neutral-900);
        color: var(--white);
    }
    
    .mini-product-card {
        border: 2px solid var(--neutral-800);
    }
}