
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #fff;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            background: white;
            border-bottom: 2px solid #7c2d12;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(to bottom right, #7c2d12, #fdba74);
            border-radius: 12px;
            display: flex;
            align-items: flex-end;
            gap: 2px;
            padding: 8px;
        }

        .sound-bar {
            width: 4px;
            background: white;
            border-radius: 2px;
        }

        .sound-bar:nth-child(1) { height: 12px; }
        .sound-bar:nth-child(2) { height: 24px; }
        .sound-bar:nth-child(3) { height: 16px; }
        .sound-bar:nth-child(4) { height: 20px; }
        .sound-bar:nth-child(5) { height: 12px; }

        .logo-text h1 {
            font-size: 1.25rem;
            font-weight: 800;
            line-height: 1;
        }

        .logo-text .pink {
            background: linear-gradient(135deg, #7c2d12 0%, #fdba74 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text .black {
            color: #1f2937;
        }

        .logo-text p {
            font-size: 0.625rem;
            color: #7c2d12;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .header-city {
            color: #7c2d12;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #991b1b 0%, #fff7ed 50%, #991b1b 100%);
            padding: 3rem 1rem;
            border-bottom: 2px solid #7c2d12;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1609220136736-443140cffec6?w=1200&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #7c2d12 0%, #fdba74 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .hero .subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .hero-badges {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
            font-weight: 600;
            color: #7c2d12;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #22c55e;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 1.125rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .hero-cta:hover {
            background: #16a34a;
            transform: translateY(-2px);
        }

        /* Somnath Banner */
        .somnath-banner {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(244, 114, 182, 0.05) 100%);
            border-bottom: 2px solid #fff7ed;
            padding: 2rem 1rem;
            position: relative;
			background-color: #ffedd5;
        }

        .somnath-banner-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        .somnath-image {
            width: 100%;
            height: 300px;
            border-radius: 1rem;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
        }

        .somnath-text h2 {
            font-size: 2rem;
            color: #7c2d12;
            margin-bottom: 1rem;
        }

        .somnath-text p {
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* Section Styles */
        section {
            padding: 4rem 1rem;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #1f2937;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border: 2px solid #f3f4f6;
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
        }

        .product-card:hover {
            border-color: #7c2d12;
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(236, 72, 153, 0.15);
        }

        .product-image {
            background: linear-gradient(135deg, #991b1b 0%, #fff7ed 100%);
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badge-city {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #22c55e;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 10;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1f2937;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7c2d12;
            margin-bottom: 0.5rem;
        }

        .product-features {
            list-style: none;
            margin-bottom: 1rem;
        }

        .product-features li {
            padding: 0.25rem 0;
            color: #6b7280;
            font-size: 0.875rem;
        }

        .product-features li::before {
            content: "✓ ";
            color: #22c55e;
            font-weight: 700;
            margin-right: 0.25rem;
        }

        .product-btn {
            display: block;
            width: 100%;
            background: #7c2d12;
            color: white;
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .product-btn:hover {
            background: #db2777;
        }

        /* Somnath Content Section */
        .somnath-content {
            background: #f9fafb;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .content-box {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            border: 2px solid #f3f4f6;
        }

        .content-box-with-image {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .content-image {
            width: 100%;
            height: 200px;
            border-radius: 0.75rem;
            object-fit: cover;
        }

        .content-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7c2d12;
            margin-bottom: 1rem;
        }

        .content-box ul {
            list-style: none;
            margin-left: 0;
        }

        .content-box ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .content-box ul li::before {
            content: "🕉️";
            position: absolute;
            left: 0;
        }

        /* Temples Grid */
        .temples-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .temple-card {
            background: white;
            border: 2px solid #fff7ed;
            border-radius: 0.75rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .temple-card:hover {
            border-color: #7c2d12;
            transform: translateY(-2px);
        }

        .temple-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .temple-info {
            padding: 1rem;
        }

        .temple-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .temple-info p {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Delivery Section */
        .delivery-section {
            background: linear-gradient(135deg, #991b1b 0%, #fff7ed 100%);
        }

        .delivery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .delivery-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            border: 2px solid #7c2d12;
        }

        .delivery-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #7c2d12, #fdba74);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .delivery-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1f2937;
        }

        .delivery-card p {
            color: #6b7280;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: #f9fafb;
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            border: 2px solid #f3f4f6;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            color: #1f2937;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: #991b1b;
            color: #7c2d12;
        }

        .faq-toggle {
            transition: transform 0.3s;
            color: #7c2d12;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: #6b7280;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 3rem 1rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto 2rem;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #7c2d12;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #7c2d12;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        /* Floating Buttons */
        .floating-btn {
            position: fixed;
            right: 1.5rem;
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 50;
            transition: transform 0.3s;
            color: white;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .floating-whatsapp {
            background: #22c55e;
            bottom: 1.5rem;
        }

        .floating-call {
            background: #7c2d12;
            bottom: 7rem;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .content-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .delivery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .somnath-banner-content {
                grid-template-columns: 1fr 1fr;
            }

            .temples-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .content-box-with-image {
                grid-template-columns: 200px 1fr;
            }
        }

        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .hero h1 {
                font-size: 3rem;
            }

            .temples-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

