/* ==========================================================================
   DIWALI SAVINGS - Pixel Perfect Theme & Design System
   ========================================================================== */

:root {
    --bg-dark-primary: #0a0314;
    --bg-dark-secondary: #130726;
    --bg-card: #190a2f;
    --bg-header: #0e051c;
    
    --gold-primary: #FFD000;
    --gold-secondary: #FF9900;
    --gold-gradient: linear-gradient(135deg, #FFE259 0%, #FFA751 100%);
    --gold-btn-gradient: linear-gradient(90deg, #FFD000 0%, #FF9500 100%);
    
    --text-light: #FFFFFF;
    --text-muted: #B8A8D0;
    --text-gold: #FFD000;
    
    --glow-orange: rgba(255, 120, 0, 0.5);
    --glow-purple: rgba(210, 0, 255, 0.5);
    --glow-green: rgba(0, 230, 120, 0.5);
    --glow-blue: rgba(0, 180, 255, 0.5);
    --glow-pink: rgba(255, 0, 150, 0.5);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    
    --font-heading: 'Cinzel', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
}

body {
    background: radial-gradient(circle at 50% 0%, #280d4d 0%, #0a0314 70%);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 5, 28, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 150, 0, 0.1);
    overflow: visible;
}

.header-vfx-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.header-light-beam {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FFD000 20%, 
        #FF0055 50%, 
        #00B4FF 80%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: headerBeamMove 3.5s linear infinite;
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.8), 0 0 20px rgba(255, 0, 85, 0.5);
    z-index: 3;
}

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

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.diya-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    filter: drop-shadow(0 0 8px rgba(255, 150, 0, 0.8));
}

.diya-base {
    width: 28px;
    height: 14px;
    background: linear-gradient(180deg, #ff9900 0%, #cc5500 100%);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.8);
}

.flame {
    width: 10px;
    height: 16px;
    background: radial-gradient(circle, #fff 10%, #ffcc00 40%, #ff3300 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameBurn 0.8s infinite alternate ease-in-out;
    box-shadow: 0 0 14px #ffcc00, 0 0 25px #ff3300, 0 0 35px rgba(255, 50, 0, 0.6);
}

@keyframes flameBurn {
    0% { transform: scale(1) rotate(-3deg); filter: brightness(1); }
    50% { transform: scale(1.1) rotate(1deg); filter: brightness(1.2); }
    100% { transform: scale(1.2) rotate(3deg); filter: brightness(1.3); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(110deg, #FFE259 0%, #FFA751 35%, #FFFFFF 50%, #FFA751 65%, #FFE259 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 6px rgba(255, 153, 0, 0.5));
    animation: goldShimmer 3s ease-in-out infinite;
}

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

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--gold-primary);
    margin-top: 1px;
    text-shadow: 0 0 8px rgba(255, 208, 0, 0.6);
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 520px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    padding: 10px 45px 10px 20px;
    background: rgba(31, 17, 51, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--border-radius-pill);
    color: var(--text-light);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.3);
    background: rgba(40, 20, 65, 0.9);
}

.search-bar input::placeholder {
    color: #8c7aa8;
}

.search-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 0.95rem;
    cursor: pointer;
}

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

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    position: relative;
}

.action-item i {
    font-size: 1.15rem;
    color: var(--gold-primary);
}

.action-item:hover span, .action-item:hover i {
    color: #FFFFFF;
}

.cart-icon-wrapper {
    position: relative;
}

.badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-primary);
    color: #110022;
    font-weight: 800;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(255, 208, 0, 0.6);
}

/* Nav Bar */
.nav-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 3, 20, 0.6);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.4rem;
    padding: 10px 0;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-item a {
    display: inline-block;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-light);
    position: relative;
}

.nav-item.active a, .nav-item a:hover {
    color: var(--gold-primary);
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    box-shadow: 0 0 8px var(--gold-primary);
}

.hot-badge {
    background: linear-gradient(135deg, #ff0055 0%, #ff3300 100%);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: super;
    box-shadow: 0 0 8px rgba(255, 0, 85, 0.6);
    animation: pulse 1.5s infinite;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    max-width: 1280px;
    margin: 24px auto;
    padding: 0 24px;
    position: relative;
}

.hero-sky-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    border-radius: var(--border-radius-lg);
}

.hero-vfx-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    border-radius: var(--border-radius-lg);
}

.hero-card {
    background: linear-gradient(135deg, rgba(28, 12, 53, 0.9) 0%, rgba(15, 5, 31, 0.95) 100%);
    border: 1.5px solid rgba(255, 208, 0, 0.35);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 0 35px rgba(180, 50, 255, 0.15), inset 0 0 30px rgba(255, 208, 0, 0.05);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: -10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(255, 153, 0, 0.3));
    line-height: 1;
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: 2.4rem;
    color: #FFFFFF;
    margin-top: -5px;
    margin-bottom: 12px;
}

.hero-desc {
    color: #e0d0f5;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 208, 0, 0.3);
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 500;
}

.feature-badge i {
    color: var(--gold-primary);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-btn-gradient);
    color: #110022;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 0 20px rgba(255, 208, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 208, 0, 0.7);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrapper {
    width: 100%;
    max-width: 480px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 208, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

/* Sale Badge Stamp */
.sale-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, #ff0055 0%, #880022 100%);
    border: 2px dashed #FFD000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.6), 0 0 10px #FFD000;
    transform: rotate(12deg);
    animation: badgeFloat 3s infinite alternate ease-in-out;
}

@keyframes badgeFloat {
    0% { transform: rotate(12deg) translateY(0); }
    100% { transform: rotate(12deg) translateY(-8px); }
}

.sale-badge-inner {
    text-align: center;
    color: #FFF;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sale-top {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.sale-mid {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    color: #FFD000;
}

.sale-sub {
    font-size: 0.55rem;
    letter-spacing: 1px;
}

.sale-discount {
    margin-top: 3px;
    background: #FFD000;
    color: #110022;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.65rem;
}

.sale-discount .up-to { font-size: 0.45rem; display: block; line-height: 0.8; }
.sale-discount .percent { font-size: 0.85rem; }
.sale-discount .off { font-size: 0.55rem; }

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: var(--gold-primary);
    box-shadow: 0 0 6px var(--gold-primary);
    width: 20px;
    border-radius: 10px;
}

/* ==========================================================================
   Section Headers (Ornamental)
   ========================================================================== */

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 24px 0;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(255, 208, 0, 0.3);
}

.ornament-left, .ornament-right {
    color: var(--gold-primary);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   Categories Section
   ========================================================================== */

.categories-section {
    max-width: 1280px;
    margin: 0 auto 50px auto;
    padding: 0 24px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: rgba(25, 10, 47, 0.7);
    border-radius: var(--border-radius-md);
    padding: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-6px);
}

/* Glow Border Variations */
.glow-orange {
    border: 1.5px solid #ff7b00;
    box-shadow: 0 0 20px rgba(255, 123, 0, 0.45);
}
.glow-orange:hover {
    box-shadow: 0 0 30px rgba(255, 123, 0, 0.85);
}

.glow-purple {
    border: 1.5px solid #d200ff;
    box-shadow: 0 0 20px rgba(210, 0, 255, 0.45);
}
.glow-purple:hover {
    box-shadow: 0 0 30px rgba(210, 0, 255, 0.85);
}

.glow-green {
    border: 1.5px solid #00e678;
    box-shadow: 0 0 20px rgba(0, 230, 120, 0.45);
}
.glow-green:hover {
    box-shadow: 0 0 30px rgba(0, 230, 120, 0.85);
}

.glow-blue {
    border: 1.5px solid #00b4ff;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.45);
}
.glow-blue:hover {
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.85);
}

.glow-pink {
    border: 1.5px solid #ff0099;
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.5);
}
.glow-pink:hover {
    box-shadow: 0 0 30px rgba(255, 0, 153, 0.85);
}

.glow-gold {
    border: 1.5px solid #ffd000;
    box-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
}
.glow-gold:hover {
    box-shadow: 0 0 30px rgba(255, 208, 0, 0.85);
}

.glow-pink-border {
    border: 1.5px solid #ff007f;
    box-shadow: 0 0 18px rgba(255, 0, 127, 0.45);
}
.glow-pink-border:hover {
    box-shadow: 0 0 28px rgba(255, 0, 127, 0.8);
}

.cat-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .cat-img-wrapper img {
    transform: scale(1.08);
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.cat-btn {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 6px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover .cat-btn {
    background: var(--gold-primary);
    color: #110022;
    box-shadow: 0 0 12px var(--gold-primary);
}

/* ==========================================================================
   Festive Combos Section
   ========================================================================== */

/* ==========================================================================
   Special Savings Plan & Bumper Prize Banner Styling
   ========================================================================== */

.announcement-section {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 24px;
}

.announcement-card {
    background: linear-gradient(135deg, rgba(28, 10, 52, 0.95) 0%, rgba(14, 4, 30, 0.98) 100%);
    border: 1.5px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 0 35px rgba(255, 208, 0, 0.25), inset 0 0 30px rgba(255, 208, 0, 0.05);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.announcement-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(255, 208, 0, 0.2) 0%, rgba(255, 0, 85, 0.2) 100%);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.announcement-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.6rem;
    color: var(--gold-primary);
    line-height: 1.4;
    margin-bottom: 14px;
    text-shadow: 0 0 15px rgba(255, 208, 0, 0.3);
}

.announcement-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #E2D9F3;
    margin-bottom: 20px;
}

.bumper-prize-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 0, 85, 0.1);
    border: 1px dashed #FF0055;
    border-radius: var(--border-radius-md);
    padding: 18px 20px;
    margin-bottom: 22px;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.15);
}

.prize-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.prize-text h4 {
    color: var(--gold-primary);
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.prize-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #F0E8FF;
}

.announcement-highlight {
    background: rgba(255, 208, 0, 0.08);
    border-left: 4px solid var(--gold-primary);
    padding: 12px 18px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 24px;
}

.tagline-gold {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.announcement-highlight p {
    font-size: 0.9rem;
    color: #FFFFFF;
}

.join-plan-btn {
    font-size: 1.05rem;
    padding: 14px 28px;
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.5);
}

.announcement-image-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 208, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 208, 0, 0.3);
}

.announcement-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.announcement-image-container:hover .announcement-img {
    transform: scale(1.04);
}

@media (max-width: 1024px) {
    .announcement-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .announcement-title {
        font-size: 1.35rem;
    }
    .announcement-img {
        height: 280px;
    }
}

.combos-section {
    max-width: 1280px;
    margin: 0 auto 50px auto;
    padding: 0 24px;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.combo-card {
    background: rgba(25, 10, 47, 0.85);
    border: 1.5px solid #ff0096;
    border-radius: var(--border-radius-md);
    padding: 14px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.combo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(255, 0, 150, 0.6);
}

.wishlist-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover, .wishlist-btn.active {
    color: #ff0055;
    background: rgba(255, 255, 255, 0.9);
}

.combo-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 12px;
}

.combo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.combo-card:hover .combo-img-wrapper img {
    transform: scale(1.06);
}

.combo-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.combo-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    min-height: 38px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.current-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.original-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-tag {
    background: #ff3b3b;
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.buy-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 0;
    border-radius: var(--border-radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: var(--gold-primary);
    color: #110022;
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.6);
}

/* ==========================================================================
   Benefits Strip
   ========================================================================== */

.benefits-section {
    max-width: 1280px;
    margin: 0 auto 50px auto;
    padding: 0 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-card {
    background: rgba(22, 9, 41, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-red {
    background: rgba(255, 59, 59, 0.2);
    border: 1px solid #ff3b3b;
    color: #ff3b3b;
}

.icon-gold {
    background: rgba(255, 208, 0, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.benefit-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
}

.benefit-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter-section {
    max-width: 1280px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
}

.newsletter-card {
    background: linear-gradient(135deg, #1d0a3a 0%, #120426 100%);
    border: 1px dashed rgba(255, 208, 0, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.diya-decor {
    width: 40px;
    height: 40px;
}

.newsletter-content {
    text-align: center;
    flex: 1;
    max-width: 580px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.newsletter-content p {
    font-size: 0.85rem;
    color: #e0d0f5;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 18px;
    background: rgba(10, 3, 20, 0.8);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: var(--border-radius-pill);
    color: #FFF;
    font-size: 0.85rem;
    outline: none;
}

.subscribe-form input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.3);
}

.subscribe-btn {
    background: var(--gold-btn-gradient);
    color: #110022;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.6);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: #080211;
    border-top: 1px solid rgba(255, 208, 0, 0.15);
    padding-top: 50px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.2fr;
    gap: 30px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.brand-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 14px 0 18px 0;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #FFF;
}

.social-btn:hover {
    background: var(--gold-primary);
    color: #110022;
}

/* Payment Badges */
.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pay-badge.visa { color: #1a1f71; background: #FFF; }
.pay-badge.mastercard { color: #eb001b; background: #FFF; }
.pay-badge.rupay { color: #00783c; background: #FFF; }
.pay-badge.upi { color: #ff6600; background: #FFF; }
.pay-badge.gpay { color: #4285f4; background: #FFF; }
.pay-badge.paytm { color: #00baf2; background: #FFF; }
.pay-badge.phonepe { color: #5f259f; background: #FFF; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.heart-icon {
    color: #ff3b3b;
}

/* ==========================================================================
   Cart Drawer & Modals & Toasts
   ========================================================================== */

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #140728;
    border-left: 1px solid var(--gold-primary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: #0d041c;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 1rem;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-btn {
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h5 {
    font-size: 0.8rem;
    color: #FFF;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFF;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-item-btn {
    color: #ff4d4d;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

.cart-footer {
    padding: 20px;
    background: #0d041c;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.total-price {
    color: var(--gold-primary);
}

.checkout-btn {
    width: 100%;
    background: var(--gold-btn-gradient);
    color: #110022;
    font-weight: 800;
    padding: 12px;
    border-radius: var(--border-radius-pill);
    border: none;
    cursor: pointer;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #18092d;
    border: 1px solid var(--gold-primary);
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 650px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 35px rgba(255, 208, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #1f0b3b;
    border-left: 4px solid var(--gold-primary);
    color: #FFF;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    animation: slideInRight 0.3s ease forwards;
}

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

/* Responsive Breakdown */
@media (max-width: 1024px) {
    .categories-grid, .combos-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle, .hero-tagline { margin: 0 auto; }
    .hero-features { justify-content: center; }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Info Sections (Contact & Terms)
   ========================================================================== */

.info-section {
    max-width: 1280px;
    margin: 0 auto 50px auto;
    padding: 0 24px;
}

.info-card-container {
    background: rgba(25, 10, 47, 0.85);
    border: 1px solid rgba(255, 208, 0, 0.25);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-info-box h3 {
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.contact-info-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: #FFF;
}

.contact-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    width: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    background: rgba(10, 3, 20, 0.8);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: var(--border-radius-sm);
    color: #FFF;
    font-size: 0.85rem;
    outline: none;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.3);
}

.terms-content h4 {
    color: var(--gold-primary);
    font-size: 0.95rem;
    margin-top: 14px;
    margin-bottom: 4px;
}

.terms-content h4:first-child {
    margin-top: 0;
}

.terms-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Filter Pills & Additional Page Styling
   ========================================================================== */

.filter-pills-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-pill {
    background: rgba(25, 10, 47, 0.8);
    border: 1px solid rgba(255, 208, 0, 0.3);
    color: #FFF;
    padding: 8px 24px;
    border-radius: var(--border-radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Auth Modal & Form Styling
   ========================================================================== */

.auth-modal-card {
    max-width: 520px;
    background: linear-gradient(135deg, #18082e 0%, #0d041c 100%);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 35px rgba(255, 208, 0, 0.4);
    padding: 32px 36px;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin: 8px 0 4px 0;
}

.auth-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(10, 3, 20, 0.9);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: var(--border-radius-sm);
    color: #FFFFFF;
    font-size: 0.85rem;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(255, 208, 0, 0.4);
    background: rgba(20, 5, 40, 0.95);
}

.auth-flex-row {
    display: flex;
    justify-content: flex-end;
    margin-top: -4px;
}

.forgot-link {
    font-size: 0.75rem;
    color: var(--gold-primary);
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.auth-footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.auth-footer-text a {
    color: var(--gold-primary);
    font-weight: 700;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Dashboard Layout & Profile Styling
   ========================================================================== */

.dashboard-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

.dashboard-sidebar {
    background: rgba(25, 10, 47, 0.85);
    border: 1px solid var(--gold-primary);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    box-shadow: 0 0 25px rgba(255, 208, 0, 0.2);
    text-align: center;
}

.avatar-upload-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px auto;
}

.profile-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
    background: #18092d;
}

.avatar-edit-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: var(--gold-primary);
    color: #110022;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.8);
    transition: transform 0.3s ease;
}

.avatar-edit-badge:hover {
    transform: scale(1.15);
}

.dash-user-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.dash-user-email {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 230, 120, 0.15);
    border: 1px solid #00e678;
    color: #00e678;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.dash-quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background: rgba(10, 3, 20, 0.6);
    padding: 10px;
    border-radius: 8px;
}

.stat-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.stat-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Mobile Responsiveness & Touch Optimization
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    .hero-subtitle { font-size: 2.2rem; }
    .hero-title { font-size: 3rem; }
    .hero-tagline { font-size: 1.8rem; }
    .hero-features { justify-content: center; }
    .categories-grid, .combos-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* 1 BY 1 STACKED CARDS & FORMS FOR 100% MOBILE FIT */
    .categories-grid, 
    .combos-grid, 
    .benefits-grid,
    .payment-history-summary,
    .contact-grid,
    .form-grid-2,
    .form-grid-3,
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
    }

    .combo-card, .category-card, .contact-info-box, .contact-form, .info-card-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 12px 0 !important;
        box-sizing: border-box !important;
    }

    .contact-form input, .contact-form textarea, .contact-form button, .auth-form input, .auth-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .card-image-wrap img, .combo-img-wrapper img {
        height: 230px !important;
        object-fit: cover !important;
    }

    /* HEADER & SEARCH BAR RESPONSIVENESS */
    .header-container {
        padding: 8px 12px !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .logo-main { font-size: 1.2rem !important; }
    .logo-sub { font-size: 0.5rem !important; letter-spacing: 1.5px !important; }

    .search-bar {
        order: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 4px !important;
    }

    .search-bar input {
        width: 100% !important;
        padding: 8px 36px 8px 14px !important;
        font-size: 0.82rem !important;
    }

    /* HAMBURGER MENU 3-LINES / 3-DOTS FIX */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--gold-primary) !important;
        font-size: 1.4rem !important;
        background: rgba(255, 208, 0, 0.12) !important;
        border: 1px solid rgba(255, 208, 0, 0.35) !important;
        border-radius: 6px !important;
        cursor: pointer !important;
        padding: 6px 12px !important;
        margin: 6px 0 !important;
    }

    .nav-bar {
        position: relative !important;
        overflow: visible !important;
    }

    .nav-container {
        position: relative !important;
        padding: 0 12px !important;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column !important;
        background: #0f0423 !important;
        border: 1.5px solid var(--gold-primary) !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        padding: 12px 16px !important;
        gap: 10px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95) !important;
        z-index: 9999 !important;
        border-radius: 0 0 12px 12px !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-item {
        width: 100% !important;
    }

    .nav-item a {
        display: block !important;
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: #FFF !important;
        border-bottom: 1px solid rgba(255, 208, 0, 0.15) !important;
        width: 100% !important;
        text-align: left !important;
    }

    .nav-item:last-child a {
        border-bottom: none !important;
    }

    /* PREVENT PAGE OVERFLOW */
    .hero-section, .combos-section, .categories-section, .announcement-section, .info-section {
        padding: 16px 12px !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .hero-card, .announcement-card, .info-card-container {
        padding: 20px 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .hero-subtitle { font-size: 1.7rem !important; }
    .hero-title { font-size: 2.2rem !important; }
    .hero-tagline { font-size: 1.4rem !important; }
    .hero-desc { font-size: 0.85rem !important; margin-bottom: 16px !important; }

    .feature-badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .newsletter-card {
        padding: 20px 14px !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .subscribe-form {
        flex-direction: column !important;
        width: 100% !important;
    }

    .subscribe-btn {
        width: 100% !important;
    }

    .diya-decor { display: none !important; }
}

/* ==========================================================================
   UPI & Payment Gateway Modal Styling
   ========================================================================== */

.payment-modal-card {
    max-width: 560px;
    background: linear-gradient(135deg, #190933 0%, #0c031c 100%);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 40px rgba(255, 208, 0, 0.4);
    padding: 30px 34px;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 230, 120, 0.15);
    border: 1px solid #00e678;
    color: #00e678;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-header h3 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.payment-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.payment-summary-box {
    background: rgba(10, 3, 20, 0.9);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    margin-bottom: 22px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: #DDD;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.total-row {
    margin-bottom: 0;
    font-weight: 700;
    color: #FFF;
}

.total-amount {
    font-size: 1.25rem;
    color: var(--gold-primary);
}

.payment-section-title {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.payment-options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.payment-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(20, 7, 40, 0.8);
    border: 1.5px solid rgba(255, 208, 0, 0.25);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-option-card:hover, .payment-option-card.selected {
    border-color: var(--gold-primary);
    background: rgba(35, 12, 65, 0.95);
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.3);
}

.payment-option-card input[type="radio"] {
    display: none;
}

.pay-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFF;
    flex-shrink: 0;
}

.gpay-logo { background: #4285F4; }
.phonepe-logo { background: #5f259f; }
.paytm-logo { background: #00baf2; }
.upi-logo { background: var(--pink-glow); }

.pay-option-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pay-option-info strong {
    font-size: 0.9rem;
    color: #FFF;
}

.pay-option-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: block;
}

.payment-option-card.selected .radio-circle {
    border-color: var(--gold-primary);
    background: radial-gradient(circle, var(--gold-primary) 40%, transparent 45%);
}

.pay-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px;
}

/* Success Receipt Modal */
.success-modal-card {
    max-width: 480px;
    text-align: center;
    background: linear-gradient(135deg, #170930 0%, #0b0217 100%);
    border: 1.5px solid #00e678;
    box-shadow: 0 0 40px rgba(0, 230, 120, 0.4);
    padding: 32px 30px;
}

.success-icon-wrap {
    font-size: 4rem;
    color: #00e678;
    margin-bottom: 12px;
    animation: popIn 0.5s ease-out;
}

.receipt-box {
    background: rgba(10, 3, 20, 0.9);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    margin: 20px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #DDD;
}

/* ==========================================================================
   Dashboard Payment History Table Styling
   ========================================================================== */

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.payment-history-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.total-saved-card {
    background: rgba(10, 3, 20, 0.85);
    border: 1px solid rgba(255, 208, 0, 0.35);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.total-saved-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 208, 0, 0.25);
    background: rgba(10, 3, 20, 0.9);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.payment-table th {
    background: rgba(25, 10, 48, 0.95);
    color: var(--gold-primary);
    padding: 14px 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 208, 0, 0.3);
    font-family: var(--font-heading);
}

.payment-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-table tr:hover {
    background: rgba(35, 15, 65, 0.5);
}

.pay-method-pill {
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ==========================================================================
   Admin Control Panel & Dashboard Layout Styling
   ========================================================================== */

.admin-body {
    background: #090214;
    color: #FFFFFF;
    font-family: var(--font-body);
    min-height: 100vh;
}

.admin-auth-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle, #1c093a 0%, #080212 100%);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    max-width: 440px;
    width: 100%;
    background: rgba(20, 7, 40, 0.95);
    border: 1.5px solid var(--gold-primary);
    box-shadow: 0 0 45px rgba(255, 208, 0, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 36px 30px;
    text-align: center;
}

.admin-dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #0e041f;
    border-right: 1px solid rgba(255, 208, 0, 0.25);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: #CCC;
    transition: all 0.3s ease;
}

.admin-nav-item:hover, .admin-nav-item.active {
    background: rgba(255, 208, 0, 0.15);
    color: var(--gold-primary);
    border-left: 3.5px solid var(--gold-primary);
}

.admin-main {
    padding: 24px 32px;
    background: #090214;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 208, 0, 0.2);
}

.admin-header h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-primary);
}

.admin-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background: rgba(20, 7, 40, 0.85);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.metric-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 208, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.metric-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFF;
    margin-top: 2px;
}

.progress-bar-wrap {
    width: 100%;
    height: 14px;
    background: rgba(10, 3, 20, 0.9);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 208, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF0055 0%, #FFD700 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.action-btn-sm {
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn-edit { background: var(--gold-primary); color: #110022; }
.btn-delete { background: #FF0055; color: #FFF; }
.btn-notify { background: #00F0FF; color: #110022; }

@media (max-width: 1024px) {
    .admin-dashboard-layout {
        grid-template-columns: 1fr;
    }
    .admin-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .admin-metrics-grid {
        grid-template-columns: 1fr;
    }
}








