       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #ffffff;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }

        /* Top Announcement Bar */
        .announcement-bar {
            background: linear-gradient(to right, #ea580c, #f59e0b);
            color: white;
            text-align: center;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Header */
        header {
            background: white;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #ea580c, #f59e0b);
            border-radius: 12px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 0.5rem;
            gap: 2px;
            box-shadow: 0 4px 6px rgba(234, 88, 12, 0.3);
        }

        .sound-bar {
            width: 3px;
            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.5rem;
            font-weight: 900;
            line-height: 1;
        }

        .logo-text h1 .orange-text {
            background: linear-gradient(to right, #ea580c, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text p {
            font-size: 0.625rem;
            color: #ea580c;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Navigation */
        nav {
            display: none;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #1f2937;
            font-weight: 700;
            font-size: 1.25rem;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ea580c;
        }

        .contact-btn {
            background: #ea580c !important;
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
        }

        .contact-btn:hover {
            background: #c2410c !important;
        }

        /* Shop Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-btn {
            background: none;
            border: none;
            color: #1f2937;
            font-weight: 700;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 2px solid #f3f4f6;
            border-radius: 0.5rem;
            margin-top: 0.5rem;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: #4b5563;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .dropdown-content a:hover {
            background: #fef3c7;
            color: #ea580c;
        }

        .whatsapp-btn {
            background: #22c55e;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 1.125rem;
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            background: #16a34a;
        }

        .mobile-menu-btn {
            background: none;
            border: none;
            font-size: 1.75rem;
            cursor: pointer;
            display: block;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: white;
            padding: 1rem;
            border-top: 1px solid #e5e7eb;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: #1f2937;
            font-weight: 600;
            font-size: 1.125rem;
            text-decoration: none;
        }

        .mobile-menu a:hover {
            background: #fef3c7;
            color: #ea580c;
            border-radius: 0.5rem;
        }

        /* Hero Section */
        .hero {
            background-image: url('https://thumbs.dreamstime.com/b/elegant-pastel-peach-background-floating-diya-lamps-flower-petals-bokeh-light-effects-ideal-diwali-pooja-festive-396306871.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 5rem 1rem;
            text-align: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.4), rgba(0,0,0,0.5));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 56rem;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(234, 88, 12, 0.9);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero h1 .orange-text {
            color: #fb923c;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 2rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
            align-items: center;
        }

        .hero-btn {
            padding: 1.25rem 2.5rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            transition: all 0.3s;
        }

        .hero-btn:hover {
            box-shadow: 0 10px 15px rgba(0,0,0,0.4);
        }

        .btn-whatsapp {
            background: #22c55e;
            color: white;
        }

        .btn-call {
            background: white;
            color: #1f2937;
            border: 2px solid white;
        }

        .trust-indicators {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            font-size: 1rem;
            color: white;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
        }

        /* Trust Badges */
        .trust-badges {
            background: #f9fafb;
            padding: 2.5rem 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .badges-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .badge-item {
            text-align: center;
            min-width: 200px;
        }

        .badge-icon {
            color: #ea580c;
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .badge-item h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .badge-item p {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Products Section */
        .products-section {
            padding: 5rem 1rem;
            background: linear-gradient(to bottom, #fff7ed 0%, #ffedd5 25%, #fed7aa 50%, #ffedd5 75%, #fff7ed 100%);
            position: relative;
        }
        
        .products-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.08) 0%, transparent 50%),
                              radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #ea580c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #6b7280;
        }

        /* Products Grid - THE CRITICAL PART FOR 3 COLUMNS */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Product Card */
        .product-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(234, 88, 12, 0.08);
        }

        .product-card:hover {
            box-shadow: 0 20px 25px rgba(234, 88, 12, 0.15);
            border-color: #fb923c;
            transform: translateY(-4px);
        }

        .popular-badge {
            background: #ea580c;
            color: white;
            text-align: center;
            padding: 0.5rem;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .product-image {
            background: #f9fafb;
            padding: 0.5rem 0.75rem;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .product-details {
            padding: 1.75rem;
        }

        .product-details h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            min-height: 56px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .stars {
            display: flex;
            gap: 2px;
        }

        .star {
            color: #fbbf24;
            font-size: 1rem;
        }

        .star.empty {
            color: #d1d5db;
        }

        .review-count {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .product-features {
            margin-bottom: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.375rem;
            font-size: 1rem;
            color: #374151;
        }

        .feature-check {
            color: #22c55e;
            font-weight: 700;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0.75rem;
            border-top: 1px solid #e5e7eb;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .inquire-btn {
            background: #ea580c;
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }

        .inquire-btn:hover {
            background: #c2410c;
        }

        /* YouTube Videos Section */
        .videos-section {
            padding: 5rem 1rem;
            background: #f9fafb;
        }

        .videos-section .section-header h2 {
            color: white;
            -webkit-text-fill-color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .videos-section .section-header p {
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .video-container {
            max-width: 56rem;
            margin: 0 auto;
            position: relative;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 20px 25px rgba(0,0,0,0.15);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 10;
        }

        .video-nav:hover {
            background: white;
        }

        .video-nav.prev {
            left: 1rem;
        }

        .video-nav.next {
            right: 1rem;
        }

        .video-title {
            text-align: center;
            margin-top: 2rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .video-counter {
            text-align: center;
            margin-top: 0.5rem;
            color: #6b7280;
            font-size: 1.125rem;
        }

        /* Video Cards Grid */
        .video-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 1280px;
            margin: 3rem auto 0;
        }

        .video-card {
            background: white;
            border: 2px solid #fbbf24;
            border-radius: 1rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(234, 88, 12, 0.1);
        }

        .video-card:hover {
            border-color: #ea580c;
            box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
            transform: translateY(-4px);
        }

        .video-card.active {
            border-color: #ea580c;
            background: #fff7ed;
            box-shadow: 0 8px 16px rgba(234, 88, 12, 0.25);
        }

        .video-thumbnail {
            position: relative;
            padding-bottom: 56.25%;
            background: #000;
            overflow: hidden;
        }

        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 4rem;
            height: 4rem;
            background: rgba(234, 88, 12, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            transition: transform 0.3s;
        }

        .video-card:hover .video-play-overlay {
            transform: translate(-50%, -50%) scale(1.1);
            background: #ea580c;
        }

        .video-card-info {
            padding: 1.25rem;
        }

        .video-card-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1f2937;
        }

        .video-card-number {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 600;
        }

        /* Popular Products Section */
        .popular-section {
            padding: 5rem 1rem;
            background: #f9fafb;
        }

        .popular-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .popular-card {
            background: white;
            border: 1px solid #fbbf24;
            border-radius: 0.75rem;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(234, 88, 12, 0.1);
        }

        .popular-card:hover {
            box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
            transform: translateY(-4px);
        }

        .popular-image {
            background: #f9fafb;
            padding: 0.5rem 0.75rem;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popular-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .popular-details {
            padding: 1.25rem;
        }

        .popular-details h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .popular-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ea580c;
            margin-bottom: 0.75rem;
        }

        /* Bulk Orders Section */
        .bulk-section {
            padding: 5rem 1rem;
            background-image: url('https://img.freepik.com/premium-vector/vibrant-gradient-mandala-backgrounds-enhance-your-design-with-color-transitions-pattern_563959-452.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .bulk-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.92));
        }

        .bulk-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
        }

        .bulk-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .bulk-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 8px 16px rgba(234, 88, 12, 0.15);
            border: 2px solid #fbbf24;
            transition: all 0.3s;
        }

        .bulk-card:hover {
            box-shadow: 0 12px 24px rgba(234, 88, 12, 0.25);
            transform: translateY(-4px);
        }

        .bulk-card h3 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ea580c;
        }

        .bulk-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .bulk-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .bulk-check {
            color: #22c55e;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .bulk-btn {
            background: #ea580c;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .bulk-btn:hover {
            background: #c2410c;
        }

        /* Bulk Order Form */
        .form-section {
            padding: 5rem 1rem;
            background: #f9fafb;
        }

        .form-container {
            max-width: 48rem;
            margin: 0 auto;
            background: white;
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 8px 16px rgba(234, 88, 12, 0.15);
            border: 2px solid #fbbf24;
        }

        .form-container h3 {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-group {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 1rem;
        }

        .form-input:focus {
            outline: none;
            border-color: #ea580c;
        }

        .submit-btn {
            background: #22c55e;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background: #16a34a;
        }

        .form-note {
            text-align: center;
            margin-top: 1rem;
            color: #6b7280;
            font-size: 1rem;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 5rem 1rem;
            background: white;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1280px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #fbbf24;
            box-shadow: 0 4px 6px rgba(234, 88, 12, 0.1);
            transition: all 0.3s;
        }

        .review-card:hover {
            box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
            transform: translateY(-4px);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
        }

        .reviewer-info h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .reviewer-info p {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .review-stars {
            display: flex;
            gap: 2px;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #374151;
        }

        /* Responsive - TABLET AND DESKTOP */
        @media (min-width: 768px) {
            .form-group {
                grid-template-columns: repeat(2, 1fr);
            }

            .popular-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .bulk-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .video-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Responsive - LARGE DESKTOP */
        @media (min-width: 1024px) {
            .video-cards-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Footer */
        footer {
            background: #111827;
            color: white;
            padding: 4rem 1rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            max-width: 1280px;
            margin: 0 auto 3rem;
        }

        .footer-section h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-section p, .footer-section a {
            color: #9ca3af;
            font-size: 1rem;
            line-height: 1.8;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #fb923c;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        .whatsapp-footer-btn {
            background: #22c55e;
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            text-decoration: none;
        }
        
        .whatsapp-footer-btn:hover {
            background: #16a34a;
            color: white !important;
        }

        /* 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: #ea580c;
            bottom: 7rem;
        }
        
        .floating-call:hover {
            background: #c2410c;
        }

        /* Responsive - TABLET AND DESKTOP (768px and up) */
        @media (min-width: 768px) {
            nav {
                display: block;
            }

            .whatsapp-btn {
                display: flex;
            }

            .mobile-menu-btn {
                display: none;
            }

            .hero h1 {
                font-size: 4rem;
            }

            .hero p {
                font-size: 1.5rem;
            }

            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }

            .section-header h2 {
                font-size: 3rem;
            }

            .section-header p {
                font-size: 1.5rem;
            }

            /* 2 COLUMNS ON MEDIUM SCREENS */
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Responsive - LARGE DESKTOP (1024px and up) - 3 COLUMNS! */
        @media (min-width: 1024px) {
            /* 3 COLUMNS ON LARGE SCREENS */
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }