 

     :root {
            --primary-green: #1d330e;
            --light-green: #267728;
            --accent-green: #4b8508;
            --warm-beige: #f7f5f2;
            --soft-brown: #8B7355;
            --cream: #FFF8E7;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f7f5f2 0%, #fff8e7 100%);
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .floating-header {
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .floating-header.scrolled {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .product-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border-radius: 1.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--light-green), var(--accent-green));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .hero-gradient {
            background: linear-gradient(135deg, #2d5016 0%, #4CAF50 35%, #8BC34A 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        .bg-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            background: linear-gradient(45deg, rgba(139, 195, 74, 0.1), rgba(76, 175, 80, 0.1));
            border-radius: 50%;
            animation: drift 20s infinite linear;
        }

        .shape:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 55%;
            right: 5%;
            animation-delay: 7s;
        }

        .shape:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 15%;
            left: 75%;
            animation-delay: 14s;
        }

        @keyframes drift {
            0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
            25% { transform: translateX(15px) translateY(-15px) rotate(90deg); }
            50% { transform: translateX(-15px) translateY(15px) rotate(180deg); }
            75% { transform: translateX(15px) translateY(15px) rotate(270deg); }
        }

        .premium-btn {
            background: linear-gradient(135deg, var(--light-green), var(--accent-green));
            padding: 10px 24px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
            position: relative;
            overflow: hidden;
        }

        .premium-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .premium-btn:hover::before {
            left: 100%;
        }

        .premium-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .price-tag {
            background: linear-gradient(135deg, #ff6b35, #ff8e53);
            color: white;
            padding: 6px 12px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--light-green), var(--accent-green));
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-green);
        }

        .uzhamagals-font {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }

        .pulse-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            border: 2px solid rgba(76, 175, 80, 0.3);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0;
            }
        }

        .mobile-menu {
            transition: transform 0.3s ease-in-out;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .search-container {
            position: relative;
            width: 100%;
            max-width: 300px;
        }

        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 100;
            max-height: 200px;
            overflow-y: auto;
            display: none;
        }

        .search-suggestions.show {
            display: block;
        }

        .search-suggestion-item {
            padding: 8px 12px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-suggestion-item:hover {
            background: #f1f1f1;
        }

        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .category-tab {
            padding: 8px 16px;
            border-radius: 25px;
            background: #f1f1f1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-tab.active {
            background: var(--light-green);
            color: white;
        }

        .category-tab:hover {
            background: var(--accent-green);
            color: white;
        }

        .infinite-scroll-loading {
            text-align: center;
            padding: 2rem;
            display: none;
        }

        .quality-svg {
            display: none;
            width: 24px;
            height: 24px;
            margin-left: 8px;
        }

        .product-card:hover .quality-svg {
            display: inline-block;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 12px;
            }

            .floating-header {
                padding: 12px 0;
            }

            .product-card {
                border-radius: 1rem;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
            }

            .product-card:hover {
                transform: translateY(-4px);
            }

            .hero-gradient {
                min-height: 600px;
            }

            .premium-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }

            .price-tag {
                padding: 5px 10px;
                font-size: 0.9rem;
            }

            .pulse-ring {
                width: 150px;
                height: 150px;
            }

            .shape:nth-child(1), .shape:nth-child(2), .shape:nth-child(3) {
                width: 40px;
                height: 40px;
            }

            .search-container {
                max-width: 100%;
            }
        }

        @media (max-width: 640px) {
            .uzhamagals-font.text-5xl {
                font-size: 2.5rem;
            }

            .uzhamagals-font.text-7xl {
                font-size: 3rem;
            }

            .text-4xl {
                font-size: 2rem;
            }

            .text-5xl {
                font-size: 2.5rem;
            }

            .text-xl {
                font-size: 1rem;
            }

            .text-lg {
                font-size: 0.95rem;
            }

            .text-2xl.font-bold {
                font-size: 1.25rem;
            }

            .text-base {
                font-size: 0.85rem;
            }

            .product-card img {
                max-height: 150px;
            }

            .product-card .h-56 {
                height: 200px;
            }

            .hero-gradient .max-h-96 {
                max-height: 250px;
            }

            .category-tabs {
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .category-tab {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }
    

        /* Infinite Scroll  */

        .scroll-container {
	height: 50svh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}

.scroll-container .infinite-scroll-wrapper {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.infinite-scroll-wrapper .infinite-scroll-content {
	display: flex;
	flex-direction: row;
	white-space: nowrap;
	animation: scroll 100s linear infinite;
	width: 100%;
	gap: 16px;
}

.infinite-scroll-wrapper .infinite-scroll-items {
	display: flex;
	flex-direction: row;
	flex-shrink: 0;
	gap: 16px;
}

.infinite-scroll-items .item-wrap {
	position: relative;
	min-width: 238px;
	height: 315px;
	flex-shrink: 0;
	overflow: hidden;
}

.item-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.item-wrap .text {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 10;
	color: #fff;
	font-weight: 500;
}

.item-wrap:hover img {
	transform: scale(1.05);
}

@media (min-width: 1024px) {
	.infinite-scroll-wrapper:hover .infinite-scroll-content {
		animation-play-state: paused;
	}
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
