/*
===============================================
PAVITRA POOJA SAMAGRI - PREMIUM STYLESHEET
===============================================
A modern, spiritual e-commerce website design
with glassmorphism, gradients & smooth animations
===============================================
*/

/* ============================================
   CSS VARIABLES & COLOR PALETTE
   ============================================ */
:root {
    /* Temple Warm Theme Colors */
    --primary: #E67E22;           /* Kesari / Saffron */
    --secondary: #F4C430;          /* Marigold Yellow */
    --accent: #C0392B;             /* Kumkum Red */
    --background: #FFF8E7;         /* Soft Cream */
    --text-dark: #3E2723;          /* Deep Brown */
    --gold: #D4AF37;               /* Gold Accent */
    
    /* Additional Colors */
    --white: #FFFFFF;
    --light-cream: #FFFBF0;
    --dark-brown: #2C1810;
    --soft-orange: #FFE4CC;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E67E22, #F4C430);
    --gradient-warm: linear-gradient(135deg, #FF6B35, #F7931E);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F4C430);
    --gradient-red: linear-gradient(135deg, #C0392B, #E74C3C);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(230, 126, 34, 0.1);
    --shadow-md: 0 4px 16px rgba(230, 126, 34, 0.15);
    --shadow-lg: 0 8px 32px rgba(230, 126, 34, 0.2);
    --shadow-xl: 0 12px 48px rgba(230, 126, 34, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Subtle Background Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(230, 126, 34, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 196, 48, 0.03) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23E67E22" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23pattern)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 1rem 0;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-icon {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #A0522D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(139, 0, 0, 0.5));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    background: linear-gradient(135deg, #8B0000 0%, #A0522D 50%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.8rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.logo-text .gradient-text {
    background: linear-gradient(135deg, #DC143C 0%, #CD5C5C 50%, #A0522D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.8rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    position: relative;
    color: #2c1810;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: var(--transition-base);
    font-size: 1.05rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-cream);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.icon-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #6D4C41 0%, #5D4037 100%);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: #5D4037;
    border: 2px solid #5D4037;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #6D4C41 0%, #5D4037 100%);
    color: var(--white);
    border-color: #5D4037;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(230, 126, 34, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(230, 126, 34, 0.8),
                    0 0 40px rgba(244, 196, 48, 0.5);
    }
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

.btn-outline-gradient {
    background: transparent;
    color: var(--primary);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--background), var(--background)), 
                      var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-outline-gradient:hover {
    background-image: var(--gradient-primary), 
                      var(--gradient-primary);
    color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(230, 126, 34, 0.85) 0%, 
                rgba(244, 196, 48, 0.75) 50%,
                rgba(230, 126, 34, 0.85) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: #1a0f0a;
}

.gradient-text-animated {
    background: linear-gradient(
        90deg,
        #3E2723 0%,
        #E67E22 25%,
        #C0392B 50%,
        #E67E22 75%,
        #3E2723 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
    font-weight: 900;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subtitle-text {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #5D4037;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-features {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(93, 64, 55, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(93, 64, 55, 0.3);
    font-size: 0.95rem;
    font-weight: 600;
    color: #3E2723;
}

.feature-item i {
    font-size: 1.25rem;
    color: #5D4037;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #5D4037;
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
    font-weight: 600;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #5D4037;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #5D4037;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   DELIVERY BADGE SECTION
   ============================================ */
.delivery-badge-section {
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 10;
    margin-top: -4rem;
}

.delivery-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.badge-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.badge-content p {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

/* Slide Up Animation */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.slide-up.visible {
    animation: slideUp 0.8s ease forwards;
}

.slide-up.delay-1 { animation-delay: 0.1s; }
.slide-up.delay-2 { animation-delay: 0.2s; }
.slide-up.delay-3 { animation-delay: 0.3s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a0f0a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.125rem;
    color: #4a2c1a;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(230, 126, 34, 0.8) 100%);
    opacity: 0.7;
    transition: var(--transition-base);
}

.category-card:hover .card-overlay {
    opacity: 0.9;
}

.card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: var(--transition-base);
}

.category-card:hover .card-icon {
    transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a0f0a;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.card-content p {
    color: #4a2c1a;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-base);
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link i {
    transition: var(--transition-base);
}

.category-card:hover .card-link i {
    transform: translateX(5px);
}

/* Section Divider */
.section-divider {
    margin-top: var(--spacing-lg);
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--light-cream) 0%, var(--background) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: visible;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    min-height: 520px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
}

.product-badge.bestseller {
    background: var(--gradient-red);
}

.product-badge.new {
    background: var(--gradient-gold);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 126, 34, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-base);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.quick-view-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.product-content {
    padding: 1.5rem;
    padding-bottom: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #1a0f0a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 700;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.product-rating i {
    color: var(--secondary);
    font-size: 0.875rem;
}

.product-rating span {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-left: 0.25rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 0;
    border-top: 1px solid rgba(230, 126, 34, 0.1);
    margin-top: auto;
    flex-wrap: wrap;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    width: 100%;
    justify-content: center;
    margin-top: auto;
    border: none;
    cursor: pointer;
    min-height: 48px;
}

.add-to-cart-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.section-cta {
    text-align: center;
}

/* ============================================
   FESTIVAL SECTION
   ============================================ */
.festival-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.festival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.festival-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.festival-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.3);
}

.festival-image {
    position: relative;
    height: 300px;
}

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.festival-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(60, 35, 18, 0.95) 100%);
}

.festival-content {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(244, 196, 48, 0.05) 100%);
}

.festival-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.festival-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.festival-content > p {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.festival-features {
    margin-bottom: 1.5rem;
}

.festival-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.festival-features i {
    color: var(--primary);
    font-size: 1rem;
}

.festival-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.festival-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.festival-price .original {
    font-size: 1.25rem;
    color: #999;
    text-decoration: line-through;
}

.festival-price .discount {
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
}

.btn-festival {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: var(--transition-base);
}

.btn-festival:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Festival Timer */
.festival-timer {
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.timer-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
}

.time-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-orange) 100%);
    overflow: hidden;
}

.testimonial-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.testimonial-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.quote-icon {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #E67E22;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(230, 126, 34, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--secondary);
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: #2C1810;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    opacity: 1;
    transform: scale(1.3);
    background: var(--gradient-primary);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-icon:nth-child(1) { top: 10%; left: 10%; }
.float-icon:nth-child(2) { top: 20%; right: 15%; }
.float-icon:nth-child(3) { bottom: 15%; left: 20%; }
.float-icon:nth-child(4) { bottom: 10%; right: 10%; }

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

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature i {
    font-size: 2rem;
}

.cta-feature span {
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-xl);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-cta-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    padding: 1rem 2rem;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
}

/* Newsletter Box */
.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.newsletter-form input::placeholder {
    color: #999;
}

.btn-newsletter {
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.btn-newsletter:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background: var(--dark-brown);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.temple-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.footer-desc {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 0.25rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-top: 0.5rem;
    transition: var(--transition-base);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    margin: var(--spacing-md) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ============================================
   FLOATING SOCIAL MEDIA ICONS
   ============================================ */
.floating-social-icons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    animation: floatInUp 0.6s ease forwards 1s;
}

@keyframes floatInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-social-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
    cursor: pointer;
    overflow: visible;
}

/* Subtle bounce animation on load */
.floating-social-btn:nth-child(1) {
    animation: floatInUp 0.6s ease forwards 1s, gentleBounce 2s ease-in-out 1.6s;
}

.floating-social-btn:nth-child(2) {
    animation: floatInUp 0.6s ease forwards 1.2s, gentleBounce 2s ease-in-out 1.8s;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    background: linear-gradient(135deg, #25D366, #20BA5A);
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5),
                0 0 20px rgba(37, 211, 102, 0.3);
}

/* Instagram Button */
.instagram-btn {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4, #FD1D1D, #F56040, #FCAF45);
    background-size: 200% 200%;
    animation: gradientShiftInstagram 4s ease infinite;
}

@keyframes gradientShiftInstagram {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.instagram-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.5),
                0 0 20px rgba(131, 58, 180, 0.3);
    animation-play-state: paused;
}

/* Tooltip */
.floating-social-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
    z-index: 1;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Tooltip Arrow */
.floating-social-btn::after {
    content: '';
    position: absolute;
    right: calc(100% - 6px);
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.85);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.floating-social-btn:hover::before,
.floating-social-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

/* Icon Pulse on Hover */
.floating-social-btn i {
    transition: transform var(--transition-fast);
}

.floating-social-btn:hover i {
    transform: scale(1.1);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 997;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    bottom: 12rem;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.4);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #FFF5E1 100%);
    display: flex;
    justify-content: center;
}

.product-detail-section .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.breadcrumb {
    display: none;
}

.breadcrumb a {
    color: var(--primary-saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-red);
}

.breadcrumb .separator {
    color: var(--text-brown);
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--text-brown);
    font-weight: 500;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 0 auto 4rem;
    max-width: 1400px;
    padding: 0 2rem;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 8rem;
    height: fit-content;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f5f5f5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    width: 100%;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

.main-image .product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
}

.fresh-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.thumbnail.active {
    border-color: var(--primary-saffron);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

/* Product Info */
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating-reviews {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars i {
    color: var(--gold);
    font-size: 1.1rem;
}

.rating-number {
    margin-left: 0.5rem;
    font-weight: 600;
    color: var(--text-brown);
}

.reviews-count {
    color: var(--primary-saffron);
    font-size: 0.95rem;
}

.in-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    font-weight: 600;
}

.in-stock i {
    font-size: 1.2rem;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(230, 126, 34, 0.1);
    border-bottom: 2px solid rgba(230, 126, 34, 0.1);
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-red);
    font-family: 'Playfair Display', serif;
}

.old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, var(--accent-red), #D32F2F);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-short-description {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.product-short-description p {
    color: var(--text-brown);
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.product-short-description i {
    color: var(--primary-saffron);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group label {
    display: block;
    font-weight: 600;
    color: var(--text-brown);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.option-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.option-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(230, 126, 34, 0.3);
    background: white;
    border-radius: 30px;
    color: var(--text-brown);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn:hover {
    border-color: var(--primary-saffron);
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(244, 196, 48, 0.1));
    transform: translateY(-2px);
}

.option-btn.active {
    background: linear-gradient(135deg, var(--primary-saffron), var(--secondary-yellow));
    color: white;
    border-color: var(--primary-saffron);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-saffron), var(--secondary-yellow));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-brown);
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-actions .btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.product-actions .btn-icon {
    flex: 0 0 auto;
    width: 60px;
    padding: 1rem;
}

.wishlist-btn i {
    font-size: 1.5rem;
}

.wishlist-btn.active i {
    color: var(--accent-red);
}

.buy-now-btn {
    background: linear-gradient(135deg, var(--accent-red), #D32F2F);
    color: white;
    border: none;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #D32F2F, var(--accent-red));
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-saffron);
}

.feature-item strong {
    display: block;
    color: var(--text-brown);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Share Product */
.share-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(230, 126, 34, 0.1);
}

.share-product label {
    font-weight: 600;
    color: var(--text-brown);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.pinterest { background: #bd081c; }

/* Product Tabs */
.product-tabs {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tab-headers {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid rgba(230, 126, 34, 0.1);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: var(--text-brown);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-saffron);
}

.tab-btn.active {
    color: var(--primary-saffron);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--secondary-yellow));
    border-radius: 3px 3px 0 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-pane h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-brown);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tab-pane h3 i {
    color: var(--primary-saffron);
}

.tab-pane h4 {
    color: var(--text-brown);
    margin: 1.5rem 0 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-brown);
}

.features-list i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
}

.specs-table td {
    padding: 1rem;
}

.spec-label {
    font-weight: 600;
    color: var(--text-brown);
    width: 30%;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.rating-overview {
    text-align: center;
}

.avg-rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-saffron);
    font-family: 'Playfair Display', serif;
}

.rating-overview .rating-stars {
    justify-content: center;
    margin: 1rem 0;
}

.total-reviews {
    color: #666;
    font-size: 0.95rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-bar-item > span:first-child {
    width: 50px;
    font-weight: 600;
    color: var(--text-brown);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-saffron), var(--secondary-yellow));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.rating-bar-item > span:last-child {
    width: 50px;
    text-align: right;
    font-weight: 600;
    color: var(--text-brown);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-brown);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.review-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-content h5 {
    color: var(--text-brown);
    margin-bottom: 0.75rem;
}

.review-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.helpful-btn {
    background: none;
    border: 1px solid rgba(230, 126, 34, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-brown);
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(244, 196, 48, 0.1));
    border-color: var(--primary-saffron);
}

.load-more-reviews {
    margin-top: 2rem;
}

/* Q&A */
.qa-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qa-item {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.question, .answer {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.question i {
    color: var(--primary-saffron);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(230, 126, 34, 0.1);
}

.answer i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.question h5 {
    margin: 0 0 0.5rem 0;
    color: var(--text-brown);
}

.qa-date {
    font-size: 0.85rem;
    color: #999;
}

.answer p {
    color: #666;
    line-height: 1.8;
    margin: 0 0 0.5rem 0;
}

.ask-question-btn {
    margin-top: 2rem;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
}

.related-products .section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }
    
    /* Mobile Navigation */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .header-actions .btn-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 7rem 0 4rem !important;
    }
    
    .page-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .page-hero p {
        font-size: 1rem !important;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .festival-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons,
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .delivery-badges {
        grid-template-columns: 1fr;
    }
    
    /* Override all inline grid styles for mobile */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Override flex layouts */
    div[style*="display: flex; gap"] {
        flex-wrap: wrap !important;
    }
    
    /* FAQ Mobile Optimization */
    .faq-item h3, .faq-item h4 {
        font-size: 1rem !important;
        padding-right: 2.5rem;
    }
    
    /* Support Cards Mobile */
    div[style*="text-align: center; padding"] {
        padding: 1.5rem 1rem !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    section {
        padding: 3rem 0 !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-value {
        font-size: 2rem;
        padding: 0.75rem 1rem;
    }
    
    .cta-features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Floating Social Icons - Mobile */
    .floating-social-icons {
        bottom: 1.5rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .floating-social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top.visible {
        bottom: 10rem;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 7rem 0 4rem !important;
    }
    
    .page-hero h1 {
        font-size: 2rem !important;
    }
    
    .page-hero p {
        font-size: 0.95rem !important;
    }
    
    /* Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Section Padding */
    section {
        padding: 3rem 0 !important;
    }
    
    /* Form Inputs Mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Print Styles */
@media print {
    .scroll-progress,
    .main-header,
    .back-to-top,
    .btn,
    .floating-elements {
        display: none !important;
    }
}
