        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
        }

        body {
            font-family: "Rubik", sans-serif;
            background-color: #FFD93D;
            color: #4C763B;
            overflow-x: hidden;
        }

        #app {
            width: 100%;
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* Cloud Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        @keyframes floatSlow {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes floatMedium {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .page {
            display: none;
            width: 100%;
        }

        .page.active {
            display: block;
        }

        /* Header Styles */
        header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 25px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #4C763B;
            letter-spacing: 2px;
            animation: slideInLeft 0.6s ease;
        }

        .header-right {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .cart-icon {
            position: relative;
            font-size: 28px;
            cursor: pointer;
            color: #4C763B;
            transition: transform 0.3s ease;
            animation: slideInRight 0.6s ease 0.1s backwards;
        }

        .cart-icon:hover {
            transform: scale(1.15) rotate(-15deg);
        }

        .cart-counter {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #F5D2D2;
            color: #4C763B;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            border: 2px solid #4C763B;
        }

        .menu-toggle {
            background: none;
            border: none;
            font-size: 28px;
            color: #4C763B;
            cursor: pointer;
            animation: slideInRight 0.6s ease 0.2s backwards;
        }

        .nav-menu {
            display: none;
            position: absolute;
            top: 70px;
            right: 60px;
            background: #FFD93D;
            border: 2px solid #4C763B;
            border-radius: 12px;
            padding: 20px 0;
            min-width: 150px;
            box-shadow: 0 8px 24px rgba(76, 118, 59, 0.15);
            z-index: 99;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
        }

        .nav-item {
            padding: 12px 24px;
            color: #4C763B;
            text-decoration: none;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .nav-item:hover {
            background-color: #F5D2D2;
            border-left: 3px solid #4C763B;
            padding-left: 28px;
        }

.hero {
    min-height: 100vh; /* allows content to grow */
    background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
    background-image: url('https://i.pinimg.com/736x/7f/56/19/7f5619750eafcc00123186f2bd0aa26f.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 120px;
    padding-bottom: 60px;
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -10%;
            width: 120%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(76,118,59,0.03)"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
            pointer-events: none;
            z-index: 1;
        }

        .hero-heading {
            font-size: 72px;
            font-weight: 900;
            color: #4C763B;
            text-align: center;
            margin-bottom: 60px;
            z-index: 2;
            animation: slideInUp 0.8s ease;
            letter-spacing: -2px;
        }


        /* Hero Bottom Section */
        .hero-bottom {
            position: absolute;
            bottom: 60px;
            left: 60px;
            z-index: 10;
            animation: slideInLeft 1s ease 0.5s backwards;
        }

        .hero-description {
            color: #4C763B;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 400px;
            font-weight: 400;
        }

        .btn {
            padding: 14px 32px;
            background-color: #F5D2D2;
            border: 2px solid #4C763B;
            color: #4C763B;
            border-radius: 12px;
            font-family: "Rubik", sans-serif;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(76, 118, 59, 0.2);
            background-color: #4C763B;
            color: #F5D2D2;
        }

        .btn:active {
            transform: translateY(-2px);
        }

        /* Section Styles */
        section {
            padding: 80px 60px;
            background-color: #FFD93D;
            width: 100%;
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            color: #4C763B;
            text-align: center;
            margin-bottom: 20px;
            animation: slideInUp 0.8s ease;
        }

        .section-subtitle {
            font-size: 16px;
            color: #4C763B;
            text-align: center;
            margin-bottom: 60px;
            font-weight: 400;
            animation: slideInUp 0.8s ease 0.1s backwards;
        }

        /* Popup Modal Styles */
        .popup-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 5000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .popup-modal.active {
            display: flex;
        }

        .popup-content {
            background: white;
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            animation: scaleIn 0.4s ease;
            position: relative;
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #F5D2D2;
            border: 2px solid #4C763B;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            color: #4C763B;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .popup-close:hover {
            background-color: #4C763B;
            color: #F5D2D2;
            transform: rotate(90deg);
        }

        .popup-header {
            padding: 30px;
            background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
            border-bottom: 2px solid #4C763B;
        }

        .popup-header h2 {
            font-size: 28px;
            color: #4C763B;
            margin: 0;
        }

        .popup-body {
            padding: 30px;
            color: #4C763B;
        }

        .popup-body h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #4C763B;
        }

        .popup-body p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #4C763B;
        }

        .popup-body ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .popup-body li {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 10px;
            color: #4C763B;
        }

        .popup-body strong {
            color: #4C763B;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #4C763B;
            font-weight: 600;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #4C763B;
            border-radius: 8px;
            font-family: "Rubik", sans-serif;
            color: #4C763B;
            font-size: 14px;
            background-color: #FFFAF0;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FFD93D;
            box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.3);
            background-color: white;
        }

        .form-submit {
            background-color: #4C763B;
            color: #F5D2D2;
            padding: 12px 24px;
            border: 2px solid #4C763B;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            font-family: "Rubik", sans-serif;
            width: 100%;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background-color: #F5D2D2;
            color: #4C763B;
            transform: translateY(-3px);
        }

        /* Shop Section */
        .shop-section {
            background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
        }

        .filter-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease 0.2s backwards;
        }

        .filter-btn {
            padding: 10px 24px;
            background-color: #F5D2D2;
            border: 2px solid #4C763B;
            color: #4C763B;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: "Rubik", sans-serif;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background-color: #4C763B;
            color: #F5D2D2;
            transform: scale(1.05);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            animation: slideInUp 0.8s ease 0.3s backwards;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            animation: scaleIn 0.6s ease;
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 16px 40px rgba(76, 118, 59, 0.2);
        }

        .product-image {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
            color: #4C763B;
            margin-bottom: 8px;
        }

        .product-description {
            font-size: 13px;
            color: #4C763B;
            line-height: 1.5;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .product-price {
            font-size: 20px;
            font-weight: 900;
            color: #4C763B;
            margin-bottom: 15px;
        }

        .product-quick-view {
            background-color: #F5D2D2;
            border: 2px solid #4C763B;
            color: #4C763B;
            padding: 10px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 12px;
            width: 100%;
            font-family: "Rubik", sans-serif;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .product-quick-view:hover {
            background-color: #4C763B;
            color: #F5D2D2;
            transform: translateY(-2px);
        }

        .product-add-cart {
            background-color: #4C763B;
            border: 2px solid #4C763B;
            color: #F5D2D2;
            padding: 10px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 12px;
            width: 100%;
            font-family: "Rubik", sans-serif;
            transition: all 0.3s ease;
        }

        .product-add-cart:hover {
            background-color: #F5D2D2;
            color: #4C763B;
            transform: translateY(-2px);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 700px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            animation: scaleIn 0.4s ease;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #F5D2D2;
            border: 2px solid #4C763B;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            color: #4C763B;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background-color: #4C763B;
            color: #F5D2D2;
            transform: rotate(90deg);
        }

        .modal-header {
            padding: 30px;
            background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
            border-bottom: 2px solid #4C763B;
            position: relative;
        }

        .modal-header h2 {
            font-size: 28px;
            color: #4C763B;
            margin-bottom: 8px;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-details {
            margin-bottom: 20px;
        }

        .modal-details p {
            color: #4C763B;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .modal-details strong {
            color: #4C763B;
            font-weight: 700;
        }

        .modal-spec {
            background: #FFD93D;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .modal-spec-item {
            display: flex;
            justify-content: space-between;
            color: #4C763B;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .modal-spec-item:last-child {
            margin-bottom: 0;
        }

        .modal-price {
            font-size: 24px;
            font-weight: 900;
            color: #4C763B;
            margin: 20px 0;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px;
            border: 2px solid #4C763B;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-family: "Rubik", sans-serif;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .modal-btn.add-to-cart {
            background-color: #4C763B;
            color: #F5D2D2;
        }

        .modal-btn.add-to-cart:hover {
            background-color: #F5D2D2;
            color: #4C763B;
            transform: translateY(-3px);
        }

        .modal-btn.close-modal {
            background-color: #F5D2D2;
            color: #4C763B;
        }

        .modal-btn.close-modal:hover {
            background-color: #4C763B;
            color: #F5D2D2;
            transform: translateY(-3px);
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            animation: slideInUp 0.8s ease 0.2s backwards;
        }

        .about-text {
            color: #4C763B;
        }

        .about-text h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #4C763B;
        }

        .about-text p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #4C763B;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .feature-item h4 {
            color: #4C763B;
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .feature-item p {
            font-size: 13px;
            color: #4C763B;
            opacity: 0.8;
        }

        .about-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #FFD93D 0%, #FFEB99 100%);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            animation: slideInUp 0.8s ease 0.2s backwards;
        }

        .contact-info {
            color: #4C763B;
        }

        .contact-info h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #4C763B;
        }

        .contact-item {
            margin-bottom: 30px;
        }

        .contact-item h4 {
            font-weight: 700;
            margin-bottom: 10px;
            color: #4C763B;
            font-size: 16px;
        }

        .contact-item p {
            font-size: 14px;
            color: #4C763B;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background-color: #F5D2D2;
            border: 2px solid #4C763B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4C763B;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: #4C763B;
            color: #F5D2D2;
            transform: scale(1.15) rotate(15deg);
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        /* Footer */
        footer {
            background-color: #4C763B;
            color: #FFD93D;
            padding: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #FFD93D;
        }

        .footer-link {
            color: rgba(255, 217, 61, 0.8);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-link:hover {
            color: #FFD93D;
            transform: translateX(8px);
        }

        .footer-text {
            color: rgba(255, 217, 61, 0.8);
            font-size: 13px;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 2px solid #FFD93D;
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 217, 61, 0.8);
            font-size: 13px;
        }

        .footer-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .footer-icon {
            width: 40px;
            height: 40px;
            background-color: #FFD93D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4C763B;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(255, 217, 61, 0.3);
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #4C763B;
            color: #FFD93D;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            animation: slideInRight 0.4s ease;
            font-weight: 600;
        }

        .toast.success {
            background-color: #4C763B;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 20px 30px;
            }

            .logo {
                font-size: 22px;
            }

            .hero-heading {
                font-size: 48px;
                margin-bottom: 40px;
            }

            .clouds-container {
                height: 280px;
                margin-bottom: 30px;
            }

            .cloud-big {
                width: 220px;
                height: 140px;
            }

            .cloud-row-three {
                gap: 40px;
            }

            .cloud-small {
                width: 100px;
                height: 80px;
            }

            .cloud-medium {
                width: 150px;
                height: 100px;
            }

            .hero-bottom {
                left: 30px;
                bottom: 30px;
            }

            section {
                padding: 50px 30px;
            }

            .section-title {
                font-size: 36px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .nav-menu {
                right: 30px;
            }

            .popup-content {
                max-width: 90vw;
            }
        }
