.whatsapp-chat-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#25D366;
    color:white;
    padding:12px 20px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-chat-btn i{
    font-size:20px;
}
.whatsapp-wrapper{
    display:flex;
    justify-content:center;
    margin:20px 0;
}



        /* === GLASSMORPHISM BASE & VARIABLES === */
        :root {
            --saffron: #FF9933;
            --gold: #D4AF37;
            --deep-saffron: #E68A00;
            --light-gold: #F4E4B7;
            --glass-bg: rgba(255, 255, 255, 0.25);
            --glass-border: rgba(255, 255, 255, 0.40);
            --glass-shadow: rgba(31, 38, 135, 0.12);
            --text-dark: #2C1810;
            --text-light: #5A4D3F;
            --success: #2E8B57;
            --warning: #FF9800;
            --danger: #f44336;
            --bg-light: #FFF8E7;
            --menu-bg: rgba(255, 255, 255, 0.95);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Noto Sans Devanagari', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--bg-light);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            padding-bottom: 80px; /* Space for bottom menu */
        }
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(circle at 15% 50%, rgba(255, 153, 51, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            z-index: -2;
        }
        h1, h2, h3, h4, .logo { font-family: 'Playfair Display', serif; }
        .container { width: 90%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

        /* === GLASSMORPHISM UTILITY === */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border-radius: 24px;
            border: 1px solid var(--glass-border);
            box-shadow: 0 15px 35px -5px var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }
        .glass-button {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 6px 20px -5px rgba(255, 153, 51, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
            color: var(--deep-saffron);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        .glass-button:hover {
            background: #e68a00;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px -8px rgba(255, 153, 51, 0.35), inset 0 1px 0 rgba(255, 255, 255, 1);
        }
        .gradient-text {
            background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Payment App Buttons */
        .payment-app-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .payment-app-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* === ENHANCED HEADER === */
        .main-header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 92%;
            max-width: 1200px;
            z-index: 1000;
            padding: 15px 25px;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1001;
        }
        .logo-icon {
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
        }

        /* === MOBILE APP BOTTOM MENU === */
        .bottom-app-menu {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--menu-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            padding: 12px 0;
            display: none;
        }
        .menu-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }
        .menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-light);
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 80px;
        }
        .menu-item.active {
            color: var(--saffron);
            background: rgba(255, 153, 51, 0.1);
        }
        .menu-icon {
            font-size: 1.4rem;
            margin-bottom: 5px;
            transition: all 0.3s;
        }
        .menu-item.active .menu-icon {
            transform: translateY(-3px);
        }
        .menu-label {
            font-size: 0.8rem;
            font-weight: 500;
        }
        .menu-indicator {
            width: 5px;
            height: 5px;
            background: var(--saffron);
            border-radius: 50%;
            margin-top: 4px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .menu-item.active .menu-indicator {
            opacity: 1;
        }

        /* === HERO & CONTENT SECTIONS === */
        .hero-section { padding: 150px 0 60px; }
        .hero-title {
            font-size: 2.8rem;
            line-height: 1.1;
            margin-bottom: 20px;
            text-align: center;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 40px;
            text-align: center;
        }
        .glass-slider {
            max-width: 1000px;
            height: 450px;
            margin: 0 auto 50px;
        }
        .slider-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s;
            border-radius: 25px;
        }
        .slider-slide.active { opacity: 1; }
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            color: white;
            border-radius: 0 0 25px 25px;
        }
        .slide-title { font-size: 1.8rem; margin-bottom: 8px; }
        .slide-desc { font-size: 0.95rem; opacity: 0.9; }

        /* === POOJA TIMER === */
        .pooja-timer-section {
            max-width: 550px;
            margin: 40px auto;
            padding: 25px;
            text-align: center;
        }
        .timer-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--deep-saffron);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .timer-display {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: monospace;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        /* === PRODUCTS SECTION === */
        /*.products-section { padding: 70px 0; }*/
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        .product-card {
            padding: 20px;
            text-align: center;
            transition: all 0.4s ease;
        }
        .product-card:hover { transform: translateY(-10px); }
        .product-image {
            height: 200px;
            width: 100%;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            margin-bottom: 18px;
            transition: transform 0.6s;
        }
        .product-card:hover .product-image { transform: scale(1.05); }
        .product-name { font-size: 1.4rem; margin-bottom: 10px; }
        .product-desc { color: var(--text-light); margin-bottom: 15px; font-size: 0.92rem; }
        .product-price {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 15px 0 20px;
        }
        /* Quantity Controls */
        .quantity-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 15px 0 20px;
        }
        .quantity-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--saffron);
            color: white;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .quantity-btn:hover {
            background: var(--deep-saffron);
            transform: scale(1.1);
        }
        .quantity-input {
            width: 60px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.8);
        }
        .sold-out-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--danger);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        .cart-button {
            width: 100%;
            padding: 14px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* === NEW: YOUTUBE VIDEO SECTION === */
        .youtube-section {
            padding: 70px 0;
        }
        .youtube-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .youtube-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .youtube-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .youtube-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        .video-card {
            padding: 20px;
            transition: all 0.4s ease;
        }
        .video-card:hover {
            transform: translateY(-8px);
        }
        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
        }
        .video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .video-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        .video-desc {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .youtube-button {
            text-align: center;
            margin-top: 40px;
        }

        /* === NEW: GALLERY SECTION === */
        .gallery-section {
            padding: 70px 0;
        }
        .gallery-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .gallery-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .gallery-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
            color: white;
            padding: 20px;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        .gallery-caption {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .gallery-location {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        .view-more-btn {
            text-align: center;
            margin-top: 40px;
        }

        /* === NEW: GALLERY PAGE MODAL === */
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            padding: 20px;
            overflow-y: auto;
        }
        .modal-content {
            max-width: 1200px;
            margin: 40px auto;
            position: relative;
        }
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        .modal-title {
            color: white;
            font-size: 2rem;
        }
        .close-modal {
            background: var(--saffron);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .close-modal:hover {
            background: var(--deep-saffron);
            transform: rotate(90deg);
        }
        .modal-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            padding: 20px;
        }
        .modal-gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .modal-gallery-item:hover {
            transform: scale(1.05);
        }
        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* === NEW: FEEDBACK SECTION === */
        .feedback-section {
            padding: 70px 0;
        }
        .feedback-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .feedback-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .feedback-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .feedback-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .feedback-form {
            padding: 35px;
            margin-bottom: 50px;
        }
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .form-group {
            flex: 1;
            min-width: 250px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.5);
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.8);
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: var(--gold);
        }
        .file-upload-area {
            padding: 30px;
            text-align: center;
            margin: 25px 0;
            border: 2px dashed rgba(212, 175, 55, 0.4);
            cursor: pointer;
            border-radius: 15px;
            transition: all 0.3s;
        }
        .file-upload-area:hover {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.2);
        }
        .upload-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .feedback-button {
            text-align: center;
            margin-top: 30px;
        }
        
        /* === FEEDBACK DISPLAY SECTION === */
        .feedback-display-section {
            padding: 50px 0;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .feedback-card {
            padding: 25px;
            transition: all 0.3s ease;
        }
        .feedback-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .feedback-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .feedback-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--saffron), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .user-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-dark);
        }
        .feedback-rating {
            color: var(--gold);
            font-size: 1.2rem;
        }
        .feedback-content {
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .feedback-date {
            font-size: 0.85rem;
            color: var(--text-light);
            opacity: 0.7;
        }
        .feedback-image {
            margin-top: 15px;
            border-radius: 10px;
            overflow: hidden;
            max-height: 200px;
        }
        .feedback-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .no-feedback {
            text-align: center;
            padding: 40px;
            color: var(--text-light);
        }

        /* === ORDER FORM SECTION === */
        .order-section { padding: 70px 0; }
        .order-form { max-width: 850px; margin: 0 auto; padding: 35px; }
        
        /* Slip Upload before Name */
        .slip-upload-section {
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            border: 2px dashed rgba(212, 175, 55, 0.4);
        }
        .slip-upload-title {
            color: var(--text-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }
        
        /* QR Code Option */
        .qr-option-section {
            margin: 25px 0;
            padding: 25px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            text-align: center;
        }
        .qr-placeholder {
            width: 180px;
            height: 180px;
            margin: 15px auto;
            background: linear-gradient(135deg, #f5f1e8, #fcf9f2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gold);
            color: var(--text-light);
            font-size: 0.9rem;
            flex-direction: column;
            padding: 10px;
        }
        .qr-instructions {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 15px;
            line-height: 1.5;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }
        .form-actions { text-align: center; margin-top: 35px; }
        .submit-button {
            padding: 16px 45px;
            font-size: 1rem;
            background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
            color: white;
            border: none;
        }

        /* === PAYMENT SECTION WITH QR CODE === */
        .payment-section {
            max-width: 750px;
            margin: 50px auto;
            padding: 35px;
            display: none;
        }
        .order-summary {
            padding: 25px;
            margin-bottom: 25px;
        }
        .qr-container {
            text-align: center;
            padding: 25px;
            margin: 20px 0;
        }
        #dynamicQRCode {
            margin: 20px auto;
            display: flex;
            justify-content: center;
        }
        .upload-area {
            padding: 30px;
            text-align: center;
            margin: 25px 0;
            border: 2px dashed rgba(212, 175, 55, 0.4);
            cursor: pointer;
            border-radius: 15px;
        }
        .upload-area:hover { border-color: var(--gold); }

        /* === FAQ SECTION === */
        .faq-section {
            max-width: 850px;
            margin: 70px auto;
            padding: 35px;
        }
        .faq-item {
            margin-bottom: 12px;
            padding: 18px 22px;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: var(--text-light);
        }
        .faq-answer.open {
            max-height: 300px;
            padding-top: 12px;
        }

        /* === CONTACT SECTION === */
        .contact-section {
            max-width: 850px;
            margin: 70px auto;
            padding: 35px;
            text-align: center;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 35px;
        }
        .contact-card {
            padding: 22px;
            text-align: center;
        }
        .contact-icon {
            font-size: 2.2rem;
            color: var(--gold);
            margin-bottom: 12px;
        }

        /* === ENHANCED FOOTER === */
        .main-footer {
            background: rgba(255, 248, 231, 0.9);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding: 50px 0 25px;
            margin-top: 80px;
            position: relative;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo-col .logo {
            font-size: 2rem;
            margin-bottom: 15px;
            justify-content: flex-start;
        }
        .footer-tagline {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: 0.95rem;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            color: var(--deep-saffron);
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .social-icon:hover {
            background: var(--saffron);
            color: white;
            transform: translateY(-3px);
        }
        .footer-col h3 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 35px;
            height: 3px;
            background: linear-gradient(to right, var(--saffron), var(--gold));
            border-radius: 3px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: var(--saffron);
            transform: translateX(5px);
        }
        .contact-info {
            list-style: none;
        }
        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .contact-info i {
            color: var(--saffron);
            font-size: 1rem;
            margin-top: 3px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--text-light);
            font-size: 0.85rem;
        }

        /* Payment Buttons Styles */
        .payment-buttons-below-qr {
            animation: slideInUp 0.5s ease-out;
            margin-top: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

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

        .payment-buttons-below-qr .payment-app-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: none !important;
            color: white !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            padding: 15px 25px !important;
            margin: 5px;
            min-width: 150px;
            border-radius: 12px !important;
        }

        .payment-buttons-below-qr .payment-app-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
        }

        .payment-buttons-payment-section .payment-app-btn {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: none !important;
            color: white !important;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .payment-buttons-payment-section .payment-app-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }

        /* === RESPONSIVE DESIGN === */
        @media (max-width: 1100px) {
            .hero-title { font-size: 2.5rem; }
            .glass-slider { height: 400px; }
            .youtube-title, .gallery-title, .feedback-title { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .bottom-app-menu { display: block; }
            body { padding-bottom: 70px; }
            
            .main-header { top: 15px; padding: 12px 20px; width: 95%; }
            .hero-section { padding: 140px 0 50px; }
            .hero-title { font-size: 2.1rem; }
            .hero-subtitle { font-size: 1rem; padding: 0 15px; }
            .glass-slider { height: 350px; margin-bottom: 35px; }
            .slide-overlay { padding: 20px; }
            .slide-title { font-size: 1.6rem; }
            
            .section-title { font-size: 2.1rem; }
            /* Mobile product layout: 2 products per row */
            .products-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 15px;
            }
            .product-card { padding: 15px; }
            .product-image { height: 150px; }
            .product-name { font-size: 1.2rem; }
            .product-price { font-size: 1.5rem; }
            .quantity-controls { gap: 8px; }
            .quantity-btn { width: 35px; height: 35px; }
            .quantity-input { width: 50px; }
            
            .youtube-section, .gallery-section, .feedback-section { padding: 50px 0; }
            .youtube-title, .gallery-title, .feedback-title { font-size: 2.1rem; }
            .video-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .feedback-grid { grid-template-columns: 1fr; }
            .modal-gallery-grid { grid-template-columns: repeat(2, 1fr); }
            
            .gallery-item { height: 200px; }
            .modal-gallery-item { height: 200px; }
            
            .order-form, .payment-section, .faq-section, .contact-section { padding: 25px 18px; }
            
            .footer-container { grid-template-columns: 1fr; gap: 35px; text-align: center; }
            .footer-col h3::after { left: 50%; transform: translateX(-50%); }
            .footer-links a { justify-content: center; }
            .contact-info { align-items: center; text-align: center; }
            
            .menu-item { padding: 8px 12px; }
            .menu-icon { font-size: 1.3rem; }
            .menu-label { font-size: 0.75rem; }
            
            .payment-buttons-below-qr .payment-app-btn {
                min-width: 130px;
                padding: 12px 20px !important;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .hero-title { font-size: 1.8rem; }
            .glass-slider { height: 300px; }
            .section-title { font-size: 1.9rem; }
            .timer-display { font-size: 2rem; }
            
            /* Mobile product layout: 2 products per row */
            .products-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 12px;
            }
            .product-card { padding: 12px; }
            .product-image { height: 120px; }
            .product-name { font-size: 1.1rem; }
            .product-price { font-size: 1.3rem; }
            .quantity-controls { gap: 6px; margin: 10px 0 15px; }
            .quantity-btn { width: 30px; height: 30px; font-size: 1rem; }
            .quantity-input { width: 40px; font-size: 1rem; }
            
            .youtube-title, .gallery-title, .feedback-title { font-size: 1.9rem; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .modal-gallery-grid { grid-template-columns: 1fr; }
            .gallery-item { height: 180px; }
            
            .footer-col h3 { font-size: 1.1rem; }
            
            .menu-items { padding: 0 10px; }
            .menu-item { padding: 6px 10px; max-width: 70px; }
            .menu-icon { font-size: 1.2rem; }
            .menu-label { font-size: 0.7rem; }
            
            .payment-buttons-below-qr .payment-app-btn {
                min-width: 120px;
                padding: 10px 15px !important;
                font-size: 0.85rem;
                margin: 3px;
            }
            
            .payment-buttons-below-qr {
                padding: 15px;
            }
        }
        @media (min-width: 769px) {
            .bottom-app-menu { display: none; }
            body { padding-bottom: 0; }
            /* Desktop product layout: 3 products per row */
            .products-grid { 
                grid-template-columns: repeat(3, 1fr); 
            }
        }
    