/*!
Theme Name: clave-custom
Theme URI: http://clavebodycare.com/
Author: Jason A Bloomer
Author URI: http://jasonbloomer.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: clave-custom
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

clave-custom is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* --- RESET & VARIABLES --- */
        :root {
            --primary-green: #9AB596;
            --header-green: #709663;
            --text-dark: #333333;
            --text-gray: #666666;
            --bg-cream: #f4f4f4;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Lato', sans-serif;
            --font-script: 'Dancing Script', cursive;
            --container-width: 80%;
            --container-max-width: 80vw;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: var(--font-sans);
            color: var(--text-dark);
            background-color: #fff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a { text-decoration: none; transition: 0.3s; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITIES --- */
        .container {
            max-width: var(--container-width);
            padding: 0 15px;
			margin: 0 auto;
			max-width: var(--container-max-width);
        }

        /* Typography */
        h1, h2, h3, h4 { font-family: var(--font-sans); color: #222; }
        
        .script-text {
            font-family: var(--font-script);
            font-size: 2rem;
            color: #666;
            margin-bottom: 5px;
            font-weight: 500;
        }
		
        .script-text p {
            font-family: var(--font-script);
            font-size: 2rem;
            color: #666;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            background-color: #7b9e76;
            color: white;
            padding: 14px 35px;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            font-weight: 700;
            border: none;
            cursor: pointer;
        }
        .btn:hover { opacity: 0.9; }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: var(--header-green);
            color: white;
            padding: 12px 0;
            font-size: 1rem;
            font-weight: 700;
            font-family: var(--font-sans);
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-right { font-family: var(--font-sans); display: flex; align-items: center; gap: 20px; }
		
        .social-icons a {
			margin-left: 12px;
			font-size: 1.5rem;
			background: #FFF;
			color: #000;
			border-radius: 100px;
			padding: 5px 10px;
			box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
		}
        .social-icons a:hover {
			color: var(--primary-green);
		}

        /* --- HEADER --- */
        header {
            background-color: var(--primary-green);
            position: relative;
            z-index: 100;
            height: 100px;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
            font-family: var(--font-sans);
            font-weight: 700;
            text-transform: uppercase;
            color: white;
            font-size: 1.5rem;
            letter-spacing: 1px;
			text-shadow: 0 0 10px #030;
        }
		
		.nav-list {
			display: flex;
			flex-direction: row;
			gap: 30px;
			color: #FFF;
		}
		
		.nav-list li a:hover {
			color: #FC0;
		}
        
        .nav-group-left { padding-right: 80px; }
        .nav-group-right { padding-left: 80px; }

        .nav-links i { font-size: 1.5rem; margin-left: 5px; opacity: 0.8; text-shadow: 0 0 10px #030; }
        .nav-icons a { margin-left: 20px; font-size: 1.5rem; text-shadow: 0 0 10px #030; }
        
        .logo-container {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 80px;
            z-index: 101;
        }
        
        .logo-container img {
			margin-top: 10px;
            width: 100%;
			height: 100%;
        }
		
		.has-submenu {
			position: relative;
		}

		.submenu {
			display: none; /* Hidden by default */
			position: absolute;
			top: 100%;
			left: 0;
			width: max-content;
			z-index: 10000;
			list-style: none;
			padding: 10px 0;
			background: rgba(112,150,100,0.9);
			box-shadow: 0 0 20px #000;
			border-radius: 15px;
			color: #FFF;
		}

		.submenu li a {
			padding: 8px 20px;
			font-size: 0.9rem;
		}

		.submenu li a:hover {
			text-shadow: 0 0 10px #000;
			color: #FC0;
		}

		.has-submenu:hover .submenu {
			display: block;
		}

		/* --- Mobile Toggle (Hidden on Landscape/Wide) --- */
		.menu-toggle {
			display: none;
			flex-direction: column;
			gap: 5px;
			background: none;
			border: none;
			cursor: pointer;
		}
		
		.menu-toggle:hover .bar {
			background: #FC0;
		}

		.menu-toggle .bar {
			width: 25px;
			height: 3px;
			background: #FFF;
			box-shadow: 0 0 10px rgba(0,0,0,0.75);
		}

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            background-color: var(--bg-cream);
            padding: 120px 0 100px;
            overflow: hidden;
			margin-bottom: 50px;
        }

        .hero-bg-graphic {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-image: var(--bg-image); 
            background-size: cover;
			background-repeat: no-repeat;
            background-position: center top;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            width: 45%;
            padding-left: 20px;
        }

        .hero-text h1 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #111;
        }

        .hero-text p {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 35px;
            line-height: 1.7;
        }

        .hero-image {
            width: 50%;
            display: flex;
            justify-content: center;
        }

        /* --- CATEGORIES SECTION --- */
        .categories-section {
            background-color: var(--primary-green);
			background-size: 100% 100%;
			background-repeat: no-repeat;
			background-position: center;
			padding: 40px 0;
			margin: 0px;
			margin-top: -2px;
			position: relative;
			z-index: 2;
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .cat-card {
            height: 320px;
            position: relative;
            background-color: #ddd;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .cat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .cat-card:hover img { transform: scale(1.1); }

        .cat-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.25);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .cat-overlay h3 {
            color: white;
            text-transform: uppercase;
            font-size: 1.8rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .btn-transparent {
            border: 1px solid white;
            background: transparent;
            color: white;
            padding: 10px 25px;
            text-transform: uppercase;
            font-size: 0.8rem;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .btn-transparent:hover { background: white; color: #333; }

        .ribbon {
            position: absolute;
            top: 25px;
            left: -30px;
            background-color: rgba(255,255,255,0.85);
            color: #5f7d58;
            padding: 5px 35px;
            transform: rotate(-45deg);
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            z-index: 10;
            letter-spacing: 1px;
        }

        /* --- ABOUT US SECTION --- */
        .about-section {
            background-color: #fff;
            padding: 100px 0 80px;
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-image {
            flex: 1;
            /* Placeholder for the woman cutout */
            text-align: center;
        }

        .about-content {
            flex: 1;
        }
        
        .about-content p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* --- WHY CHOOSE US --- */
        .why-section {
            padding: 60px 0 100px;
			background-size: contain;
			background-position: center center;
			background-repeat: no-repeat;
			position: relative;
			overflow: hidden;
        }
		
		.why-section::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			
			background-image: var(--bg-image);
			background-size: contain;
			background-position: center center;
			background-repeat: no-repeat;
			
			opacity: 0.5; 
			
			z-index: -1;
		}

        .why-container {
            display: flex;
            gap: 80px;
			opacity: 1;
        }

        .why-content {
            flex: 1;
        }

        .why-image {
            flex: 1;
            position: relative;
        }

        .why-image img {
            border: 4px solid var(--header-green);
			margin: auto;
			margin-top: -50px;
			max-height: 600px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .feature h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #222;
        }

        .check-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 20px;
            height: 20px;
            border: 1px solid #7A9A74;
            border-radius: 50%;
            color: #7A9A74;
            font-size: 0.6rem;
        }

        .feature p {
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #fff;
            padding: 40px 0 30px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
			box-shadow: 0 0 60px rgba(0,0,0,0.1);
			line-height: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 0px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            font-family: var(--font-sans);
            font-weight: 700;
        }

        .footer-list li { margin-bottom: 12px; }
        .footer-list a { color: #555; }
        .footer-list a:hover { color: var(--primary-green); }

        .contact-list li {
            display: flex;
            gap: 15px;
            color: #555;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        .contact-list i { color: #888; margin-top: 4px; }

        .copyright {
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #7A9A74;
            color: white;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            cursor: pointer;
            opacity: 0;
            transition: 0.3s;
            z-index: 999;
        }
        .scroll-top.show { opacity: 1; }

        /* MOBILE */
        @media(max-width: 992px) {
			.free-shipping-notif { display: none; }
            .hero .container, .about-container, .why-container { flex-direction: column; text-align: center; }
            .hero-text, .hero-image, .about-content, .about-image, .why-content, .why-image { width: 100%; padding: 0; }
            .cat-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
			
            .nav-group-left, .nav-group-right { display: none; } /* Simplified mobile menu logic needed */
			
            .logo-container { position: relative; left: auto; transform: none; top: auto; margin: 0 auto; width: 100px; }
            header { height: auto; padding: 10px 0; }
            .header-inner { justify-content: center; }
			
			.menu-toggle {
				display: flex;
			}

			.nav-group {
				display: none; /* Hide groups by default on mobile */
				position: absolute;
				top: 100%;
				left: 0;
				width: 100%;
				background: #fff;
				flex-direction: column;
				z-index: 100;
			}

			.nav-group.is-active {
				display: flex;
			}

			.nav-list {
				flex-direction: column;
				padding: 20px;
				gap: 15px;
			}

			.submenu {
				position: static;
				box-shadow: none;
				padding-left: 20px;
				display: none; /* Toggle via JS on mobile */
			}
			
			.has-submenu.open .submenu {
				display: block;
			}
        }
		
		.elementor-shape {
			clear:both;
		}
		
		.elementor-shape-top {
			background: var(--primary-green);
			fill: #FFF;
		}
		
		.elementor-shape-bottom {
			fill: #FFF;
			background: var(--primary-green);
			transform: rotate(180deg);
			
		}
		
		.elementor-shape-fill {
		}
		
		
		
	.slider-container {
		display: flex;
		transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		width: 100%;
	}

	.hero-card {
		flex: 0 0 100%;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		opacity: 0;
		visibility: hidden;
		z-index: 1;
		transition: opacity 0.8s ease-in-out, visibility 0.8s;
	}
	
	.hero-card.active {
		opacity: 1;
		visibility: visible;
		z-index: 2;
	}

	.hero-card .hero-text {
		width: 45%;
	}
	.hero-card .hero-image {
		width: 50%;
	}
	.hero-card .hero-image img {
		max-width: 100%;
		height: auto;
		display: block;
	}

	/* --- Navigation Dots Styling (Elegant) --- */
	.slider-dots {
		position: absolute;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 10px;
		z-index: 10;
	}

	.dot {
		height: 10px;
		width: 10px;
		background-color: #bbb;
		border-radius: 50%;
		display: inline-block;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.dot.active {
		background-color: #333;
		transform: scale(1.2);
	}
	
	div.blog-header {
		font-size: 48px;
		color: rgb(255, 204, 0);
		font-weight: bold;
		text-align: center;
		padding: 20px;
		border-top: 2px solid rgb(255, 204, 0);
		border-bottom: 2px solid rgb(255, 204, 0);
		width: max-content;
		margin: auto;
		margin-bottom: 50px;
	}
	
	main.blog-articles, main.single-post, main.search-results, div.woocommerce-MyAccount-content {
		padding: 50px 10%;
		background: #EEE;
	}
	
	article.blog-article, article.blog-post-single {
		background: #FFF;
		box-shadow: 0 0 10px rgba(0,0,0,0.2);
		margin-bottom: 50px;
	}
	
	article.blog-article a img {
		width: 100%;
		height: 100%;
	}
	
	.blog-entry {
		padding: 5%;
	}
	
	.blog-entry h2.entry-title {
		font-size: 32px;
		margin-bottom: 20px;
	}
	
	.blog-entry div.entry-content {
		font-size: 16px;
	}
	
	a.moretag {
		text-decoration: none;
		color: var(--header-green);
		font-size: 20px;
		margin-top: 20px;
		font-weight: bold;
	}
	
	a.moretag:hover {
		color: var(--primary-green);
	}
	
	div.numeric-pagination {
		text-align: center;
	}
	
	div.numeric-pagination a.page-numbers {
		background: #FFF;
		color: #999;
		padding: 10px;
		border-radius: 8px;
		box-shadow: 0 0 5px rgba(0,0,0,0.25);
		text-shadow: 0 0 3px rgba(0,0,0,0.25);
	}
	
	div.numeric-pagination span.page-numbers.current {
		background: var(--header-green);
		color: #FFF;
		padding: 10px;
		border-radius: 8px;
		box-shadow: 0 0 5px rgba(0,0,0,0.25);
		text-shadow: 0 0 3px rgba(0,0,0,0.25);
	}
	
	div.numeric-pagination span.page-numbers.dots {
		color: #000;
		padding: 10px;
		text-shadow: 0 0 3px rgba(0,0,0,0.25);
	}
	
	div.numeric-pagination a.page-numbers:hover {
		color: #000;
	}
	
	article.blog-post-single img {
		width: 100%;
		height: 100%;
	}
	
	article.blog-post-single div.entry-content {
		padding:5%
	}
	
	article.blog-post-single div.entry-content h2 {
		margin: 40px 0 0 0;
		font-size: 38px;
		font-weight: normal;
	}
	
	div.contact-header {
		font-size: 48px;
		color: var(--header-green);
		font-weight: bold;
		text-align: center;
	}
	
	div.contact-flex-box {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	div.contact-flex-box-single {
		width: 50%;
		min-width: 500px;
		margin: 0px auto;
	}
	
	div.contact-map-marker {
		color: #FFF;
		background: var(--header-green);
		border-radius: 40px;
		padding: 20px;
		font-size: 28px;
		height: min-content;
	}
	
	div.contact-phone-marker {
		color: #FFF;
		background: var(--header-green);
		border-radius: 40px;
		padding: 20px;
		font-size: 28px;
		height: min-content;
	}
	
	div.contact-email-marker {
		color: #FFF;
		background: var(--header-green);
		border-radius: 40px;
		padding: 20px;
		font-size: 28px;
		height: min-content;
	}
	
	div.contact-bullet-list {
		display: flex;
		flex-direction: column;
	}
	
	div.contact-bullet-list-single {
		padding: 10px;
		display: flex;
		flex-direction: row;
	}
	
	div.contact-bullet-list-single-title {
		padding: 10px;
		font-size: 24px;
		font-weight: bold;
		color: #000;
	}
	
	main.search-results {
		
	}
	
	div.search-header {
		margin: 10px auto;
		color: #000;
		font-size: 24px;
	}
	
	div.terms-section {
		margin-bottom: 40px;
	}
	
	span.terms-inline-title {
		font-size: 24px;
		color: var(--primary-green);
	}
	
	
	
	/* --- ABOUT PAGE --- */
	.about-page-banner {
		padding: 60px 0;
		position: relative;
		overflow: hidden;
		background-image: var(--bg-image);
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}
	
	.about-page-main-header {
		font-size: 48px;
		font-family: var(--font-script);
	}
	
	.about-page-banner-container {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}
	
	.about-page-banner-content {
		text-align: center;
	}
	
	.about-page-banner-image {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.about-page-section-green-header {
		font-size: 32px;
		font-family: var(--font-script);
		color: var(--header-green);
		font-weight: bold;
	}
	
	.image-border-rounded-offset {
		height: 400px;
		width: 500px;
		object-fit: cover;
		object-position: center center;
		border-radius: 100px 20px 100px 20px;
	}
	
	.image-side-lower-offset {
		margin-bottom: -250px;
	}
	
	
	
	
	
	
	
	/* Search Widget Popup */
	.search-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(125, 150, 125, 0.75);
		backdrop-filter: blur(10px);
		z-index: 9999;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease-in-out;
	}

	.search-overlay.is-active {
		opacity: 1;
		visibility: visible;
	}

	.search-content {
		width: 90%;
		max-width: 600px;
		position: relative;
		transform: translateY(20px);
		transition: transform 0.4s ease;
		background: #EEE;
		padding: 20px;
		box-shadow: 0 0 10px #000;
	}

	.search-overlay.is-active .search-content {
		transform: translateY(0);
	}

	.search-input-group {
		display: flex;
		border-bottom: 2px solid #111;
		padding: 10px 0;
	}

	#search-input {
		flex-grow: 1;
		border: none;
		background: transparent;
		font-size: 1.5rem;
		outline: none;
		padding: 5px;
		font-family: inherit;
		color: #111;
	}

	#search-button {
		background: #111;
		color: #EEE;
		border: none;
		padding: 0 20px;
		cursor: pointer;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1px;
		transition: background 0.2s;
	}

	#search-button:hover {
		background: #AAA;
		color: var(--header-green);
	}

	.search-close-btn {
		position: absolute;
		top: -60px;
		right: 0;
		background: none;
		border: none;
		font-size: 2rem;
		cursor: pointer;
		color: #111;
	}
	
	
	.cart-popup-overlay {
		display: none; 
		position: fixed;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.6);
		backdrop-filter: blur(4px);
		align-items: center;
		justify-content: center;
	}
	
	
	
	

	/* Cart Widget */
	.cart-popup-container {
		background: #fff;
		padding: 30px;
		width: 90%;
		max-width: 450px;
		border-radius: 12px;
		position: relative;
		box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
		animation: fadeIn 0.3s ease-out;
	}

	.cart-popup-close {
		position: absolute;
		top: 15px;
		right: 20px;
		font-size: 28px;
		cursor: pointer;
		color: #999;
	}

	.cart-popup-close:hover { color: #000; }

	.cart-popup-container .widgettitle {
		font-size: 1.5rem;
		margin-bottom: 20px;
		border-bottom: 1px solid #eee;
		padding-bottom: 10px;
	}

	.cart-popup-container ul.product_list_widget {
		list-style: none;
		padding: 0;
	}

	.cart-popup-container .mini_cart_item img {
		width: 60px;
		float: left;
		margin-right: 15px;
		border-radius: 4px;
	}

	.cart-popup-container .total {
		padding: 20px 0;
		border-top: 1px solid #eee;
		margin-top: 20px;
	}

	.cart-popup-overlay.is-visible {
		display: flex;
	}

	@keyframes fadeIn {
		from { opacity: 0; transform: translateY(-10px); }
		to { opacity: 1; transform: translateY(0); }
	}
	
	
	/* ##### WooCommerce Checkout Page Styling ##### */
	
	table.woocommerce-checkout-review-order-table {
		border: 2px dashed var(--header-green) !important;
		background: #CDC !important;
	}
	
	div.woocommerce-checkout-payment {
		background: #CDC !important;
		color: #000 !important;
		border: 2px dashed var(--header-green) !important;
	}
	
	div.woocommerce-checkout-payment label {
		display: flex;
		gap: 20px;
		align-items: center;
		justify-content: center;
	}
	
	div.woocommerce-checkout-payment div.payment_method_paypal {
		background: #BCB !important;
		color: #000 !important;
	}
	
	div.woocommerce-checkout-payment div.place-order button.button {
		background: var(--header-green);
		color: #FFF;
		text-shadow: 0 0 10px rgba(0,0,0,0.35);
	}
	
	div.woocommerce-checkout-payment div.place-order button.button:hover {
		background: var(--primary-green);
		color: #FC0;
	}
	
	
	
	/* ##### WooCommerce Product Page Styling ##### */
	
	article.page {
		background: #EEE;
		padding: 50px 10%;
	}
	
	.woocommerce-result-count {
		padding: 5px 10px;
		border: 1px solid #CCC;
		font-size: 12px;
		border-radius: 5px;
	}
	
	.woocommerce-ordering {
		padding: 10px;
	}
	
	ul.products {
		
	}
	
	li.product {
		box-shadow: 0 0 5px rgba(0,0,0,0.15);
		border-radius: 10px;
		background: #FFF;
	}
	
	img.attachment-woocommerce_thumbnail {
		margin: 0 !important;
		border-radius: 10px;
	}
	
	ol.flex-control-thumbs {
		overflow-y: none !important;
		overflow-x: scroll !important;
		display: flex !important;
		flex-direction: row;
	}
	
	ol.flex-control-thumbs li {
		box-shadow: 0 0 10px rgba(0,0,0,0.5);
		margin: 20px !important;
		width: 100% !important;
	}
	
	ol.flex-control-thumbs li img {
		min-width: 100px !important;
		min-height: 100px !important;
	}
	
	h2.woocommerce-loop-product__title {
		font-size: 18px !important;
		color: #000;
		font-weight: bold;
		margin: 15px 15px 0px !important;
		padding: 0 !important;
		font-family: var(--font-sans);
		line-height: 1em;
	}
	
	ul.products li.product .price {
		font-size: 18px !important;
		color: var(--header-green) !important;
		margin: 0px 15px 15px !important;
		padding: 0;
		font-family: var(--font-sans);
	}
	
	.woocommerce ul.products li.product .button {
		margin: 0px !important;
		background: var(--primary-green);
		color: #FFF;
		text-shadow: 0 0 3px var(--header-green);
		box-shadow: 0 3px 3px var(--header-green);
		position: absolute;
		right: 0px;
		top: 0px;
		opacity: 0;
		transition: opacity 0.2s ease-out 0.2s;
	}
	
	.woocommerce ul.products li.product .button.add_to_cart_button::before {
		font-family: 'Font Awesome 5 Free';
		content: "\f07a";
		font-weight: bold;
		color: #FFF;
		margin-right: 8px;
	}
	
	.woocommerce ul.products li.product:hover .button {
		opacity: 1;
	}
	
	section.related ul.products {
		margin-bottom: 0px;
	}
	
	section.related ul.products li.product {
		margin-bottom: 20px;
	}
	
	div.single-product {
		margin: 50px 15%;
		background: #FFF;
		box-shadow: 0 0 5px rgba(0,0,0,0.2);
		padding: 40px;
	}
	
	.wp-singular.product-template-default.single.single-product {
		background: #EEEEEE;
	}
	
	div.single-product div.woocommerce-tabs {
		border: 1px solid #CCC;
		box-shadow: 0 0 5px rgba(0,0,0,0.2);
		margin-bottom: 60px;
	}
	
	div.woocommerce-Tabs-panel.woocommerce-Tabs-panel--description {
		padding: 10px 40px !important;
	}
	
	.woocommerce div.product .woocommerce-tabs ul.tabs {
		padding: 0;
	}
	
	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		margin: auto !important;
		width: 100% !important;
		text-align: center;
		border: none !important;
		border-top: 3px solid #296 !important;
		border-bottom: 1px solid #AAA !important;
	}
	
	div.woocommerce-Tabs-panel--description h3 {
		font-size: 32px;
		font-weight: bold;
		margin-top: 40px;
	}
	
	div.summary span.woocommerce-Price-amount bdi {
		font-weight: bold;
		font-size: 28px;
		color: var(--header-green) !important;
	}
	
	form.cart div.quantity {
	}
	
	form.cart button.single_add_to_cart_button {
		margin-top: 10px;
		clear: both;
		color: #ffffff;
		border-color: var(--header-green) !important;
		background-color: var(--header-green) !important;
		margin-bottom: 0.25em;
		text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
		box-shadow: 0 0.25em 0 0 rgb(57,81,48),0 4px 9px rgba(0,0,0,0.75);
	}
	
	form.cart button.single_add_to_cart_button:hover {
		background-color: rgb(77,108,66) !important;
	}
	
	/* ##### WooCommerce Cart Rules ##### */
	
	div.cart-contents {
	}
	
	article.woocommerce-cart div.woocommerce {
		background-image: url(../../uploads/2024/08/banner1-plain.png);
		background-size: cover;
		padding: 50px 10%;
	}
	
	div.woocommerce-cart-free-shipping-box {
		background: var(--primary-green);
		padding: 40px;
		margin: 20px auto;
		width: max-content;
		display: flex;
		flex-direction: row;
		border-radius: 80px;
	}
	
	div.woocommerce-cart-free-shipping-box svg {
		width: 40px;
		height: 40px;
		fill: #FFF;
	}
	
	div.woocommerce-cart-free-shipping-box h3 {
		font-size: 24px;
		font-weight: bold;
		color: #FFF;
		margin-left: 25px;
	}
	
	.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents {
		background: #CDC;
		border: 2px dashed var(--header-green);
	}
	
	div.cart_totals {
		background: #CDC;
		border: 2px dashed var(--header-green);
		padding: 20px;
		float: none !important;
		width: 100% !important;
	}
	
	div.wc-proceed-to-checkout {
		margin:0px;
		padding:0px 20px !important;
	}
	
	a.checkout-button.button {
		background: var(--header-green) !important;
		color: #FFF;
		text-shadow: 0 0 5px #000;
		margin:0px;
	}
	
	table.shop_table button.button {
		background: var(--header-green) !important;
		color: #FFF;
		text-shadow: 0 0 5px #000;
		margin:0px;
	}
	
	table.cart-coupon-table div.coupon {
		width: 100%;
	}
	
	table.cart-coupon-table div.coupon input.input-text {
		width: 50% !important;
		background: #FFF;
		border: 2px dashed var(--header-green) !important;
	}
	
	section.categories-section div.container div.woocommerce {
		background: transparent !important;
		padding: 0px;
	}
	
	div.cart-best-sellers-container {
		text-align: center;
	}
	
	div.cart-best-sellers-container h2 {
		margin-bottom: 50px;
	}
	
	div.cart-best-sellers-container div.woocommerce ul.products {
		margin-bottom: 0px;
		text-align:left;
	}
	
	
	
	/* ##### WooCommerce My-Account Page Styling ##### */
	
	nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
		border: 2px solid var(--header-green);
		margin-top: 5px;
		background: var(--primary-green);
		color: #FFF;
		text-shadow: 0 0 8px #000;
		text-align: center;
		font-weight: bold;
		border-radius: 5px;
	}
	
	nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link:hover {
		color: #FC0;
	}
	
	div.woocommerce-MyAccount-content {
		padding: 20px;
	}
	
	div.woocommerce-MyAccount-content div.woocommerce-Addresses div.woocommerce-Address header.woocommerce-Address-title {
		height: min-content;
		background-color: transparent;
	}
	
	div.woocommerce-MyAccount-content div.woocommerce-Addresses div.woocommerce-Address header.woocommerce-Address-title a {
		color: var(--header-green);
		font-weight: bold;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/* 1. Visibility Logic */
button .menu-toggle span.bar { color: #FFF; }
.menu-toggle, .mobile-overlay { display: none; }

/* Trigger on Mobile OR Portrait Orientation */
@media (max-width: 991px), (orientation: portrait) {
    .nav-links { display: none !important; } /* Hide original navs */
    .menu-toggle { display: flex; flex-direction: column; justify-content: center; }
    
    body.nav-open { overflow: hidden; } /* Prevent scrolling when menu is open */
}

/* 2. Fullscreen Overlay Styling */
.mobile-overlay {
    position: fixed;
    top: 190px;
    left: 0;
    width: 100%;
    height: calc(100% - 190px);
    background: var(--primary-green);
	color: #FFF;
    z-index: 9999;
    padding: 80px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* 3. Mobile Menu List Styling */
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list li { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.mobile-nav-list a { 
    font-size: 1.5rem; 
    text-decoration: none; 
    color: #FFF;
	text-shadow: 0 0 10px rgba(0,0,0,0.75);
    font-weight: bold; 
    display: block;
}

.mobile-search-input { 
    font-size: 24px;
	width: 50%;
}

.mobile-search-button { 
    font-size: 24px;
	color: #FFF;
	background: var(--header-green);
	border: 2px solid #FFF;
	padding: 10px;
	margin-left: 25px;
	border-radius: 5px;
}

.mobile-search-button:hover { 
	color: #FC0;
	border: 2px solid #FC0;
}

.mobile-nav-list a:hover { 
    color: #FC0;
}

/* Close Button in Overlay */
.close-menu {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 2rem;
    cursor: pointer;
}





/* ##### Custom Animations ##### */
.reveal {
  opacity: 0;
  transition: all 0.8s ease-out;
  visibility: hidden;
}

/* 1. Left Column: Slide in from left */
.reveal-left {
  transform: translateX(-50px);
}

/* 2. Right Column: Slide in from right */
.reveal-right {
  transform: translateX(50px);
}

/* 3. Center/General: Simple Fade in */
.reveal-fade {
  transform: translateY(20px); /* Slight lift for a polished feel */
}

/* The Trigger Class: This is what JS adds on scroll */
.reveal.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
}
	