/* Yadav Bangles Store - Main Stylesheet */
/* Modern, Responsive CSS for E-commerce Website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: rgba(233, 30, 99, 0.1);
    --secondary-color: #ff4081;
    --accent-color: #ffc107;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --dark-color: #212121;
    --light-color: #fafafa;
    --grey-100: #f5f5f5;
    --grey-200: #eeeeee;
    --grey-300: #e0e0e0;
    --grey-400: #bdbdbd;
    --grey-500: #9e9e9e;
    --grey-600: #757575;
    --grey-700: #616161;
    --grey-800: #424242;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 40px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Enhanced Header Styles */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    border-bottom: 1px solid var(--grey-200);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* When top bar is hidden on all screens, ensure header stays at top */
.header.top-bar-hidden {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 10px 0;
    font-size: 13px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    max-height: 50px;
    opacity: 1;
}

.top-bar.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
}

/* Enhanced top-bar behavior for all screens */
.top-bar.visible {
    max-height: 50px;
    opacity: 1;
    padding: 10px 0;
}

.top-bar::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: shimmer 3s infinite;
}

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

.header-main {
    padding: 16px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 30px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 30px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

/* Enhanced Search */
.search-container {
    position: relative;
    max-width: 500px;
}

.search-box {
    width: 100%;
    padding: 14px 60px 14px 20px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--grey-100);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.search-box:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1), var(--shadow-md);
    transform: translateY(-1px);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 4px;
    display: none;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid var(--grey-200);
    transition: var(--transition);
}

.suggestion-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Enhanced Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-action {
    position: relative;
    color: var(--dark-color);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-action:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-action i {
    font-size: 18px;
}

.badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, var(--error-color), #ff6b6b);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

/* Enhanced Navigation */
.nav-bar {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 0;
    position: relative;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    background: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.mobile-nav-toggle i {
    display: block;
}

.mobile-nav-toggle .close-icon {
    display: none;
}

.mobile-nav-toggle.active .menu-icon {
    display: none;
}

.mobile-nav-toggle.active .close-icon {
    display: block;
}

/* Enhanced Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.08) 0%, 
        rgba(255, 64, 129, 0.06) 50%,
        rgba(102, 126, 234, 0.04) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e91e63' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

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

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

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-color), var(--grey-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideUp 1s ease-out;
}

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

.hero-content p {
    font-size: 20px;
    color: var(--grey-600);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.4s both;
}

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-primary::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: var(--transition);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Category Cards */
.categories-section {
    padding: 100px 0;
    background: var(--grey-100);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--grey-600);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    group: hover;
}

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

.category-image {
    height: 220px;
    background: linear-gradient(135deg, var(--grey-200), var(--grey-300));
    position: relative;
    overflow: hidden;
}

.category-image::before {
    content: '📿';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
    z-index: 1;
}

.category-image.bangles::before { content: '📿'; }
.category-image.poshaks::before { content: '👘'; }
.category-image.cosmetics::before { content: '💄'; }
.category-image.festival::before { content: '🎊'; }

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.category-info {
    padding: 30px 24px;
    text-align: center;
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.category-description {
    font-size: 15px;
    color: var(--grey-600);
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.category-card:hover .category-link::after {
    width: 100%;
}

/* Enhanced Products Section */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    border: 2px solid var(--grey-300);
    background: var(--white);
    color: var(--grey-700);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    z-index: -1;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active::before,
.tab-btn:hover::before {
    left: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--grey-200);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-image {
    height: 280px;
    background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '🛍️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    opacity: 0.2;
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    border-radius: 12px 12px 0 0;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
    border-radius: 12px 12px 0 0;
    position: relative;
    z-index: 1;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

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

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--grey-700);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.star {
    color: var(--accent-color);
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: var(--grey-500);
    margin-left: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.original-price {
    font-size: 16px;
    color: var(--grey-500);
    text-decoration: line-through;
}

.discount {
    font-size: 13px;
    color: var(--success-color);
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

.product-footer {
    display: flex;
    gap: 12px;
}

.btn-cart {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

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

/* Enhanced Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--grey-100) 0%, var(--white) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), rgba(255, 64, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: scale(1.1);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.feature-description {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.6;
}

/* Enhanced Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.newsletter-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    background: var(--white);
    color: var(--dark-color);
}

.newsletter-input::placeholder {
    color: var(--grey-500);
}

.newsletter-btn {
    background: var(--dark-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--grey-800);
    transform: scale(1.05);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--grey-800) 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: var(--grey-400);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.7;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    border-top: 1px solid var(--grey-700);
    padding-top: 24px;
    text-align: center;
    color: var(--grey-400);
    font-size: 14px;
}

/* Enhanced WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Enhanced Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--grey-500);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--grey-100);
    color: var(--primary-color);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 15px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--grey-300);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Enhanced Loading Animation */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Enhanced Notifications */
.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 18px 24px;
    border-radius: var(--border-radius);
    color: var(--white);
    font-weight: 500;
    z-index: 3000;
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.notification.success {
    background: linear-gradient(135deg, var(--success-color), #66bb6a);
}

.notification.error {
    background: linear-gradient(135deg, var(--error-color), #ef5350);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* No Results Styling */
.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--grey-600);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.no-results i {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    color: var(--grey-400);
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.no-results p {
    font-size: 16px;
    margin-bottom: 24px;
}

.no-results button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.no-results button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    font-size: 18px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--grey-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Selection Color */
::selection {
    background: var(--primary-light);
    color: var(--primary-color);
}

::-moz-selection {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Adjustments */
    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        text-align: left;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .search-container {
        max-width: 100%;
        grid-column: 1 / -1;
        order: 3;
        margin-top: 10px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-action {
        padding: 8px 12px;
        font-size: 12px;
    }

    .header-action span:not(.badge) {
        display: none;
    }

    .header-action i {
        font-size: 16px;
    }

    /* Mobile Navigation */
    .nav-bar {
        position: relative;
    }

    .mobile-nav-toggle {
        display: block;
        position: static;
        z-index: 1001;
        margin-left: 8px;
    }

    .nav-content {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .nav-content.active {
        left: 0;
    }

    .nav-link {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 1px solid var(--grey-200);
        text-align: left;
        margin: 0;
        transform: none !important;
        box-shadow: none !important;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-light);
        color: var(--primary-color);
        border-left: 4px solid var(--primary-color);
    }

    /* Mobile Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(4px);
    }

    .nav-overlay.active {
        display: block;
    }

    /* Content Adjustments */
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card,
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        background: transparent;
        padding: 0;
    }

    .newsletter-input,
    .newsletter-btn {
        border-radius: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    /* Product Modal Mobile */
    .modal-body > div {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Header Mobile Improvements */
    .header-main {
        padding: 12px 0;
    }

    .logo {
        font-size: 18px;
    }

    .logo i {
        font-size: 20px;
    }

    .search-box {
        padding: 12px 50px 12px 16px;
        font-size: 14px;
    }

    .search-btn {
        padding: 8px 14px;
    }

    .header-action {
        padding: 6px 8px;
        min-width: 40px;
        height: 40px;
    }

    /* Navigation Mobile */
    .nav-content {
        width: 100%;
        left: -100%;
        padding: 70px 16px 20px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }

    .mobile-nav-toggle {
        font-size: 20px;
    }

    /* Hero Section Mobile */
    .hero-banner {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Sections Mobile */
    .categories-section,
    .products-section,
    .features-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Cards Mobile */
    .category-card,
    .product-card {
        max-width: none;
        margin: 0;
    }

    .category-image,
    .product-image {
        height: 200px;
    }

    .category-info,
    .product-info {
        padding: 20px 16px;
    }

    .category-title,
    .product-title {
        font-size: 16px;
    }

    .category-description {
        font-size: 14px;
    }

    .current-price {
        font-size: 18px;
    }

    .original-price {
        font-size: 14px;
    }

    /* Feature Cards Mobile */
    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

    /* Newsletter Mobile */
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-content h3 {
        font-size: 24px;
    }

    .newsletter-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 20px;
    }

    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
        font-size: 16px;
        bottom: 80px;
        right: 20px;
    }

    /* Modal Mobile */
    .modal-content {
        width: 100%;
        margin: 10px;
        max-height: 90vh;
        border-radius: 16px;
    }

    .modal-header,
    .modal-body {
        padding: 16px;
    }

    .modal-title {
        font-size: 20px;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-label {
        font-size: 14px;
    }

    /* Product Tabs Mobile */
    .products-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Notification Mobile */
    .notification {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        font-size: 14px;
        padding: 16px 20px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .nav-content {
        width: 100%;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .category-image,
    .product-image {
        height: 180px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .categories-section,
    .products-section,
    .features-section {
        padding: 50px 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .header-action,
    .nav-link,
    .tab-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action-btn {
        width: 48px;
        height: 48px;
    }

    .search-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Janmashtami Special Styles */
.janmashtami-special {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.1) 0%, 
        rgba(233, 30, 99, 0.08) 50%,
        rgba(63, 81, 181, 0.06) 100%);
    position: relative;
    overflow: hidden;
}

.janmashtami-special::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffc107' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20s20 8.954 20 20 8.954 20 20 20-8.954-20-20-20z'/%3E%3C/g%3E%3C/svg%3E");
    animation: rotate 30s linear infinite;
}

.janmashtami-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.janmashtami-offer {
    margin-top: 30px;
    text-align: center;
}

.offer-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color), #66bb6a);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-lg);
    animation: bounce 2s infinite;
}

.janmashtami-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.03) 0%, 
        rgba(233, 30, 99, 0.02) 100%);
    position: relative;
}

.janmashtami-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.janmashtami-product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.janmashtami-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #ffc107;
}

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

.janmashtami-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.janmashtami-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.offer-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--error-color), #ff6b6b);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    animation: pulse 2s infinite;
}

.janmashtami-product-card .product-info {
    padding: 24px;
    text-align: center;
}

.janmashtami-product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.price-section {
    margin-bottom: 20px;
}

.special-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--success-color);
    margin-right: 12px;
}

.original-price {
    font-size: 16px;
    color: var(--grey-500);
    text-decoration: line-through;
}

.btn-janmashtami {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 14px;
}

.btn-janmashtami:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ff9800, #ffc107);
}

.janmashtami-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #ffc107;
}

.info-card i {
    font-size: 48px;
    color: #ffc107;
    margin-bottom: 16px;
    display: block;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--grey-600);
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile Responsive for Janmashtami Section */
@media (max-width: 768px) {
    .janmashtami-section {
        padding: 60px 0;
    }
    
    .janmashtami-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .janmashtami-product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .janmashtami-badge {
        font-size: 14px;
        padding: 6px 20px;
    }
    
    .special-price {
        font-size: 20px;
    }
    
    .info-card {
        padding: 24px 20px;
    }
    
    .info-card i {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .janmashtami-product-card .product-image {
        height: 200px;
    }
    
    .offer-text {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .janmashtami-badge {
        font-size: 12px;
    }
}

/* ===== CALL LINK STYLES ===== */
.call-link {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.call-link:hover {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 5px rgba(255, 107, 157, 0.3);
}

.call-link i {
    font-size: 0.9em;
}

/* Janmashtami Popup Styles */
.janmashtami-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease-out;
}

.janmashtami-popup-overlay.show {
    display: flex;
}

.janmashtami-popup-content {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 24px;
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid #ffc107;
    /* Custom scrollbar styling for all devices */
    scrollbar-width: thin;
    scrollbar-color: rgba(233, 30, 99, 0.3) transparent;
}

/* Webkit scrollbar styling for Chrome/Safari - All devices */
.janmashtami-popup-content::-webkit-scrollbar {
    width: 8px;
}

.janmashtami-popup-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.janmashtami-popup-content::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.janmashtami-popup-content::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 30, 99, 0.5);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--grey-600);
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.popup-close:hover {
    background: var(--white);
    color: var(--error-color);
    transform: scale(1.1);
}

.popup-header {
    text-align: center;
    padding: 40px 30px 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='15' cy='15' r='2'/%3E%3C/g%3E%3C/svg%3E");
    animation: rotate 20s linear infinite;
}

.krishna-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    animation: pulse 2s infinite;
}

.popup-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.popup-subtitle {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.popup-body {
    padding: 30px;
}

.popup-offer {
    text-align: center;
    background: linear-gradient(135deg, var(--success-color) 0%, #66bb6a 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.popup-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M10 10l5-5-5 5-5-5 5 5z'/%3E%3C/g%3E%3C/svg%3E");
    animation: rotate 15s linear infinite reverse;
}

.offer-badge {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.offer-text {
    font-size: 36px;
    font-weight: 900;
    margin: 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.offer-desc {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.popup-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.feature-item i {
    color: #ffc107;
    font-size: 18px;
    width: 20px;
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-color);
}

.popup-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.popup-product {
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.popup-product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #ffc107;
}

.popup-product img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--success-color);
}

.product-price .original {
    font-size: 12px;
    color: var(--grey-500);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 6px;
}

.popup-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-popup-shop,
.btn-popup-whatsapp {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-popup-shop {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.btn-popup-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
}

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

.popup-timer {
    font-size: 14px;
    color: var(--grey-600);
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border: 1px dashed #ffc107;
}

.popup-timer i {
    color: #ffc107;
    margin-right: 6px;
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .janmashtami-popup-content {
        width: 95%;
        margin: 20px;
        border-radius: 20px;
    }
    
    .popup-header {
        padding: 30px 20px 16px;
    }
    
    .popup-header h2 {
        font-size: 24px;
    }
    
    .krishna-icon {
        font-size: 36px;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .popup-products {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .popup-product {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 12px;
    }
    
    .popup-product img {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .popup-footer {
        padding: 0 20px 20px;
    }
    
    .btn-popup-shop,
    .btn-popup-whatsapp {
        font-size: 14px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .janmashtami-popup-content {
        width: 90%;
        margin: 8vh auto;
        border-radius: 16px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    /* Make scrollbar even thinner on mobile */
    .janmashtami-popup-content::-webkit-scrollbar {
        width: 6px;
    }
    
    .popup-header {
        padding: 16px 16px 10px;
    }
    
    .popup-header h2 {
        font-size: 17px;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    
    .popup-subtitle {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .krishna-icon {
        font-size: 28px;
    }
    
    .offer-text {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .offer-desc {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .popup-body {
        padding: 10px 16px;
    }
    
    .popup-products {
        margin: 12px 0;
    }
    
    .popup-product img {
        width: 60px;
        height: 60px;
    }
    
    .product-name {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .product-price {
        font-size: 11px;
    }
    
    .popup-footer {
        padding: 0 16px 12px;
        gap: 6px;
    }
    
    .btn-popup-shop,
    .btn-popup-whatsapp {
        font-size: 12px;
        padding: 10px 14px;
    }
} 

