        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: 'DM Sans';
            src: url(../DM_Sans/static/DMSans_18pt-Regular.ttf) format(truetype);
            font-weight: 400;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            background: #ffffff;
            scroll-behavior: smooth;
        }

        /* CLEAN HEADER */
        .header {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
            border-bottom: 1px solid #f0f0f0;
            overflow: hidden;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transition: background-image 0.1s linear;
            animation: slideShow 15s infinite;
        }

        .header:before {
            content: "";
            position: absolute;
            inset: 0;
            background: inherit;
            filter: brightness(0.6) blur(4px);
            z-index: 0;
            background-attachment: fixed;
        }

        @keyframes slideShow {
            0% {background-image: url('../images/Gurasa4.jpg');}
            33% {background-image: url('../images/Gurasa3.jpg');}
            66% {background-image: url('../images/juiced1.jpg');}
            100% {background-image: url('../images/Gurasa4.jpg');}
        } 

        .header * {
            position: relative;
            z-index: 1;
        }

        .header-content {
            max-width: 700px;
        }

        .brand {
            margin-bottom: 40px;
        }

        .brand-name {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: clamp(4rem, 10vw, 7rem);
            font-weight: 800;
            color: #f0f0f0;
            letter-spacing: -3px;
            line-height: 1;
            margin-bottom: 15px;
        }

        .brand-by {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 300;
            color: #aaa;
            font-style: italic;
        }

        .tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: #999;
            margin-bottom: 50px;
            font-weight: 300;
        }

        .header-cta {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: inline-block;
        }

        .btn-primary {
            background: #1a1a1a;
            color: #fff;
            border: 2px solid #1a1a1a;
        }

        .btn-primary:hover {
            background: #fff;
            color: #1a1a1a;
        }

        .btn-secondary {
            background: #fff;
            color: #1a1a1a;
            border: 2px solid #e0e0e0;
        }

        .btn-secondary:hover {
            border-color: #1a1a1a;
        }

        /* CONTAINER */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* PRODUCTS PREVIEW */
        .products-preview {
            padding: 100px 20px;
        }

        .preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
        }

        .preview-item {
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .preview-item:hover .preview-image {
            transform: scale(1.05);
        }

        .preview-image {
            width: 100%;
            height: 350px;
            background: #fafafa;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .preview-placeholder {
            font-size: 5rem;
            color: #ddd;
        }

        .preview-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .preview-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .view-details {
            color: #666;
            font-size: 0.9rem;
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .view-details:hover {
            color: #1a1a1a;
        }

        /* PRODUCT DETAILS SECTION */
        .product-details {
            padding: 100px 20px;
            background: #fafafa;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            font-weight: 300;
        }

        .details-grid {
            display: grid;
            gap: 100px;
        }

        .detail-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .detail-item:nth-child(even) .detail-image {
            order: 2;
        }

        .detail-image {
            width: 100%;
            height: 450px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .detail-placeholder {
            font-size: 6rem;
            color: #e0e0e0;
        }

        .detail-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .detail-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
        }

        .detail-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .detail-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .detail-features li {
            padding: 10px 0;
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .detail-features li::before {
            content: '✓';
            color: #1a1a1a;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* ABOUT SECTION */
        .about-section {
            padding: 100px 20px;
            background: #fff;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .features-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-box {
            text-align: center;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .feature-label {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
        }

        /* CONTACT SECTION */
        .contact-section {
            padding: 100px 20px;
            background: #1a1a1a;
            color: #fff;
            text-align: center;
        }

        .contact-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-subtitle {
            font-size: 1.2rem;
            margin-bottom: 50px;
            color: #ccc;
        }

        .contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-contact {
            padding: 18px 45px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-phone {
            background: #fff;
            color: #1a1a1a;
        }

        .btn-phone:hover {
            background: #f0f0f0;
        }

        .btn-whatsapp {
            background: #25D366;
            color: #fff;
        }

        .btn-whatsapp:hover {
            background: #20ba5a;
        }

        /* FOOTER */
        .footer {
            padding: 60px 20px;
            background: #fff;
            border-top: 1px solid #f0f0f0;
            text-align: center;
        }

        .footer-text {
            color: #999;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .footer-credit {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #f0f0f0;
            color: #666;
        }

        .footer-credit a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }

        .footer-credit a:hover {
            opacity: 0.7;
        }

        /* FLOATING WHATSAPP */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(0,0,0,0.25);
        }

        .ig {
            padding: 20px 20px;
        }

        .ig > a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
        }

        .ig:hover {
            text-decoration: underline;
        }

        @media (max-width: 968px) {
            .detail-item {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .detail-item:nth-child(even) .detail-image {
                order: 1;
            }

            .preview-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .header-cta {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }