        /* HERO */
		.hero {
			display: grid;
			grid-template-columns: 1.1fr 0.9fr;
			gap: 60px;
			justify-items: center;
			max-width: 1500px;
			margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
        }

        .hero h1 span {
            color: #586d34;
        }

        .hero p {
            font-size: 1.15rem;
            color: black;
            margin-bottom: 36px;
			font-weight: 300;
        }

        .cta {
            display: inline-block;
            padding: 14px 14px;
            background-color: #586d34;
            color: white !important;
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .cta:hover {
            opacity: 0.9;
        }

		.hero-slider {
    		position: relative;
    		width: 100%;
    		max-width: 480px;
    		overflow: hidden;
    		touch-action: pan-y;
    		cursor: grab;
		}

		.hero-slider:active {
    		cursor: grabbing;
		}

		.slide {
			position: relative;
    		min-width: 100%;
    		display: flex;
    		justify-content: center;
			padding-bottom: 20px;
		}

		.product-card {
    		display: flex;
    		flex-direction: column;
    		align-items: center;
    		gap: 15px; /* Space between image and button */
		}

/* Specific styling for the slider buttons */
		.slide-btn {
    		padding: 10px 24px;
    		background-color: #586d34;
    		color: white !important;
    		text-decoration: none;
    		font-size: 0.85rem;
    		letter-spacing: 0.05em;
    		text-transform: uppercase;
    		border-radius: 2px;
    		transition: opacity 0.3s;
			border-radius: 10px;
		}

		.slide-btn:hover {
    		opacity: 0.9;
		}

/* The Badge Style */
		.slide .badge-custom {
    		position: absolute;
    		top: 10px;
    		right: 15%; /* Moves it closer to the bottle neck */
    		width: 100px; /* Adjust size as needed */
    		height: auto;
    		z-index: 10;
    		pointer-events: none; /* Essential: prevents the badge from blocking the drag */
    		user-select: none;
    		-webkit-user-drag: none;
		}

/* Optional: Subtle shadow to make the badge pop against the image */
		.badge-custom {
    		filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
		}

		@media (max-width: 455px) {
			.slide .badge-custom{
				width: 80px;
			}
		}

		.slide img {
    		width: 100%;
    		max-width: 420px;
    		height: auto;
    		border-radius: 6px;
    		display: block;
		}

		.slider-track {
    		display: flex;
    		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    		will-change: transform;
		}

		@media (max-width: 1350px) and (min-width: 960px) {
			.hero{
    			grid-template-columns: 1fr;
			}
		}

		.slider-dots {
    		display: flex;
    		justify-content: center;
    		gap: 10px;
    		margin-top: 16px;
			height: 10px;
		}

		.slider-dots button {
    		width: 8px;
    		height: 8px;
    		border-radius: 50%;
    		border: none;
    		background: rgba(0, 0, 0, 0.25);
    		cursor: pointer;
    		padding: 0;
    		transition: background 0.25s ease, transform 0.25s ease;
		}

		.slider-dots button.active {
    		background: #586d34;
    		transform: scale(1.2);
		}

		.slider-dots button:focus {
    		outline: none;
		}

        /* TRUST */
        .trust {
            margin-top: 120px;
            text-align: center;
        }

        .trust h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
			font-weight: 300;
        }

        .trust p {
            max-width: 700px;
            margin: 0 auto;
            color: black;
			font-weight: 300;
			font-size: 1.2rem;
        }

        /* FEATURES */
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .feature {
            background: #fff;
            padding: 36px;
            border-radius: 4px;
        }

        .feature h3 {
            margin-bottom: 12px;
            font-size: 1.5rem;
            color: black;
			font-weight: 400;
        }

        .feature p {
            font-size: 1.1rem;
            color: black;
			font-weight: 300;
        }

		@media (max-width: 1770px) and (min-width: 1330px), (max-width: 959px) and (min-width: 901px) {
			.features{
				grid-template-columns: repeat(2, 1fr);
				justify-items: center;
			}
			
			.feature:nth-child(3){
				grid-column: 1 / -1;
				justify-self: center;
			}
		}

		@media (max-width: 1329px) and (min-width: 960px) {
			.features{
				grid-template-columns: 1fr;
			}
		}

		@media (max-width: 455px) {
			.feature{
				padding: 0;
			}
		}

        /* SEO CONTENT */
        .seo-content {
            margin: 0 auto;
            max-width: 1200px;
        }

        .seo-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
			font-weight: 300;
			text-align: center;
        }

        .seo-content p {
            margin-bottom: 20px;
            color: black;
			font-weight: 300;
			font-size: 1.3rem;
			text-align: center;
        }

		.recipes{
    		display: flex;
    		justify-content: space-between;
    		flex-wrap: wrap;
		}

		.recipe1, .recipe2, .recipe3{
			text-align: center;
		}

		.recipe1 a, .recipe2 a, .recipe3 a{
    		padding: 10px;
    		background-color: #586d34;
    		color: white !important;
    		border-radius: 10px;
    		position: relative;
    		top: 20px;
		}

		.recipe1 a:hover, .recipe2 a:hover, .recipe3 a:hover{
			opacity: 0.9;
		}

		@media (max-width: 1522px) and (min-width: 1182px), (max-width: 959px) and (min-width:752px) {
			.recipe3{
				display: none;
			}
		}

		@media (max-width: 1181px) and (min-width: 960px) {
			.recipes{
				justify-content: center;
			}
		}

        /* FINAL CTA */
        .final-cta {
            margin-top: 120px;
            text-align: center;
            padding: 80px 24px;
            color: #fff;
        }

        .final-cta h2 {
            font-size: 2.4rem;
            margin-bottom: 20px;
    		font-weight: 300;
        }

        .final-cta p {
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
    		color: black;
    		font-weight: 300;
    		font-size: 1.3rem;
        }

        .final-cta .cta {
            background-color: #586d34;
        }

        .final-cta .cta:hover {
            opacity: 0.9;
        }

        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.4rem;
            }
        }

	/*START - PRODUCTS*/
	.home-page-products-main-div{
		padding-bottom: 100px;
		    margin-top: 50px;
	}
	
	.home-page-products-title{
		text-align:center;
		margin-bottom: 70px;
	}
	
	.home-page-products-title h3{
		font-weight: 300;
    color: #5E7332;
    font-size: 2rem;
	}
	
	.home-page-products{
		    display: -webkit-box;
		    display: -ms-flexbox;
		    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	
	.product1, .product2, .product3{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
		width: 20%;
		justify-content: center;    
	}
	
	.product1, .product2{
		margin-right: 80px;
	}

	.product1-image img, .product2-image img, .product3-image img{
		width: 350px;	
	}
	
	.product1-title h4, .product2-title h4, .product3-title h4{
		font-weight: 300;
    	font-size: 1.5rem;
    	text-align: center;
	}
	
	.product-1-icon, .product-2-icon, .product-3-icon{
		position: relative;
    	width: 50px;
	}
	
	.product-1-icon img, .product-2-icon img, .product-3-icon img{
		position: absolute;
    	left: -90px;
	}
	
	.product1-price h5, .product2-price h5, .product3-price h5{
		font-size: 1.4rem;
    	margin-top: 10px;
	}
	
	.product1-view-more, .product2-view-more, .product3-view-more{
    	margin-top: 30px;
	}
	
	.product1-view-more a:hover, .product2-view-more a:hover, .product3-view-more a:hover{
		background-color:#638130;
	}
	
	.product1-view-more a, .product2-view-more a, .product3-view-more a{
		color:white !important;
		padding: 15px;
    	background-color: #586d34;
    	border-radius: 10px;
	}
	
	.product-1-30-percent-off-icon, .product-2-30-percent-off-icon, .product-3-30-percent-off-icon{
    	position: relative;
    	width: 70px;
	}

	.product-1-30-percent-off-icon img, .product-2-30-percent-off-icon img, .product-3-30-percent-off-icon img{
    	position: absolute;
    	right: -90px;
	}

	.product1-price, .product2-price, .product3-price{
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
	}

	.discounted-price{
		font-size: 1.3rem !important;
		font-weight: 400;
	}


	.product1-price .old-price, .product2-price .old-price, .product3-price .old-price{
    	font-size: 1.3rem !important;
	}
	
	@media (max-width:1500px) and (min-width:1300px){
		.product1, .product2, .product3{
			width:30%;
		}
	}
	
	@media (max-width:1299px) and (min-width:570px){
		.home-page-products{
			display: -ms-grid;
			display: grid;
			-ms-grid-columns: (1fr)[2];
			grid-template-columns: repeat(2, 1fr);
    justify-items: center;
		}
		
		.product1, .product2{
			margin:0;
		}
		
		.product1, .product2, .product3{
			width:70%;
		}
		
		.product3{
			/*position:relative;
			left:50%;
			padding-top:100px;*/
			display:none;
		}
	}
	
	@media (max-width:569px){
		.home-page-products{
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			    -webkit-box-align: center;
			        -ms-flex-align: center;
			            align-items: center;
		}
		
		.product1, .product2, .product3{
			width:60%;
		}
		
		.product1, .product2{
			margin-right: 0px;
    		margin-bottom: 100px;
		}
	}
	/*END - PRODUCTS*/