/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-red: #DC143C;
    --dark-red: #8B0000;
    --light-red: #FF6B6B;
    --gold: #FFD700;
    --orange: #FF8C00;
    --white: #FFFFFF;
    --off-white: #FFF8F0;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --shadow: rgba(220, 20, 60, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

/* ============================================
   Header Styles - Modern & Fixed
   ============================================ */
.header {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 1001;
    flex-shrink: 0;
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: rotate(360deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.logo-text {
    font-family: 'Berkshire Swash', cursive;
    background: linear-gradient(45deg, var(--gold), var(--orange), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: titleGradient 3s ease infinite, titleGlow 2s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
}

.logo-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: whiteLightSweep 3s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 25px rgba(255, 140, 0, 0.4));
        transform: scale(1.02);
    }
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.2);
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link {
    padding-right: 1.5rem;
}

.dropdown-arrow {
    position: absolute;
    right: 0.6rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    list-style: none;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-item-dropdown:hover .nav-submenu,
.nav-item-dropdown.active .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu li {
    margin: 0;
    padding: 0;
}

.nav-submenu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-submenu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--orange));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nav-submenu-link:hover::before {
    transform: scaleY(1);
}

.nav-submenu-link i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-submenu-link:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    transform: translateX(5px);
    padding-left: 1.2rem;
}

.nav-submenu-link:hover i {
    color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.account-menu {
    position: relative;
}

.account-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--white);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s ease;
}

.account-toggle .caret {
    font-size: 0.8rem;
    opacity: 0.8;
}

.account-toggle:hover,
.account-menu.open .account-toggle {
    background: rgba(255, 215, 0, 0.25);
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
}

.account-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(220, 20, 60, 0.1);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 20;
}

.account-menu.open .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.account-link i {
    width: 18px;
    color: var(--primary-red);
}

.account-link:hover {
    background: rgba(220, 20, 60, 0.08);
    color: var(--primary-red);
}

.logout-link {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 5px;
    padding-top: 12px;
}

.cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    margin-right: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cart-btn:hover {
    background: var(--gold);
    color: var(--dark-red);
    transform: scale(1.1) rotate(-10deg);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* ============================================
   Add to Cart Fly Animation
   ============================================ */
.fly-to-cart {
    position: fixed;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.6);
    border: 3px solid var(--gold);
    transform: translate(-50%, -50%) scale(1);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    animation: flyToCartScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fly-to-cart i {
    color: var(--white);
    font-size: 24px;
    animation: rotateIcon 0.8s ease-in-out;
}

@keyframes flyToCartScale {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
    30% {
        transform: translate(-50%, -50%) scale(1.3) rotate(120deg);
        opacity: 1;
    }
    60% {
        transform: translate(-50%, -50%) scale(1.1) rotate(240deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.2) rotate(360deg);
        opacity: 0;
    }
}

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

/* Pulse effect on cart icon when item is added */
.cart-btn.added {
    animation: cartPulse 0.5s ease;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--dark-red);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
    border: 2px solid var(--dark-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-login,
.btn-register {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-login {
    background: var(--gold);
    color: var(--dark-red);
    border-color: var(--gold);
}

.btn-login:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.btn-register {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-register:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px;
    z-index: 1002; /* Higher than menu to stay on top */
    position: relative;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 24px;
    line-height: 1;
}

.mobile-menu-toggle .fa-bars {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-toggle .fa-times {
    display: block;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-toggle.active .fa-bars {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-toggle.active .fa-times {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================
   Banner Section - Modern & Unique
   ============================================ */
.banner {
    position: relative;
    width: 100%;
    margin-top: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.banner-overlay {
    display: none;
}

.banner-gradient-overlay {
    display: none;
}

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

.banner-content {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    width: 100%;
    max-width: 900px;
}

.banner-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

.banner-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner-title .title-line-1 {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.banner-title .title-line-2 {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.banner-title .title-line-2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--gold);
    font-size: 1rem;
}

.banner-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 0;
    transition: all 0.4s ease;
}

.btn {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--dark-red);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-red);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    color: var(--dark-red);
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover i {
    transform: scale(1.2);
}

/* Banner buttons scroll effect */
.banner-buttons.scroll-transition .btn-primary {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-red);
    border: 2px solid var(--white);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.banner-buttons.scroll-transition .btn-secondary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.6);
    transform: scale(1.05);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.float-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
    font-size: 2.5rem;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
    font-size: 2rem;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

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

/* ============================================
   Smoke Animation
   ============================================ */
.smoke-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.smoke {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: smokeFloat 15s infinite ease-in-out;
    opacity: 0.6;
}

.smoke-1 {
    left: 10%;
    bottom: 0;
    animation-delay: 0s;
}

.smoke-2 {
    left: 30%;
    bottom: 0;
    animation-delay: 3s;
    width: 150px;
    height: 150px;
}

.smoke-3 {
    left: 60%;
    bottom: 0;
    animation-delay: 6s;
    width: 180px;
    height: 180px;
}

.smoke-4 {
    left: 80%;
    bottom: 0;
    animation-delay: 9s;
    width: 160px;
    height: 160px;
}

@keyframes smokeFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-300px) translateX(50px) scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-600px) translateX(-30px) scale(2);
        opacity: 0;
    }
}

/* ============================================
   Jasmine Flower Animation (Juhi Phool)
   ============================================ */
.flower-petals {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.9;
    animation: jasmineFall 12s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flower-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) 
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    animation: flowerRotate 3s infinite linear;
}

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

.petal-1 { left: 8%; animation-delay: 0s; width: 45px; height: 45px; }
.petal-2 { left: 18%; animation-delay: 1.5s; width: 50px; height: 50px; }
.petal-3 { left: 28%; animation-delay: 3s; width: 48px; height: 48px; }
.petal-4 { left: 38%; animation-delay: 4.5s; width: 52px; height: 52px; }
.petal-5 { left: 52%; animation-delay: 6s; width: 50px; height: 50px; }
.petal-6 { left: 62%; animation-delay: 7.5s; width: 45px; height: 45px; }
.petal-7 { left: 72%; animation-delay: 9s; width: 48px; height: 48px; }
.petal-8 { left: 82%; animation-delay: 10.5s; width: 50px; height: 50px; }

@keyframes jasmineFall {
    0% {
        transform: translateY(-100px) translateX(0) scale(0.8);
        opacity: 0.9;
    }
    25% {
        transform: translateY(25vh) translateX(20px) scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: translateY(50vh) translateX(-15px) scale(1);
        opacity: 0.7;
    }
    75% {
        transform: translateY(75vh) translateX(10px) scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh) translateX(0) scale(0.6);
        opacity: 0;
    }
}

/* ============================================
   Diya Animation
   ============================================ */
.diya-animation {
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
}

.diya {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--gold) 0%, var(--orange) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: diyaFlicker 2s infinite ease-in-out;
    box-shadow: 0 0 20px var(--gold), 0 0 40px var(--orange);
}

.diya::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 15px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.diya-1 { animation-delay: 0s; }
.diya-2 { animation-delay: 0.7s; }
.diya-3 { animation-delay: 1.4s; }

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

/* ============================================
   Action Buttons Section - Modern & Unique
   ============================================ */
.action-buttons-section {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.3) 0%, rgba(255, 240, 230, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.action-buttons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
}

.action-buttons-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.action-btn-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.action-btn-primary {
    background: var(--white);
    border-color: var(--gold);
}

.action-btn-primary .action-btn-title {
    color: var(--dark-red);
}

.action-btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.action-btn-primary:hover .action-btn-title {
    color: var(--dark-red);
}

.action-btn-secondary {
    background: var(--white);
    border-color: var(--primary-red);
}

.action-btn-secondary .action-btn-title {
    color: var(--primary-red);
}

.action-btn-secondary:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.action-btn-secondary:hover .action-btn-title {
    color: var(--white);
}

/* ============================================
   About Us Section
   ============================================ */
.about-us {
    padding: 40px 0 80px;
    background: var(--off-white);
    position: relative;
    z-index: 2;
}

.about-us-modern {
    display: block;
    margin-top: 0;
    margin-bottom: 60px;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(220, 20, 60, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.about-us-full {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-us-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--orange) 50%, var(--primary-red) 100%);
    border-radius: 24px 0 0 24px;
    box-shadow: 2px 0 8px rgba(255, 215, 0, 0.3);
}

.about-us-modern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.about-us-header {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-red);
    margin-bottom: 1.8rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.about-us-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--orange), var(--gold), transparent);
    border-radius: 2px;
}

.about-us-management {
    margin-top: 1.5rem;
}

.management-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin: 0;
    padding: 0;
}

.management-text strong {
    color: var(--primary-red);
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
}


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

.section-title {
    font-size: 2.5rem;
    color: var(--dark-red);
    margin-bottom: 1rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.book-puja-section .section-title {
    white-space: nowrap;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    margin: 0 auto 0.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    transition: var(--transition);
}

/* Enlarge content width for first about item */
.about-item:first-child {
    grid-template-columns: 1fr 1.8fr;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
}

.about-item.reverse {
    direction: rtl;
}

.about-item.reverse > * {
    direction: ltr;
}

/* Grid container for 2nd and 3rd about items */
.about-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

/* Grid style for 2nd and 3rd about items - vertical layout */
.about-item-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.about-item-grid .about-image {
    width: 100%;
    margin-bottom: 20px;
}

.about-item-grid .about-img {
    height: 300px;
    width: 100%;
}

.about-item-grid .about-content {
    padding: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    line-height: 0;
}

.about-img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    margin: 0;
    padding: 0;
}

.about-item:hover .about-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(139, 0, 0, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.about-item:hover .image-overlay {
    opacity: 0;
}

.image-placeholder {
    display: none;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 15px;
}

.image-placeholder.show {
    display: flex;
}

.about-content {
    padding: 15px 10px;
}

.about-title {
    font-size: 2rem;
    color: var(--dark-red);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.3));
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: justify;
    position: relative;
}

.about-full {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-text.expanded .about-full {
    display: inline;
    opacity: 1;
}

.about-text.expanded .about-preview {
    display: inline;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
}

.read-more-btn:active {
    transform: translateY(0);
}

.read-more-btn .read-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn.expanded .read-more-icon {
    transform: rotate(180deg);
}

.read-more-text {
    font-size: 1rem;
}

/* ============================================
   Upcoming Puja Card
   ============================================ */
.upcoming-puja-card {
    margin-top: 15px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #fff9f0 0%, #fef5e7 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.upcoming-puja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.25);
}

/* Floating Animated Flowers */
.floating-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-flowers .flower {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.3;
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.3));
}

.floating-flowers .flower-1 {
    top: 10%;
    left: 5%;
    animation: float-1 6s ease-in-out infinite;
}

.floating-flowers .flower-2 {
    top: 20%;
    right: 8%;
    animation: float-2 8s ease-in-out infinite;
}

.floating-flowers .flower-3 {
    bottom: 15%;
    left: 10%;
    animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(90deg);
    }
    50% {
        transform: translate(10px, -30px) rotate(180deg);
    }
    75% {
        transform: translate(-10px, -15px) rotate(270deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-15px, 20px) rotate(120deg);
    }
    66% {
        transform: translate(-25px, -10px) rotate(240deg);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -25px) rotate(180deg);
    }
}

/* Event Label Badge */
.event-label-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    position: relative;
    z-index: 2;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

/* Event Name (Normal Font) */
.event-name-title {
    font-family: inherit;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(220, 20, 60, 0.1);
}

/* Event Description */
.event-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Event Times */
.event-times {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.event-time-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
}

.event-time-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.2);
}

.event-time-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.event-time-item > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.time-label {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 700;
}

.event-time-separator {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* Event Button Container */
.event-button-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.btn-event-puja {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 12px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-glow 2s ease-in-out infinite;
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-width: 200px;
}

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

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

.btn-event-puja:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
    animation: none;
}

.btn-event-puja i {
    transition: transform 0.4s ease;
}

.btn-event-puja:hover i {
    transform: translateX(5px) rotate(15deg);
    animation: fly 0.6s ease infinite;
}

.puja-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--primary-red), var(--gold), var(--orange)) 1;
}

.puja-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--primary-red), var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.puja-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.puja-name .title-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.3));
}

.puja-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.puja-main-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.puja-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    text-align: justify;
    margin: 0;
}

.btn-puja {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: 2px solid transparent;
    align-self: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-glow 2s ease-in-out infinite;
}

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

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

.btn-puja:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
    animation: none;
}

.btn-puja i {
    transition: transform 0.4s ease;
}

.btn-puja:hover i {
    transform: translateX(5px) rotate(15deg);
    animation: fly 0.6s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3), 0 0 0 0 rgba(220, 20, 60, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5), 0 0 0 8px rgba(220, 20, 60, 0);
    }
}

@keyframes fly {
    0%, 100% {
        transform: translateX(5px) rotate(15deg);
    }
    50% {
        transform: translateX(8px) rotate(20deg);
    }
}

.puja-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.puja-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.08);
    transition: var(--transition);
}

.puja-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.15);
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.4;
}

.puja-features {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 20, 60, 0.1);
}

.features-title {
    font-size: 1.2rem;
    color: var(--dark-red);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    border-radius: 2px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.features-list li:hover {
    background: rgba(220, 20, 60, 0.05);
    border-left-color: var(--primary-red);
    transform: translateX(3px);
}

.features-list li i {
    color: var(--primary-red);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ============================================
   Book Puja Section
   ============================================ */
.book-puja-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
    margin-top: 0;
}

.puja-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.puja-booking-card {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border-radius: 16px;
    border: 3px solid rgba(220, 20, 60, 0.3);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.puja-booking-card::before {
    display: none;
}

.puja-booking-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--orange), var(--gold), var(--primary-red));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.puja-booking-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25), 0 0 30px rgba(255, 165, 0, 0.15);
    border-color: rgba(220, 20, 60, 0.5);
}

.puja-booking-card:hover::after {
    opacity: 1;
}

/* Puja Title */
.puja-booking-title {
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 3px double var(--primary-red);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.puja-booking-title::after {
    content: '✦';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    background: linear-gradient(135deg, #fff9f0, white);
    padding: 0 8px;
    font-size: 1rem;
}

/* Flower Images */
.title-flower-left,
.title-flower-right {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.3));
    animation: flower-float 3s ease-in-out infinite;
}

.title-flower-left {
    animation-delay: 0s;
}

.title-flower-right {
    animation-delay: 1.5s;
}

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

.puja-booking-title a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(220, 20, 60, 0.1);
}

.puja-booking-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.puja-booking-title a:hover {
    color: var(--dark-red);
    transform: translateX(3px);
}

.puja-booking-title a:hover::after {
    transform: scaleX(1.1);
}

.puja-booking-title span {
    color: var(--primary-red);
    text-shadow: 1px 1px 2px rgba(220, 20, 60, 0.1);
}

/* Card Content */
.puja-card-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Price Info */
.puja-price-info {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    padding: 12px 15px;
    background: rgba(220, 20, 60, 0.1);
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.1);
}

.puja-price-info .price-label {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.puja-price-info .price-amount {
    color: var(--dark-red);
    font-weight: 800;
    margin-left: 8px;
    font-size: 1.15rem;
    text-shadow: 1px 1px 2px rgba(220, 20, 60, 0.1);
}

/* Description Text */
.puja-description-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    padding: 12px 15px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 20, 60, 0.08);
}

.puja-description-text .desc-label {
    color: var(--dark-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Book Amavasya Button */
.btn-book-amavasya {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    border: 2px solid rgba(255, 165, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    box-shadow: 0 6px 20px rgba(212, 134, 14, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.btn-book-amavasya::before {
    content: '🙏';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.btn-book-amavasya:hover {
    background: linear-gradient(135deg, var(--orange), var(--dark-red));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 134, 14, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.6);
    padding-left: 45px;
}

.btn-book-amavasya:hover::before {
    opacity: 1;
}

.btn-book-amavasya:hover::after {
    width: 300px;
    height: 300px;
}

/* Disabled Buttons */
.btn-book-puja-disabled,
.btn-book-hawan-disabled,
.btn-book-monthly-disabled {
    background: linear-gradient(135deg, #ccc, #999);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    border: 2px solid rgba(153, 153, 153, 0.3);
    display: block;
    width: 100%;
    cursor: not-allowed;
    text-align: center;
    opacity: 0.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: auto;
}

.btn-book-puja-disabled::after,
.btn-book-hawan-disabled::after,
.btn-book-monthly-disabled::after {
    content: '🔒';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

/* Coming Soon Text */
.coming-soon-text {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    font-style: italic;
    text-align: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    border: 1px dashed rgba(255, 165, 0, 0.3);
    margin: 8px 0 0 0;
}

/* Puja Start Date */
.puja-start-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    padding: 10px 15px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.08);
}

.puja-start-date i {
    font-size: 1.2rem;
    color: var(--primary-red);
}

.puja-start-date .date-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.puja-start-date .date-value {
    font-size: 0.95rem;
    color: var(--dark-red);
    font-weight: 700;
}

/* Old button styles (keeping for backward compatibility) */
.btn-book-puja {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    margin-top: auto;
}

.btn-book-puja:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.btn-book-puja:active {
    transform: translateY(-1px);
}

.btn-book-puja i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-book-puja:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* ============================================
   History Section
   ============================================ */
.history-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
    margin-top: 0;
}

.history-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.history-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.history-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.2);
}

.history-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.history-card:hover .history-card-image .history-img {
    transform: scale(1.05);
}

.history-card-header {
    padding: 25px 25px 15px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(139, 0, 0, 0.05));
    border-bottom: 2px solid rgba(220, 20, 60, 0.1);
}

.history-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-red);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.history-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.history-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.history-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.history-read-more:hover {
    color: var(--dark-red);
    gap: 12px;
}

.history-read-more i {
    transition: transform 0.3s ease;
}

.history-read-more:hover i {
    transform: translateX(5px);
}

.history-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.history-image-section {
    position: sticky;
    top: 100px;
}

.history-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
    border: 3px solid rgba(220, 20, 60, 0.1);
}

.history-text-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.history-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(220, 20, 60, 0.2);
}

.history-subtitle:first-child {
    margin-top: 0;
}

.history-paragraph {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
    text-align: justify;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
    margin-top: 0;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.contact-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

.contact-card-text a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-card-text a:hover {
    color: var(--dark-red);
    text-decoration: underline;
    transform: translateX(3px);
}

.contact-form-map-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-red);
    margin: 0 0 10px 0;
    padding: 15px 15px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-red), var(--gold));
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
}

.form-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    margin: 0;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.form-textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.btn-submit-contact {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.btn-submit-contact:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.btn-submit-contact:active {
    transform: translateY(-1px);
}

.btn-submit-contact i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit-contact:hover i {
    transform: translateX(5px);
}

.contact-map-container {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.map-info {
    padding: 15px;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

.map-info p {
    margin: 0;
    color: var(--dark-red);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* ============================================
   Testimonials / Reviews Section
   ============================================ */
.testimonials-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
}

.rating-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.reviews-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.08);
}

.rating-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.rating-summary-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.15);
    flex-shrink: 0;
    min-width: 180px;
}

.rating-average {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-red);
    line-height: 1;
}

.rating-stars-display {
    display: flex;
    gap: 2px;
}

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

.rating-total {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
    padding-left: 10px;
    border-left: 1px solid rgba(220, 20, 60, 0.2);
}

.testimonials-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.reviews-controls-row .sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-controls label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.sort-select {
    padding: 8px 15px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.btn-add-review {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-add-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.btn-add-review.btn-login-required {
    background: linear-gradient(135deg, #6c757d, #5a6268);
}

.btn-add-review.btn-login-required:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    box-shadow: 0 5px 20px rgba(108, 117, 125, 0.3);
}

.add-review-form {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
    margin-bottom: 30px;
}

.add-review-form h3 {
    margin: 0 0 20px;
    color: var(--dark-red);
    font-size: 1.4rem;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating-input input[type="radio"]:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: var(--gold);
}

.star-rating-input input[type="radio"]:checked ~ label {
    color: var(--gold);
}

.add-review-form .form-group {
    margin-bottom: 20px;
}

.add-review-form label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.add-review-form textarea,
.add-review-form input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
}

.add-review-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-actions {
    display: flex;
    gap: 10px;
}

.btn-submit-review {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.btn-cancel-review {
    padding: 12px 25px;
    background: var(--light-gray);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-review:hover {
    background: #e0e0e0;
}

.reviews-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.reviews-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 5px 15px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
}

.reviews-wrapper:hover .review-nav-btn {
    opacity: 1;
    pointer-events: all;
}

.review-nav-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.review-nav-prev {
    left: -20px;
}

.review-nav-next {
    right: -20px;
}

.review-card {
    background: var(--white);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
    display: flex;
    flex-direction: column;
    flex: 0 0 320px;
    min-width: 320px;
    max-width: 320px;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-user-details h4 {
    margin: 0 0 3px;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 700;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

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

.review-rating i.empty {
    color: #ddd;
}

.review-content-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.review-content-wrapper.has-image {
    min-height: 120px;
}

.review-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid rgba(220, 20, 60, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Mobile: Small photo layout */
@media (max-width: 768px) {
    .review-image {
        width: 80px;
        height: 80px;
    }
}

.review-image:hover {
    transform: scale(1.05);
}

.review-comment {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
    overflow-y: auto;
    max-height: 120px;
    padding-right: 5px;
    word-wrap: break-word;
}

.review-content-wrapper:not(.has-image) .review-comment {
    max-height: none;
    overflow-y: visible;
}

.review-comment::-webkit-scrollbar {
    width: 4px;
}

.review-comment::-webkit-scrollbar-track {
    background: rgba(220, 20, 60, 0.05);
    border-radius: 2px;
}

.review-comment::-webkit-scrollbar-thumb {
    background: rgba(220, 20, 60, 0.2);
    border-radius: 2px;
}

.review-comment::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 20, 60, 0.3);
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    margin-top: auto;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
}

.review-like-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 6px;
}

.review-like-btn:hover {
    background: rgba(220, 20, 60, 0.05);
    color: var(--primary-red);
}

.review-like-btn.liked {
    color: var(--primary-red);
}

.review-like-btn i {
    font-size: 1.1rem;
}

.review-comment-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 6px;
}

.review-comment-btn:hover {
    background: rgba(220, 20, 60, 0.05);
    color: var(--primary-red);
}

.review-comments-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
}

.review-comments-list {
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.review-comment-item {
    padding: 10px;
    background: rgba(220, 20, 60, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
}

.review-comment-item.admin-comment {
    background: rgba(33, 150, 243, 0.08);
    border-left: 3px solid #2196F3;
}

.review-comment-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-comment-item-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
}

.review-comment-item.admin-comment .review-comment-item-author {
    color: #1976D2;
}

.review-comment-item-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-comment-item-text {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.review-comment-item.admin-comment .review-comment-item-text {
    color: var(--dark);
}

.review-add-comment {
    display: flex;
    gap: 10px;
}

.review-add-comment input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
}

.review-add-comment input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.review-add-comment button {
    padding: 8px 15px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-add-comment button:hover {
    background: var(--dark-red);
}

.reviews-loading {
    text-align: center;
    padding: 40px;
    color: var(--gray);
}

.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn-load-more {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* ============================================
   Approx Darshan Time Section
   ============================================ */
.darshan-time-section {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
    margin-top: 0;
}

.darshan-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.darshan-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    align-items: start;
}

.darshan-form {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.form-group {
    margin: 0;
    position: relative;
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-red);
    margin: 0 0 4px 0;
}

.form-label i {
    color: var(--primary-red);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.required {
    color: var(--primary-red);
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
    margin: 0;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: var(--primary-red);
}

.form-error {
    display: block;
    color: var(--primary-red);
    font-size: 0.8rem;
    margin-top: 3px;
    min-height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group.error .form-error {
    opacity: 1;
}

.form-group.error .form-input {
    border-color: var(--primary-red);
}

.form-group-checkbox {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 5px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-color: var(--primary-red);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.85rem;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text .link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.checkbox-text .link:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-info {
    position: sticky;
    top: 100px;
}

.info-card {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
    color: var(--white);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content ul li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.info-content ul li:last-child {
    border-bottom: none;
}

.info-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.9rem;
}

/* ============================================
   Tabijs Section
   ============================================ */
.tabijs-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
    margin-top: 0;
}

.tabijs-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   Store Section
   ============================================ */
.store-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
    margin-top: 0;
}

.store-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
}

.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.mobile-filter-toggle:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}

.store-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.1);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: #dc143c;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.sidebar-close:hover {
    background: var(--dark-red);
    transform: rotate(90deg);
}

.filter-section {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-title .title-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.3));
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.9rem;
    color: #666;
}

.filter-item:hover {
    background: rgba(220, 20, 60, 0.05);
    color: var(--dark-red);
}

.filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #dc143c;
    flex-shrink: 0;
}

.filter-item input[type="checkbox"]:checked + span {
    color: #dc143c;
    font-weight: 700;
}

.btn-clear-filters {
    width: 100%;
    padding: 8px 16px;
    background: linear-gradient(135deg, #dc143c, #a01030);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
    margin-top: 8px;
}

.btn-clear-filters:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.store-products {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.store-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
}

.products-count {
    font-size: 1rem;
    color: var(--gray);
}

.products-count strong {
    color: var(--dark-red);
    font-weight: 700;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sort label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 600;
}

.sort-select {
    padding: 8px 15px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--dark-red);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:hover,
.sort-select:focus {
    border-color: var(--primary-red);
    outline: none;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.store-product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.store-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.2);
}

.store-product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Product Image Slider */
.product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image-slider .product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.product-image-slider .product-img.active {
    opacity: 1;
    z-index: 1;
}

/* Image Navigation Dots */
.product-image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 10px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

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

.image-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.image-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 10px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-badge.sale {
    background: linear-gradient(135deg, var(--gold), var(--orange));
}

.product-badge.hot {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.store-product-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
    min-height: 0;
    justify-content: space-between;
}

.store-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    background: var(--white);
    color: var(--dark-red);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-color: var(--primary-red);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Store Product Card Footer - Fixed at Bottom */
.store-product-card-footer {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.store-btn-add-cart-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 12px;
    background: linear-gradient(135deg, #dc143c, #a01030);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.store-btn-add-cart-full:hover:not(:disabled) {
    background: linear-gradient(135deg, #a01030, #dc143c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.5);
}

.store-btn-add-cart-full:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, #999, #666);
}

.store-btn-add-cart-full i {
    font-size: 13px;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--off-white) 100%);
}

.products-container {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
}

.products-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) rgba(220, 20, 60, 0.1);
    -webkit-overflow-scrolling: touch;
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    background: rgba(220, 20, 60, 0.1);
    border-radius: 10px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    border-radius: 10px;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--dark-red), var(--orange));
}

.product-card {
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(2deg);
}

/* Home Product Image Slider */
.home-product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-product-image-slider .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease;
}

.home-product-image-slider .product-image.active {
    opacity: 1;
    z-index: 1;
}

.product-card:hover .home-product-image-slider .product-image.active {
    transform: scale(1.1) rotate(2deg);
}

/* Home Product Image Navigation Dots */
.home-product-image-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 8px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.home-image-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-image-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.home-image-dot.active {
    background: #fff;
    width: 18px;
    border-radius: 8px;
}

/* Home Modern Category Tag */
.home-modern-category-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: linear-gradient(135deg, #dc143c 0%, #a01030 100%);
    color: #fff;
    padding: 4px 12px 4px 8px;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    box-shadow: 0 2px 6px rgba(220, 20, 60, 0.4);
}

.home-modern-category-tag .category-tag-text {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.home-modern-category-tag .category-tag-decoration {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15));
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

/* Home Product Badges - Right Side */
.home-product-badges-right {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    align-items: flex-end;
}

.home-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.home-badge-featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
}

.home-badge-featured i {
    font-size: 13px;
}

.home-badge-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-weight: 800;
}

/* Home Variant Selectors */
.home-variant-select-group {
    margin: 2px 0;
}

.home-variant-label {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.home-variant-label i {
    font-size: 10px;
    color: #dc143c;
}

.home-variant-select-dropdown {
    width: 100%;
    padding: 5px 6px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-variant-select-dropdown:hover {
    background: #fff;
    border-color: #dc143c;
}

.home-variant-select-dropdown:focus {
    outline: none;
    background: #fff;
    border-color: #dc143c;
    box-shadow: 0 0 0 2px rgba(220, 20, 60, 0.15);
}

.home-variant-select-dropdown option {
    background: #fff;
    color: #333;
}

/* Home Product Card Actions */
.home-product-card-actions {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.home-btn-add-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    background: linear-gradient(135deg, #dc143c, #a01030);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(220, 20, 60, 0.3);
}

.home-btn-add-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, var(--dark-red), #a01530);
}

.home-btn-add-cart:active:not(:disabled) {
    transform: translateY(0);
}

.home-btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.home-btn-add-cart i {
    font-size: 11px;
}

.home-btn-view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-btn-view-details:hover {
    background: #fff;
    border-color: #dc143c;
    color: #dc143c;
    transform: translateY(-2px);
}

.home-btn-view-details i {
    font-size: 11px;
}

/* Home Product Card Footer - Fixed at Bottom */
.home-product-card-footer {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.home-btn-view-details-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    background: linear-gradient(135deg, #dc143c, #a01030);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
    text-decoration: none;
}

.home-btn-view-details-full:hover {
    background: linear-gradient(135deg, #a01030, #dc143c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.5);
}

.home-btn-view-details-full i {
    font-size: 12px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.8), rgba(139, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-quick-view {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-red);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-quick-view:hover {
    transform: scale(1.1) rotate(360deg);
    background: var(--gold);
    color: var(--dark-red);
}

.product-info {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    background: #fff;
    justify-content: space-between;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 0;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #dc143c;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
    white-space: nowrap;
}

.product-description {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 700;
    color: #dc143c;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #dc143c;
    background-clip: text;
}

.btn-add-cart {
    width: 100%;
    padding: 10px 12px;
    background: linear-gradient(135deg, #dc143c, #a01030);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
    margin-top: 4px;
}

.btn-add-cart span {
    font-size: 0.8rem;
}

.btn-add-cart i {
    font-size: 0.9rem;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-add-cart i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-add-cart:hover i {
    transform: scale(1.2) rotate(-15deg);
}

.btn-add-cart[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.product-card-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-top: 12px;
}

.product-card-actions .btn-add-cart,
.product-card-actions .btn-view-details {
    flex: 1;
}

.btn-view-details {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-details:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.25);
}

/* Modern Category Tag */
.modern-category-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: #fff;
    padding: 8px 16px 8px 12px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.4);
}

.category-tag-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

.category-tag-decoration {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* Product Badges - Right Side */
.product-badges-right {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    align-items: flex-end;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
}

.badge-featured i {
    font-size: 16px;
}

.badge-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-weight: 800;
}

/* Category Tag - REMOVED (now in badge on image) */

/* Product Name and Price Row */
.product-name-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
}

.product-name-inline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-red);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.product-name-inline a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-inline a:hover {
    color: var(--primary-red);
}

.product-price-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.price-old-inline {
    font-size: 0.7rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current-inline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red);
    white-space: nowrap;
}

/* Old Product Name Link - DEPRECATED */
.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-red);
}

/* Product Details Grid */
.product-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 6px 0;
}

.product-detail-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 10px;
    color: var(--text-dark);
}

.product-detail-item i {
    font-size: 9px;
    color: var(--primary-red);
}

.product-detail-item.variant-indicator {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.05));
    border: 1px solid rgba(220, 20, 60, 0.2);
    color: var(--primary-red);
    font-weight: 600;
}

/* Price Section - DEPRECATED (moved to inline layout) */
/* Stock Indicator - REMOVED */

/* Product Quick View */
.product-quick-view {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Variant Selectors on Product Cards */
.variant-select-group {
    margin: 6px 0;
}

.variant-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.variant-label i {
    color: var(--primary-red);
    font-size: 10px;
}

.variant-select-dropdown {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc143c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px;
}

.variant-select-dropdown:hover {
    border-color: var(--primary-red);
}

.variant-select-dropdown:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.variant-select-dropdown option {
    padding: 8px;
}

/* Full width Add to Cart button */
.btn-add-cart-full {
    width: 100%;
}

/* View Details Link - REMOVED */

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 40px 0 15px;
    margin-top: 0;
}

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

.footer-logo-section {
    display: flex;
    align-items: left;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.footer-title {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(45deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Berkshire Swash', cursive;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    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);
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark-red);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    display: inline-block;
}

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

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Disclaimer Card in About Section */
.disclaimer-card {
    margin-top: 20px;
    padding: 30px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    border-left: 5px solid var(--primary-red);
    transition: var(--transition);
}

.disclaimer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
}

.disclaimer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-title .title-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.3));
}

.disclaimer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    border-radius: 2px;
}

.disclaimer-content {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray);
}

.disclaimer-content p {
    margin: 0 0 8px 0;
    padding-left: 20px;
    position: relative;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.footer-company-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.company-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.company-name strong {
    color: var(--gold);
    font-weight: 800;
}

.company-attn {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--white);
    opacity: 0.95;
}

.company-address {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.company-contact {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.company-contact span {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.company-contact a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.company-contact a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

.footer-developed-by {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.8;
    margin: 10px 0 0 0;
}

.footer-developed-by a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-developed-by a:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* ============================================
   Animations
   ============================================ */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }

    .nav-list {
        gap: 0.2rem;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .header-actions {
        gap: 0.6rem;
        margin-left: 0.6rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile Filter Actions */
.filter-actions-mobile {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
}

@media (max-width: 768px) {
    .filter-actions-mobile {
        display: block;
    }
}

.btn-apply-filters {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-apply-filters:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(251, 191, 36, 0.5);
}

.btn-apply-filters:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.btn-apply-filters i {
    font-size: 1rem;
}



/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 78px; /* Start exactly at bottom of header - no gap */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); /* Height minus header */
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    margin-top: 0.0px; /* No margin - tight attachment */
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-header {
    display: none;
}

@media (max-width: 968px) {
    .mobile-menu-header {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 78px; /* Start exactly at bottom of header - no gap */
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 80px); /* Height minus header */
        background: linear-gradient(180deg, var(--dark-red) 0%, var(--primary-red) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        padding-top: 1rem;
        padding-bottom: 4rem; /* Increased bottom padding for scroll space */
        margin-top: 0; /* No margin - tight attachment */
        justify-content: flex-start;
        transition: right 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 50px rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        overflow-x: hidden;
        gap: 0;
        z-index: 1001;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.2);
        scroll-behavior: smooth;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: none !important; /* Hide logo and close button */
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 6px;
        flex: 1;
        min-width: 0;
        width: 100%;
    }

    .mobile-logo-img {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid var(--gold);
    }

    .mobile-logo-text {
        font-family: 'Berkshire Swash', cursive;
        font-size: 0.9rem;
        font-weight: 400;
        background: linear-gradient(45deg, var(--gold), var(--orange), var(--gold));
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: titleGradient 3s ease infinite, titleGlow 2s ease-in-out infinite alternate;
        position: relative;
        display: inline-block;
    }

    .mobile-logo-text::before {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 30%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 70%,
            transparent 100%
        );
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: whiteLightSweep 3s ease-in-out infinite;
        pointer-events: none;
    }

    .mobile-menu-close {
        position: absolute;
        top: 50%;
        right: 0.6rem;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        z-index: 11;
    }

    .mobile-menu-close:hover {
        background: var(--gold);
        color: var(--dark-red);
        border-color: var(--gold);
        transform: rotate(90deg);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
        margin: 0;
        padding: 0.5rem 0.6rem 0.4rem 0.6rem; /* Minimal top padding for menu items */
        padding-top: 0.5rem; /* Minimal gap at top - tight to header */
        list-style: none;
        align-self: flex-start;
        flex-shrink: 0;
    }

    .nav-list li {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        width: 100%;
        padding: 0.65rem 0.85rem;
        border-bottom: none;
        border-radius: 10px;
        justify-content: flex-start;
        font-size: 0.95rem;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: none;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        color: var(--white);
        margin: 0;
    }

    .nav-link i {
        width: 20px;
        text-align: center;
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .nav-link span {
        flex: 1;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link::after {
        content: '›';
        margin-left: auto;
        font-size: 1.3rem;
        opacity: 0.5;
        transition: all 0.2s ease;
        font-weight: 300;
    }

    .nav-item-dropdown .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 215, 0, 0.2);
        color: var(--gold);
        transform: translateX(3px);
    }

    .nav-link:hover i,
    .nav-link.active i {
        opacity: 1;
        color: var(--gold);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: translateX(3px);
        opacity: 1;
        color: var(--gold);
    }

    /* Mobile Dropdown Styles */
    .nav-item-dropdown {
        width: 100%;
        margin-bottom: 0.2rem;
    }

    .nav-item-dropdown .nav-link {
        padding-right: 0.9rem;
        width: 100%;
    }

    .dropdown-arrow {
        position: static;
        margin-left: auto;
        font-size: 0.85rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .nav-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 8px;
        margin-top: 0.1rem; /* Same top margin as parent items */
        margin-left: 0.8rem;
        margin-bottom: 0.2rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, margin 0.4s ease;
        box-shadow: none;
        border: none;
        width: calc(100% - 0.8rem);
    }

    .nav-item-dropdown.active .nav-submenu {
        max-height: 500px;
        padding: 0.4rem 0;
        margin-top: 0.1rem; /* Same top margin as parent items */
        margin-bottom: 0; /* No bottom margin - parent li handles spacing */
    }

    .nav-submenu li {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .nav-submenu-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.88rem;
        border-radius: 6px;
        width: calc(100% - 0.8rem);
        margin: 0.1rem 0.4rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-submenu-link:hover {
        transform: none;
        padding-left: 0.75rem;
    }

    .nav-submenu-link i {
        width: 16px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .nav-submenu-link span {
        flex: 1;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin: 0;
        padding: 1rem 0.75rem 3rem 0.75rem; /* Increased bottom padding significantly for account dropdown scroll space */
        align-items: stretch;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 1.5rem;
    }

    .account-menu {
        width: 100%;
    }

    .account-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .account-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
        transform: none;
        margin-top: 0.3rem; /* Reduced top margin */
        margin-bottom: 1rem; /* Increased bottom margin for better spacing */
        display: none;
        max-height: none; /* Allow full expansion */
        overflow: visible; /* Ensure all items are visible */
        padding: 0; /* Remove padding to allow links to fill space */
        gap: 0; /* No gap between links */
        flex-direction: column;
    }
    
    .account-dropdown .logout-link {
        margin-top: 0; /* Remove top margin on logout link */
        padding-top: 8px; /* Reduced padding to match other links */
        border-top: 1px solid rgba(255, 255, 255, 0.1); /* Lighter border for mobile */
    }

    .account-link {
        color: #fff;
        padding: 8px 12px; /* Reduced padding for tighter spacing */
        margin: 0; /* Remove any margins */
        border-radius: 6px; /* Slightly rounded corners */
    }
    
    .account-link:not(:last-child) {
        margin-bottom: 0; /* No gap between links */
    }

    .account-link i {
        color: var(--gold);
    }

    .account-menu.open .account-dropdown {
        display: flex;
    }

    .cart-btn {
        width: 100%;
        height: 42px;
        min-height: 42px;
        border-radius: 10px;
        justify-content: flex-start;
        padding: 0 0.9rem;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 500;
        gap: 8px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        position: relative;
    }

    .cart-btn i {
        font-size: 0.9rem;
    }

    .cart-btn > span:not(.cart-count) {
        flex: 1;
        font-size: 0.75rem;
    }

    .cart-btn .cart-count {
        position: static;
        margin-left: auto;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--gold);
        color: var(--dark-red);
        font-size: 0.65rem;
        font-weight: 700;
        border: 2px solid var(--dark-red);
    }

    .cart-btn:hover {
        background: var(--gold);
        color: var(--dark-red);
        border-color: var(--gold);
        transform: scale(1.01);
    }

    .btn-login,
    .btn-register {
        width: 100%;
        text-align: center;
        padding: 0.65rem;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 10px;
        min-height: 42px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .btn-login {
        background: var(--gold);
        color: var(--dark-red);
        border: 2px solid var(--gold);
    }

    .btn-login:hover {
        background: var(--orange);
        border-color: var(--orange);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }

    .btn-register {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .btn-register:hover {
        background: var(--white);
        color: var(--primary-red);
        transform: translateY(-2px);
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Keep toggle button visible - icon changes to X when menu is open */

    .banner {
        margin-top: 80px;
    }
    
    .banner-image {
        width: 100%;
        height: auto;
    }

    .banner-content {
        padding: 0 1.5rem;
        bottom: 10px;
    }

    .banner-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-title .title-line-1 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .banner-title .title-line-2 {
        font-size: 2.8rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-features {
        gap: 1rem;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .banner-buttons {
        gap: 0.7rem;
    }

    .btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.85rem;
    }

    .action-buttons-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .action-btn {
        padding: 1rem 1.2rem;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .action-btn-content {
        flex: 1;
    }

    .action-btn-title {
        font-size: 1.1rem;
    }

    .action-btn-subtitle {
        font-size: 0.85rem;
    }

    .action-btn-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 0;
    }

    .about-us {
        padding: 30px 0 60px;
    }

    .about-us-modern {
        padding: 2.5rem 2rem;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .about-us-full {
        text-align: center;
    }

    .about-us-header {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .management-text {
        font-size: 1rem;
    }


    .about-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-item.reverse {
        direction: ltr;
    }

    .about-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .upcoming-puja-card {
        padding: 30px 20px;
    }
    
    .floating-flowers .flower {
        width: 30px;
        height: 30px;
    }
    
    .event-name-title {
        font-size: 1.8rem;
    }
    
    .event-description {
        font-size: 0.95rem;
    }
    
    .event-times {
        gap: 15px;
    }
    
    .event-time-item {
        padding: 10px 15px;
    }
    
    .event-time-item i {
        font-size: 1.3rem;
    }
    
    .time-value {
        font-size: 0.9rem;
    }
    
    .btn-event-puja {
        padding: 10px 30px;
        font-size: 1rem;
        min-width: 180px;
    }

    .puja-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .puja-name {
        font-size: 1.5rem;
    }

    .puja-name .title-icon {
        width: 28px;
        height: 28px;
    }

    .puja-content {
        gap: 15px;
    }

    .puja-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.8rem 0;
        min-height: 70px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
        margin-top: 0; /* No margin - tight attachment */
        padding-bottom: 3rem; /* Increased bottom padding for scroll space */
    }
    
    .mobile-menu-overlay {
        top: 80px;
        height: calc(100vh - 80px);
        margin-top: 0; /* No margin - tight attachment */
    }

    .mobile-menu-header {
        height: 48px;
        padding: 0 0.6rem;
        padding-right: 50px;
    }

    .mobile-logo-img {
        width: 26px;
        height: 26px;
    }

    .mobile-logo-text {
        font-size: 0.85rem;
    }

    .mobile-menu-close {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
        right: 0.6rem;
    }

    .banner {
        margin-top: 70px;
    }
    
    .banner-image {
        width: 100%;
        height: auto;
    }

    .banner-content {
        padding: 0 1rem;
        bottom: 8px;
    }

    .banner-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .banner-title .title-line-1 {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .banner-title .title-line-2 {
        font-size: 2.2rem;
    }

    .banner-title .title-line-2::after {
        width: 60px;
        height: 3px;
    }

    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .banner-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }

    .btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-title .title-icon {
        width: 28px;
        height: 28px;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-item-grid .about-img {
        height: 250px;
    }

    .upcoming-puja-card {
        padding: 25px 15px;
        margin-top: 15px;
    }
    
    .floating-flowers .flower {
        width: 25px;
        height: 25px;
    }
    
    .event-label-badge {
        font-size: 0.7rem;
        padding: 5px 15px;
    }
    
    .event-name-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .event-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .event-times {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .event-time-item {
        padding: 8px 12px;
        width: 100%;
        max-width: 280px;
    }
    
    .event-time-item i {
        font-size: 1.2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .time-value {
        font-size: 0.85rem;
    }
    
    .event-time-separator {
        transform: rotate(90deg);
    }
    
    .btn-event-puja {
        padding: 10px 25px;
        font-size: 0.95rem;
        min-width: 160px;
    }

    .puja-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .puja-label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .puja-name {
        font-size: 1.3rem;
        gap: 8px;
    }

    .puja-name .title-icon {
        width: 24px;
        height: 24px;
    }

    .puja-content {
        gap: 12px;
    }

    .puja-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .puja-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .puja-detail-item {
        padding: 10px;
        gap: 8px;
    }

    .detail-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .detail-label {
        font-size: 0.7rem;
    }

    .detail-value {
        font-size: 0.8rem;
    }

    .puja-features {
        margin-top: 12px;
        padding-top: 15px;
    }

    .features-title {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

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

    .features-list li {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .btn-puja {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .disclaimer-card {
        padding: 20px 25px;
    }

    .disclaimer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .disclaimer-title .title-icon {
        width: 24px;
        height: 24px;
    }

    .disclaimer-content {
        font-size: 0.75rem;
    }

    .book-puja-section {
        padding: 100px 0 60px;
    }
    
    .book-puja-section .section-title {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .puja-booking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .puja-booking-card {
        padding: 25px 18px;
    }
    
    .puja-booking-card::before {
        display: none;
    }
    
    .puja-booking-title {
        font-size: 1.3rem;
        gap: 12px;
    }
    
    .title-flower-left,
    .title-flower-right {
        width: 30px;
        height: 30px;
    }
    
    .puja-price-info,
    .puja-description-text {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-book-amavasya,
    .btn-book-puja-disabled,
    .btn-book-hawan-disabled,
    .btn-book-monthly-disabled {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .darshan-time-section {
        padding: 100px 0 40px;
    }

    .darshan-form-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-info {
        position: static;
    }

    .tabijs-section {
        padding: 100px 0 60px;
    }

    .tabijs-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .store-section {
        padding: 100px 0 60px;
    }

    .store-layout {
        grid-template-columns: 250px 1fr;
        gap: 25px;
    }

    .store-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-section {
        padding: 60px 0;
    }

    .product-card {
        min-width: 180px;
        max-width: 180px;
    }

    .product-image-wrapper {
        height: 130px;
    }

    .disclaimer-content p {
        padding-left: 18px;
        margin-bottom: 10px;
    }

    .read-more-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
        margin-top: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Services and Contact Us in same row on mobile */
    .footer-content .footer-section:nth-child(1),
    .footer-content .footer-section:nth-child(2) {
        grid-column: 1 / -1;
    }
    
    .footer-content .footer-section:nth-child(3),
    .footer-content .footer-section:nth-child(4) {
        grid-column: span 1;
        display: grid;
    }
    
    /* Create a 2-column grid for Services and Contact Us */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content .footer-section:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    .footer-content .footer-section:nth-child(2) {
        grid-column: 1 / -1;
    }
    
    .footer-content .footer-section:nth-child(3) {
        grid-column: 1;
        padding-right: 12.5px;
    }
    
    .footer-content .footer-section:nth-child(4) {
        grid-column: 2;
        padding-left: 12.5px;
    }
    
    .footer-logo-section {
        justify-content: left;
    }
    
    .company-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-company-info {
        text-align: center;
    }
    
    /* Adjust heading and links for compact mobile view */
    .footer-content .footer-section:nth-child(3) .footer-heading,
    .footer-content .footer-section:nth-child(4) .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-content .footer-section:nth-child(3) .footer-links li,
    .footer-content .footer-section:nth-child(4) .footer-contact li {
        margin-bottom: 0.6rem;
    }
    
    .footer-content .footer-section:nth-child(3) .footer-links a,
    .footer-content .footer-section:nth-child(4) .footer-contact {
        font-size: 0.85rem;
    }

    .disclaimer-card {
        padding: 25px 30px;
    }

    .disclaimer-title {
        font-size: 1.1rem;
    }

    .disclaimer-content {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        min-height: 69px;
    }

    .logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .banner {
        margin-top: 65px;
    }
    
    .banner-image {
        width: 100%;
        height: auto;
    }

    .banner-content {
        padding: 0 0.75rem;
        bottom: 5px;
    }

    .banner-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 0.8rem;
    }

    .banner-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .banner-title .title-line-1 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .banner-title .title-line-2 {
        font-size: 1.8rem;
    }

    .banner-title .title-line-2::after {
        width: 50px;
        height: 2px;
        bottom: -5px;
    }

    .banner-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .banner-features {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 0.45rem 0.8rem;
    }

    .action-buttons-section {
        padding: 25px 0;
    }

    .action-buttons-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .action-btn {
        padding: 0.9rem 0.9rem;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        border-radius: 12px;
    }

    .action-btn-content {
        flex: 1;
        min-width: 0;
    }

    .action-btn-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .action-btn-subtitle {
        font-size: 0.75rem;
        opacity: 0.7;
    }

    .action-btn-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        flex-shrink: 0;
        margin-top: 0;
        border-radius: 10px;
    }

    .about-us {
        padding: 20px 0 50px;
    }

    .about-us-modern {
        padding: 2rem 1.5rem;
        margin-top: 0;
        margin-bottom: 30px;
    }


    .about-us-full {
        text-align: center;
    }

    .about-us-header {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .management-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .management-text strong {
        margin-top: 0.3rem;
        font-size: 0.85rem;
    }


    .banner-buttons {
        gap: 0.6rem;
        flex-direction: row;
    }

    .btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .float-element {
        font-size: 2rem;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }

    .banner-buttons {
        gap: 0.6rem;
        padding: 0 0.5rem;
    }

    .btn span {
        font-size: 0.8rem;
    }

    .btn i {
        font-size: 0.9rem;
    }

    .nav-menu {
        width: 90%;
        max-width: 100vw;
        top: 70px; /* Adjust for smaller header on very small screens */
        height: calc(100vh - 70px);
        margin-top: 0; /* No margin - tight attachment */
        padding-bottom: 3rem; /* Increased bottom padding for scroll space */
    }
    
    .mobile-menu-overlay {
        top: 70px;
        height: calc(100vh - 70px);
        margin-top: 0; /* No margin - tight attachment */
    }

    .mobile-menu-header {
        height: 45px;
        padding: 0 0.5rem;
        padding-right: 45px;
    }

    .mobile-logo-img {
        width: 24px;
        height: 24px;
    }

    .mobile-logo-text {
        font-size: 0.8rem;
    }

    .mobile-menu-close {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        right: 0.5rem;
    }

    .nav-list {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.1rem;
        padding-bottom: 0.4rem;
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.55rem 0.75rem;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .nav-link i {
        width: 18px;
        font-size: 1rem;
    }

    .header-actions {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.8rem;
        padding-bottom: 2.5rem; /* Increased bottom padding for account dropdown scroll space */
        gap: 0.4rem;
        margin-top: 1rem;
    }

    .cart-btn,
    .btn-login,
    .btn-register {
        min-height: 40px;
        height: 40px;
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .cart-btn > span:not(.cart-count) {
        font-size: 0.7rem;
    }

    .cart-btn i {
        font-size: 0.85rem;
    }

    .cart-btn .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .book-puja-section {
        padding: 90px 0 50px;
    }
    
    .book-puja-section .section-title {
        font-size: 1.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .puja-booking-grid {
        gap: 15px;
        padding: 10px;
    }
    
    .puja-booking-card {
        padding: 20px 15px;
    }
    
    .puja-booking-card::before {
        display: none;
    }
    
    .puja-booking-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .puja-booking-title::after {
        font-size: 0.9rem;
    }
    
    .title-flower-left,
    .title-flower-right {
        width: 25px;
        height: 25px;
    }
    
    .puja-price-info,
    .puja-description-text {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .puja-price-info .price-amount {
        font-size: 1.05rem;
    }
    
    .btn-book-amavasya {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn-book-amavasya:hover {
        padding-left: 40px;
    }
    
    .btn-book-amavasya::before {
        font-size: 1rem;
        left: 12px;
    }
    
    .btn-book-puja-disabled,
    .btn-book-hawan-disabled,
    .btn-book-monthly-disabled {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn-book-puja-disabled::after,
    .btn-book-hawan-disabled::after,
    .btn-book-monthly-disabled::after {
        right: 10px;
        font-size: 0.9rem;
    }
    
    .coming-soon-text {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .puja-start-date {
        padding: 8px 12px;
        gap: 8px;
        margin: 10px 0;
    }
    
    .puja-start-date i {
        font-size: 1rem;
    }
    
    .puja-start-date .date-label {
        font-size: 0.8rem;
    }
    
    .puja-start-date .date-value {
        font-size: 0.85rem;
    }

    .history-section {
        padding: 100px 0 60px;
    }

    .history-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .history-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .history-image-section {
        position: static;
    }

    .history-main-image {
        height: 400px;
    }

    .history-text-content {
        padding: 30px 25px;
    }

    .contact-section {
        padding: 80px 0 40px;
    }

    .contact-section .section-header {
        margin-bottom: 20px;
    }

    .contact-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .contact-section .section-subtitle {
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }

    .contact-wrapper {
        gap: 25px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 15px;
    }

    .contact-info-card {
        padding: 15px 12px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .contact-card-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .contact-card-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .contact-form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-container {
        padding: 0;
    }

    .contact-map-container {
        padding: 18px 15px;
    }

    .form-section-title {
        font-size: 1.1rem;
        margin: 0 0 8px 0;
        padding: 12px 12px 0 12px;
    }

    .form-section-title::before {
        height: 20px;
        width: 3px;
    }

    .contact-form {
        gap: 0;
        padding: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .contact-form .form-group {
        margin-bottom: 8px;
    }

    .contact-form .form-group:last-of-type {
        margin-bottom: 0;
    }

    .form-label {
        font-size: 0.8rem;
        gap: 4px;
        margin: 0 0 4px 0;
    }

    .form-label i {
        font-size: 0.85rem;
        width: 14px;
    }

    .form-input {
        padding: 6px 10px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .form-textarea {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-height: 80px;
        border-radius: 6px;
    }

    .btn-submit-contact {
        padding: 10px 16px;
        font-size: 0.85rem;
        margin: 0;
        border-radius: 6px;
        gap: 6px;
    }

    .map-wrapper {
        height: 250px;
        margin-bottom: 10px;
    }

    .map-info {
        padding: 10px 12px;
    }

    .map-info p {
        font-size: 0.8rem;
        gap: 8px;
    }

    .map-info i {
        font-size: 0.95rem;
    }

    .testimonials-section {
        padding: 30px 0;
    }

    .rating-summary-row {
        flex-direction: column;
        gap: 15px;
    }

    .rating-summary-item {
        flex-direction: column;
        gap: 12px;
        padding: 15px 20px;
        width: 100%;
    }

    .btn-add-review {
        width: 100%;
        justify-content: center;
    }

    .rating-average {
        flex-direction: column;
        gap: 8px;
    }

    .rating-number {
        font-size: 1.8rem;
    }

    .rating-stars-display i {
        font-size: 1rem;
    }

    .rating-total {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(220, 20, 60, 0.2);
        padding-top: 12px;
        margin-top: 8px;
    }

    .testimonials-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .sort-controls {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }

    .btn-add-review {
        width: 100%;
        justify-content: center;
    }

    .add-review-form {
        padding: 20px 15px;
    }

    .add-review-form h3 {
        font-size: 1.2rem;
    }

    .reviews-controls-row {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .reviews-controls-row .sort-controls {
        width: 100%;
    }

    .rating-summary-item {
        width: 100%;
        min-width: auto;
        padding: 6px 10px;
        gap: 8px;
    }

    .btn-add-review {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .testimonials-section .container {
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .reviews-wrapper {
        padding: 0;
        margin: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        overflow: visible;
    }
    
    .review-nav-btn {
        opacity: 0.7;
        pointer-events: all;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 20;
    }
    
    .review-nav-btn:active {
        opacity: 1;
        transform: translateY(-50%) scale(0.95);
    }
    
    .review-nav-prev {
        left: 10px;
    }
    
    .review-nav-next {
        right: 10px;
    }
    
    .reviews-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0;
        padding: 8px 0 12px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .review-card {
        padding: 12px;
        flex: 0 0 100vw;
        min-width: 100vw;
        max-width: 100vw;
        scroll-snap-align: start;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .review-card:last-child {
        margin-right: 0;
    }

    .review-header {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 6px;
    }

    .review-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .review-content-wrapper {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 6px;
    }
    
    .review-content-wrapper.has-image {
        min-height: 80px;
    }

    .review-image {
        width: 60px;
        height: 60px;
    }

    .review-comment {
        max-height: 80px;
        overflow-y: auto;
        font-size: 0.85rem;
        flex: 1;
    }

    .review-actions {
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 6px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit-review,
    .btn-cancel-review {
        width: 100%;
    }

    .darshan-time-section {
        padding: 90px 0 30px;
    }

    .darshan-form {
        padding: 20px 18px;
    }

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

    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .info-card {
        padding: 18px 15px;
    }

    .info-content h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .info-content ul li {
        padding: 6px 0;
        padding-left: 20px;
        font-size: 0.85rem;
    }

    .history-section {
        padding: 90px 0 50px;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .history-card-header {
        padding: 20px 20px 12px;
    }

    .history-card-title {
        font-size: 1.2rem;
    }

    .history-card-body {
        padding: 20px;
    }

    .history-text {
        font-size: 0.95rem;
    }

    .history-main-image {
        height: 300px;
    }

    .history-text-content {
        padding: 25px 20px;
    }

    .history-subtitle {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .history-paragraph {
        font-size: 1rem;
    }

    .tabijs-section {
        padding: 90px 0 50px;
    }

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

    .store-section {
        padding: 90px 0 50px;
    }

    .store-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mobile-filter-toggle {
        display: flex;
    }

    .sidebar-overlay {
        display: block;
        top: 80px; /* Start from below header */
        height: calc(100vh - 80px); /* Height minus header */
        margin-top: 0; /* No margin - tight attachment */
    }
    
    .sidebar-overlay.active {
        top: 80px; /* Start from below header */
        height: calc(100vh - 80px); /* Height minus header */
    }

    .store-sidebar {
        position: fixed;
        top: 80px; /* Start from below header */
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px); /* Height minus header */
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
        border-radius: 0;
        padding-top: 15px; /* Reduced padding since starting below header */
        margin-top: 0; /* No margin - tight attachment */
    }

    .store-sidebar.active {
        left: 0;
    }

    .sidebar-close {
        display: flex;
    }

    .store-products-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .store-products-grid {
        grid-template-columns: 1fr; /* One product per row on mobile */
        gap: 15px;
    }
    
    /* Adjust store sidebar for smaller header on very small screens */
    .store-sidebar {
        top: 70px; /* Adjust for smaller header on very small screens */
        height: calc(100vh - 70px);
    }
    
    .sidebar-overlay {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .sidebar-overlay.active {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .puja-card-header {
        padding: 20px 20px 15px;
    }

    .puja-card-title {
        font-size: 1.3rem;
    }

    .puja-card-title .title-icon {
        width: 30px;
        height: 30px;
    }

    .puja-card-body {
        padding: 20px;
        gap: 15px;
    }

    .puja-card-description {
        font-size: 0.9rem;
    }

    .price-value .price-amount {
        font-size: 1.8rem;
    }

    .btn-book-puja {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

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

    .products-scroll {
        gap: 20px;
        padding: 15px 10px;
    }

    .product-card {
        min-width: 160px;
        max-width: 160px;
    }

    .product-image-wrapper {
        height: 120px;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .product-description {
        font-size: 0.7rem;
    }

    .price-amount {
        font-size: 1rem;
    }

    .btn-add-cart {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .btn-add-cart span {
        font-size: 0.7rem;
    }
    
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    
    .footer-title {
        font-size: 1.4rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    /* Services and Contact Us in same row on smaller mobile */
    .footer-content .footer-section:nth-child(3) {
        padding-right: 10px;
    }
    
    .footer-content .footer-section:nth-child(4) {
        padding-left: 10px;
    }
    
    .footer-content .footer-section:nth-child(3) .footer-heading,
    .footer-content .footer-section:nth-child(4) .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-content .footer-section:nth-child(3) .footer-links li,
    .footer-content .footer-section:nth-child(4) .footer-contact li {
        margin-bottom: 0.5rem;
    }
    
    .footer-content .footer-section:nth-child(3) .footer-links a,
    .footer-content .footer-section:nth-child(4) .footer-contact {
        font-size: 0.95rem;
    }
    
    .footer-content .footer-section:nth-child(4) .footer-contact li {
        font-size: 0.95rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-attn,
    .company-address,
    .company-contact {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-developed-by {
        font-size: 0.75rem;
        margin-top: 8px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .banner-buttons {
        gap: 0.5rem;
    }

    .btn span {
        font-size: 0.75rem;
    }

    .btn i {
        font-size: 0.85rem;
    }
}

/* Custom Confirmation Modal Styles */
.custom-confirm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-confirm-modal.show {
    display: flex;
}

.custom-confirm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.custom-confirm-dialog {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    z-index: 10001;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.custom-confirm-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.custom-confirm-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-confirm-header h3 i {
    font-size: 1.3rem;
    color: #f59e0b;
}

.custom-confirm-body {
    padding: 24px;
}

.custom-confirm-body p {
    margin: 0;
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.custom-confirm-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: #f9fafb;
}

.custom-confirm-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    justify-content: center;
}

.custom-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-confirm-cancel {
    background: #e5e7eb;
    color: #374151;
}

.custom-confirm-cancel:hover {
    background: #d1d5db;
}

.custom-confirm-ok {
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    color: white;
}

.custom-confirm-ok:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

@media (max-width: 480px) {
    .custom-confirm-dialog {
        max-width: 95%;
        margin: 10px;
    }
    
    .custom-confirm-header {
        padding: 16px 20px;
    }
    
    .custom-confirm-header h3 {
        font-size: 1rem;
    }
    
    .custom-confirm-body {
        padding: 20px;
    }
    
    .custom-confirm-body p {
        font-size: 0.9rem;
    }
    
    .custom-confirm-footer {
        padding: 12px 20px;
        flex-direction: column;
    }
    
    .custom-confirm-btn {
        width: 100%;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn i {
    color: white;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .scroll-to-top-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .scroll-to-top-btn i {
        font-size: 0.9rem;
    }
}

/* Mobile Cart Notification */
.mobile-cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 40px);
    max-width: 400px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    color: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-cart-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-cart-notification.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(100px);
}

.mobile-cart-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    animation: checkBounce 0.6s ease;
}

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

.mobile-cart-content {
    flex: 1;
    min-width: 0;
}

.mobile-cart-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 4px;
}

.mobile-cart-subtitle {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    font-weight: 500;
}

.mobile-cart-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0;
}

.mobile-cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-cart-close:active {
    transform: scale(0.95);
}

@media (max-width: 480px) {
    .mobile-cart-notification {
        bottom: 15px;
        width: calc(100% - 30px);
        padding: 14px 16px;
        gap: 12px;
    }
    
    .mobile-cart-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .mobile-cart-title {
        font-size: 0.95rem;
    }
    
    .mobile-cart-subtitle {
        font-size: 0.8rem;
    }
    
    .mobile-cart-close {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .mobile-cart-notification {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 12px 14px;
        gap: 10px;
    }
    
    .mobile-cart-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .mobile-cart-title {
        font-size: 0.9rem;
    }
    
    .mobile-cart-subtitle {
        font-size: 0.75rem;
    }
    
    .mobile-cart-close {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

