
        :root {
            --green-water: #8FD9C2;
            --dark-green: #006644;
            --white: #FFFFFF;
            --black: #000000;
            --light-bg: #F8FAFC;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--black);
            background-color: var(--white);
        }
        /* Toast */
        .toast {
            position: fixed;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(200%);
            background-color: var(--dark-green);
            color: var(--white);
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transition: transform 0.3s ease;
            z-index: 3000;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            max-width: 90%;
            text-align: center;
        }
        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        /* Slider */
        .slider-section {
            padding: 2rem 16px;
            background: var(--light-bg);
            text-align: center;
        }
        .slider-title {
            font-size: 1.6rem;
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        .slider-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2.5px;
            background-color: var(--green-water);
        }
        .slider-container {
            max-width: 90%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slider-item {
            min-width: 100%;
            padding: 20px;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .slider-item img {
            width: 200px;
            height: 200px;
            object-fit: contain;
            margin-bottom: 16px;
        }
        .slider-item h3 {
            font-size: 1.3rem;
            color: var(--dark-green);
            margin-bottom: 8px;
        }
        .slider-item p.price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 16px;
        }
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            color: var(--dark-green);
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            z-index: 10;
        }
        .slider-nav.prev {
            left: 10px;
        }
        .slider-nav.next {
            right: 10px;
        }
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
        }
        .slider-dot.active {
            background: var(--dark-green);
        }

        /* Header */
        header {
            background-color: var(--white);
            padding: 12px 16px;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header a{
            text-decoration: none;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo {
            width: 50px;
            height: 50px;
            background-color: var(--green-water);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        .logo img {
            width: 80%;
            height: auto;
            object-fit: contain;
        }
        .logo-text {
            font-family: "IM Fell DW Pica", serif;
            font-size: 2.3rem;
            font-weight: 700;
            color: var(--black);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: none;
            list-style: none;
            gap: 16px;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 99;
        }
        nav ul.active {
            display: flex;
        }
        nav a {
            text-decoration: none;
            color: var(--dark-green);
            font-weight: 500;
            padding: 10px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: var(--green-water);
            color: var(--black);
        }
        .cart-icon {
            position: relative;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            background-color: var(--green-water);
            color: var(--dark-green);
            font-size: 1.1rem;
        }
        .cart-count {
            position: absolute;
            top: -6px;
            right: -6px;
            background-color: var(--dark-green);
            color: var(--white);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.65rem;
            font-weight: bold;
        }
        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        .mobile-menu-toggle div {
            width: 22px;
            height: 2.5px;
            background-color: var(--dark-green);
            margin: 3px 0;
            transition: 0.3s;
        }
        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--green-water) 0%, var(--white) 100%);
            padding: 3rem 16px;
            text-align: center;
        }
        .hero img{
            width: 10rem;
        }
        .hero h1 {
            font-size: 1.8rem;
            color: var(--dark-green);
            margin-bottom: 12px;
            font-weight: 700;
        }
        .hero p {
            font-size: 1rem;
            color: var(--black);
            max-width: 500px;
            margin: 0 auto 1.5rem;
        }
        .cta-button {
            background-color: var(--dark-green);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.95rem;
        }
        /* Products */
        .products-section {
            padding: 2.5rem 16px;
            background-color: var(--light-bg);
        }
        .section-title {
            text-align: center;
            font-size: 1.6rem;
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2.5px;
            background-color: var(--green-water);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }
        .product-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .product-image {
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            background-color: #f5f5f5;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .product-info {
            padding: 16px;
        }
        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-green);
            margin-bottom: 6px;
        }
        .product-price-card {
            font-size: 1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }
        .add-to-cart {
            background-color: var(--green-water);
            color: var(--dark-green);
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
        }
        /* Product Modal */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 1500;
            padding: 16px;
            overflow-y: auto;
        }
        .product-modal-content {
            background-color: var(--white);
            border-radius: 16px;
            padding: 20px;
            max-width: 600px;
            margin: 20px auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .main-image {
            width: 100%;
            height: 50vh;
            min-height: 250px;
            border-radius: 12px;
            overflow: hidden;
            background: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 16px;
        }
        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: white;
        }
        .gallery-thumbnails {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 8px 0;
            margin-bottom: 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--green-water) transparent;
        }
        .gallery-thumbnails::-webkit-scrollbar {
            height: 6px;
        }
        .gallery-thumbnails::-webkit-scrollbar-track {
            background: transparent;
        }
        .gallery-thumbnails::-webkit-scrollbar-thumb {
            background-color: var(--green-water);
            border-radius: 3px;
        }
        .gallery-thumbnail {
            flex: 0 0 auto;
            width: 70px;
            height: 70px;
            border: 2px solid transparent;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .gallery-thumbnail:hover {
            transform: scale(1.05);
        }
        .gallery-thumbnail.active {
            border-color: var(--dark-green);
        }
        .gallery-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .product-description {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 14px;
            text-align: justify;
        }
        .product-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-green);
            text-align: center;
            margin-bottom: 16px;
        }
        .quantity-selector {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }
        .quantity-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--green-water);
            color: var(--dark-green);
            border: none;
            font-weight: bold;
            cursor: pointer;
        }
        .quantity-input {
            width: 50px;
            text-align: center;
            padding: 6px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .add-to-cart-modal {
            width: 100%;
            background: var(--dark-green);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
        /* Cart Modal */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
            padding: 20px;
        }
        .cart-content {
            background: white;
            border-radius: 16px;
            padding: 20px;
            max-width: 500px;
            margin: 40px auto;
            max-height: 80vh;
            overflow-y: auto;
        }
        .shipping-options select {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin: 8px 0 16px;
        }
        .checkout-button {
            width: 100%;
            background: var(--dark-green);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
        }
        /* Footer */
        footer {
            background: var(--dark-green);
            color: white;
            padding: 20px 16px;
            text-align: center;
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 12px;
        }
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-link:hover {
            background: white;
            color: var(--dark-green);
            transform: translateY(-2px);
        }
        /* Responsive */
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            nav ul {
                display: flex !important;
                position: static;
                background: none;
                box-shadow: none;
                flex-direction: row;
                padding: 0;
                gap: 24px;
            }
            .mobile-menu-toggle {
                display: none;
            }
        }