/* ============================================
   By Nature - Natural Hair Care Website
   Elegant Natural Design with Bilingual Support
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary-green: #2d5a27;
    --dark-green: #1e3d1a;
    --light-green: #4a8c3f;
    --mint-green: #e8f5e9;
    --cream: #faf8f5;
    --warm-cream: #f5f0e8;
    --gold: #c9a962;
    --dark: #1a1a1a;
    --text-gray: #666;
    --light-gray: #e8e8e8;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, #2d5a27 0%, #4a8c3f 100%);
    --gradient-cream: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(45, 90, 39, 0.95) 0%, rgba(74, 140, 63, 0.9) 100%);
    
    /* Typography */
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #f0f7ef 0%, #e4f0e2 30%, #d8e8d5 60%, #e8f2e6 100%);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Forest Background Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,80 Q25,60 30,80 Q35,60 40,80' stroke='%232d5a2715' fill='none' stroke-width='0.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cellipse cx='25' cy='25' rx='20' ry='10' fill='%234a8c3f08'/%3E%3C/svg%3E");
    background-size: 300px 300px, 200px 200px;
    background-position: 0 0, 100px 50px;
    opacity: 0.6;
}

/* Floating Leaves Animation */
.floating-leaf {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    animation: floatLeaf 20s ease-in-out infinite;
}

.floating-leaf:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-leaf:nth-child(2) {
    top: 30%;
    right: 8%;
    animation-delay: -5s;
}

.floating-leaf:nth-child(3) {
    top: 60%;
    left: 3%;
    animation-delay: -10s;
}

.floating-leaf:nth-child(4) {
    top: 80%;
    right: 5%;
    animation-delay: -15s;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

/* RTL Support */
body.rtl {
    direction: rtl;
    font-family: var(--font-ar);
}

body.rtl .hero-banner-title,
body.rtl .section-title-main,
body.rtl h1, body.rtl h2, body.rtl h3 {
    font-family: var(--font-ar);
}

/* Container */
.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    transition: var(--transition);
}

.navbar.scrolled .lang-switch {
    background: var(--mint-green);
    color: var(--primary-green);
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .lang-switch:hover {
    background: var(--primary-green);
    color: white;
}

.cta-btn {
    background: var(--light-green);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--dark);
}

/* ============================================
   Hero Banner Section - Elegant Blend Design
   ============================================ */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3d17 0%, #2d5a27 30%, #3d7a35 60%, #4a8c3f 100%);
}

/* Decorative Branch Elements */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M0,100 Q50,80 100,100 Q150,120 200,100' stroke='%23ffffff10' fill='none' stroke-width='2'/%3E%3Cpath d='M0,150 Q50,130 100,150 Q150,170 200,150' stroke='%23ffffff08' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23ffffff05'/%3E%3C/svg%3E");
    background-size: 400px 400px, 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Left Branch Decoration */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 61, 23, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 70%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 70%);
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(45, 90, 39, 0.98) 0%, rgba(45, 90, 39, 0.85) 30%, rgba(45, 90, 39, 0.4) 60%, transparent 80%);
    z-index: 1;
}

/* RTL Hero - Flip gradient and content position */
body.rtl .hero-banner-overlay {
    background: linear-gradient(270deg, rgba(45, 90, 39, 0.98) 0%, rgba(45, 90, 39, 0.85) 30%, rgba(45, 90, 39, 0.4) 60%, transparent 80%);
}

body.rtl .hero-banner-bg {
    mask-image: linear-gradient(270deg, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 70%);
    -webkit-mask-image: linear-gradient(270deg, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 70%);
    background-position: center left;
}

body.rtl .hero-banner::after {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, rgba(26, 61, 23, 0.8) 0%, transparent 100%);
}

body.rtl .hero-banner-content {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

body.rtl .hero-banner-buttons {
    justify-content: flex-end;
}

body.rtl .hero-features-row {
    justify-content: flex-end;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 120px 0 80px;
}

/* Nature Branch Decorations */
.branch-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.branch-left {
    top: 20%;
    left: -50px;
    width: 200px;
    transform: rotate(-15deg);
}

.branch-right {
    top: 40%;
    right: -50px;
    width: 180px;
    transform: rotate(15deg) scaleX(-1);
}

.branch-bottom {
    bottom: 10%;
    left: 10%;
    width: 150px;
    transform: rotate(-30deg);
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-banner-title {
    margin-bottom: 20px;
}

.hero-banner-title .title-line {
    display: block;
    font-family: var(--font-en);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

body.rtl .hero-banner-title .title-line {
    font-family: var(--font-ar);
}

.hero-banner-title .title-line.highlight {
    color: #98d4a0;
}

.hero-banner-subtitle {
    font-family: var(--font-ar);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.hero-banner-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-banner-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-green);
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--mint-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 35px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-features-row {
    display: flex;
    gap: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
}

.hero-feature-item i {
    font-size: 18px;
    color: #98d4a0;
}

/* ============================================
   Banner Bottom Transition - Elegant Blend
   ============================================ */
.hero-banner {
    margin-bottom: -120px;
    padding-bottom: 120px;
    position: relative;
}

/* Elegant Wave Divider at Bottom */
.hero-banner-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 4;
    pointer-events: none;
}

.hero-banner-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Gradient fade for seamless blend */
.hero-banner-fade {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(248, 250, 247, 0.05) 20%,
        rgba(248, 250, 247, 0.15) 40%,
        rgba(248, 250, 247, 0.35) 60%,
        rgba(248, 250, 247, 0.6) 80%,
        rgba(248, 250, 247, 0.85) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Decorative floating leaves at banner bottom */
.banner-leaf-decoration {
    position: absolute;
    bottom: 50px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.3;
    animation: floatLeafBanner 8s ease-in-out infinite;
}

.banner-leaf-decoration.leaf-1 {
    left: 10%;
    animation-delay: 0s;
}

.banner-leaf-decoration.leaf-2 {
    right: 15%;
    animation-delay: -2s;
}

.banner-leaf-decoration.leaf-3 {
    left: 25%;
    animation-delay: -4s;
}

@keyframes floatLeafBanner {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Elegant Leaf Decorations - Programmatic SVG */
.leaf-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    opacity: 0.15;
}

.leaf-decoration.leaf-top-left {
    top: 15%;
    left: 2%;
    width: 120px;
    height: 200px;
    animation: swayLeaf 8s ease-in-out infinite;
}

.leaf-decoration.leaf-top-right {
    top: 10%;
    right: 3%;
    width: 100px;
    height: 180px;
    animation: swayLeaf 10s ease-in-out infinite reverse;
}

.leaf-decoration.leaf-bottom-left {
    bottom: 20%;
    left: 1%;
    width: 150px;
    height: 250px;
    animation: swayLeaf 12s ease-in-out infinite;
}

.leaf-decoration.leaf-bottom-right {
    bottom: 15%;
    right: 2%;
    width: 130px;
    height: 220px;
    animation: swayLeaf 9s ease-in-out infinite reverse;
}

@keyframes swayLeaf {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(3deg) translateX(5px); }
    50% { transform: rotate(0deg) translateX(0); }
    75% { transform: rotate(-3deg) translateX(-5px); }
}

/* Rosemary Branch Decorations */
.rosemary-branch {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.12;
}

.rosemary-branch.branch-left-top {
    top: 5%;
    left: -20px;
    width: 180px;
    transform: rotate(-20deg);
}

.rosemary-branch.branch-right-mid {
    top: 35%;
    right: -30px;
    width: 200px;
    transform: rotate(15deg) scaleX(-1);
}

.rosemary-branch.branch-left-bottom {
    bottom: 25%;
    left: -25px;
    width: 160px;
    transform: rotate(-10deg);
}

/* Mint Leaf Accents */
.mint-accent {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.mint-accent.mint-1 {
    top: 20%;
    right: 5%;
    width: 60px;
    animation: floatMint 15s ease-in-out infinite;
}

.mint-accent.mint-2 {
    top: 50%;
    left: 3%;
    width: 50px;
    animation: floatMint 18s ease-in-out infinite reverse;
}

.mint-accent.mint-3 {
    bottom: 30%;
    right: 8%;
    width: 55px;
    animation: floatMint 20s ease-in-out infinite;
}

@keyframes floatMint {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.15; }
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 80px 0;
    padding-top: 100px;
    background: white;
    position: relative;
    z-index: 5;
}

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

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--mint-green);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.15);
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-wrap i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    color: var(--primary-green);
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   Categories Section
   ============================================ */
.categories-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--mint-green);
    color: var(--primary-green);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title-main {
    font-family: var(--font-en);
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

body.rtl .section-title-main {
    font-family: var(--font-ar);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

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

.category-card {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(45, 90, 39, 0.9) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: white;
    z-index: 2;
}

.category-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.category-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.category-content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
}

.category-link i {
    transition: var(--transition);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

body.rtl .category-card:hover .category-link i {
    transform: translateX(-5px);
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 100px 0;
    background: #f8faf7;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 90, 39, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(45, 90, 39, 0.15);
}

.product-image-wrap {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #f8faf7 0%, #e8f5e9 100%);
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    transition: var(--transition);
}

.product-showcase-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.popular {
    background: #ff6b6b;
}

.product-overlay-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-showcase-card:hover .product-overlay-link {
    transform: translateY(0);
}

.product-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    color: var(--light-green);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-details h3 {
    margin: 10px 0;
}

.product-details h3 a {
    color: var(--dark-green);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.product-details h3 a:hover {
    color: var(--primary-green);
}

.product-size {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Product Price Styles */
.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-price.sale {
    color: #e53935;
}

.product-price-old {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: line-through;
}

/* Product Order Button */
.product-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.product-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.product-order-btn i {
    font-size: 18px;
}

/* Product Image Slider */
.product-image-slider {
    position: relative;
    width: 100%;
    height: 220px;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 12px;
    opacity: 0;
    transition: var(--transition);
    z-index: 5;
}

.product-image-wrap:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--primary-green);
    color: white;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(45, 90, 39, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: var(--primary-green);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.3);
}

/* ============================================
   Ingredients Section
   ============================================ */
.ingredients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ingredients-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.ingredients-text .section-title-main {
    color: white;
}

.ingredients-text > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ingredient-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ingredient-icon {
    font-size: 35px;
    flex-shrink: 0;
}

.ingredient-info h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.ingredient-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.ingredients-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: var(--mint-green);
    padding: 35px;
    border-radius: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.1);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    color: var(--dark-green);
    font-size: 15px;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-gray);
    font-size: 13px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faf7 0%, #e8f5e9 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title-main {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item h4 {
    color: var(--dark-green);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--mint-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links-contact a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrap {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(45, 90, 39, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: var(--dark-green);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-green);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-green);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

body.rtl .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--light-green);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ============================================
   Floating Leaves Animation
   ============================================ */
.floating-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.leaf {
    position: absolute;
    font-size: 30px;
    opacity: 0.15;
    animation: floatLeaf 20s infinite linear;
}

.leaf-1 { left: 10%; animation-delay: 0s; }
.leaf-2 { left: 30%; animation-delay: 5s; }
.leaf-3 { left: 60%; animation-delay: 10s; }
.leaf-4 { left: 85%; animation-delay: 15s; }

@keyframes floatLeaf {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ingredients-image {
        order: -1;
    }
    
    .ingredients-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .ingredient-item {
        justify-content: center;
        text-align: left;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-banner-title .title-line {
        font-size: 2.5rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-banner-buttons {
        flex-direction: column;
    }
    
    .hero-features-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 300px;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-banner-content {
        padding: 100px 0 60px;
    }
    
    .hero-banner-title .title-line {
        font-size: 2rem;
    }
    
    .contact-form-wrap {
        padding: 25px;
    }
}


/* ============================================
   Elegant WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

body.rtl .whatsapp-float {
    right: auto;
    left: 30px;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, #2d5a27 0%, #4a8c3f 50%, #25D366 100%);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 
        0 4px 15px rgba(45, 90, 39, 0.3),
        0 8px 25px rgba(37, 211, 102, 0.2),
        inset 0 -2px 5px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid rgba(255,255,255,0.2);
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(45, 90, 39, 0.4),
        0 15px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-float-btn i {
    font-size: 30px;
    color: white;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* Natural leaf decorations */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -5px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%234a8c3f'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(25deg);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.whatsapp-float-btn::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -8px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%232d5a27'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-135deg);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover::before {
    transform: rotate(35deg) scale(1.1);
}

.whatsapp-float-btn:hover::after {
    transform: rotate(-145deg) scale(1.1);
}

/* Natural pulse animation */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(74, 140, 63, 0.4);
    animation: whatsappPulse 2.5s ease-out infinite;
}

/* WhatsApp tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--dark-green);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

body.rtl .whatsapp-tooltip {
    right: auto;
    left: 80px;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Nature-Inspired Contact Icons
   ============================================ */
.contact-item-nature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(45, 90, 39, 0.08);
    transition: var(--transition);
}

.contact-item-nature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.15);
}

.contact-icon-nature {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.contact-icon-nature.email-icon {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.contact-icon-nature.phone-icon {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.contact-icon-nature.whatsapp-icon {
    background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%);
}

.contact-icon-nature svg {
    width: 28px;
    height: 28px;
}

/* Leaf decoration on contact icons */
.contact-icon-nature::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M25,5 Q40,15 25,30 Q10,15 25,5' fill='%234a8c3f' opacity='0.6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    top: -5px;
    right: -5px;
    transform: rotate(30deg);
}

.contact-info-nature h4 {
    color: var(--dark-green);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-nature p {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-info-nature a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-nature a:hover {
    color: var(--dark-green);
}

/* ============================================
   Nature-Inspired Social Media Icons
   ============================================ */
.social-links-nature {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link-nature {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

.social-link-nature.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-nature.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
}

.social-link-nature.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
}

.social-link-nature.tiktok {
    background: linear-gradient(135deg, #000000 0%, #25f4ee 50%, #fe2c55 100%);
}

.social-link-nature i {
    color: white;
    font-size: 22px;
}

.social-link-nature:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Small leaf decoration */
.social-link-nature::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M25,5 Q40,15 25,30 Q10,15 25,5' fill='%234a8c3f'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    top: -8px;
    right: -3px;
    opacity: 0;
    transform: rotate(30deg) scale(0.5);
    transition: var(--transition);
}

.social-link-nature:hover::before {
    opacity: 1;
    transform: rotate(30deg) scale(1);
}

/* ============================================
   Elegant Footer with Mint Leaves
   ============================================ */
.footer-nature {
    background: linear-gradient(180deg, #1e3d1a 0%, #0f2a0c 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Decorative mint leaves at top of footer */
.footer-leaves-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    overflow: hidden;
}

.footer-leaves-top svg {
    position: absolute;
    opacity: 0.15;
}

.footer-leaves-top .leaf-1 {
    top: 10px;
    left: 5%;
    width: 60px;
    transform: rotate(-20deg);
}

.footer-leaves-top .leaf-2 {
    top: 20px;
    left: 20%;
    width: 45px;
    transform: rotate(15deg);
}

.footer-leaves-top .leaf-3 {
    top: 5px;
    right: 15%;
    width: 55px;
    transform: rotate(-10deg);
}

.footer-leaves-top .leaf-4 {
    top: 25px;
    right: 5%;
    width: 40px;
    transform: rotate(25deg);
}

.footer-nature-content {
    padding: 100px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-grid-nature {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-brand-nature {
    padding-right: 40px;
}

body.rtl .footer-brand-nature {
    padding-right: 0;
    padding-left: 40px;
}

.footer-logo-nature {
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand-nature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.9;
}

.footer-section-nature h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section-nature h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--light-green);
    border-radius: 2px;
}

body.rtl .footer-section-nature h4::after {
    left: auto;
    right: 0;
}

.footer-links-nature {
    list-style: none;
}

.footer-links-nature li {
    margin-bottom: 15px;
}

.footer-links-nature a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-nature a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--light-green);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.footer-links-nature a:hover {
    color: white;
    padding-left: 10px;
}

body.rtl .footer-links-nature a:hover {
    padding-left: 0;
    padding-right: 10px;
}

.footer-links-nature a:hover::before {
    opacity: 1;
}

/* Footer contact with nature icons */
.footer-contact-nature {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: white;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 140, 63, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    color: var(--light-green);
    font-size: 16px;
}

/* Footer social links */
.footer-social-nature {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-nature a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-social-nature a:hover {
    background: var(--light-green);
    transform: translateY(-3px);
}

.footer-social-nature a i {
    font-size: 18px;
}

/* Footer bottom with decorative line */
.footer-bottom-nature {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    position: relative;
}

.footer-bottom-nature::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
}

.footer-bottom-nature p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Mint leaf SVG decorations in footer */
.mint-leaf-svg {
    fill: #4a8c3f;
}

/* ============================================
   Updated Product Cards - Elegant Display
   ============================================ */
.product-showcase-card-elegant {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 90, 39, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-showcase-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(45, 90, 39, 0.15);
}

.product-image-elegant {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8faf7 0%, #e8f5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.product-image-elegant img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    transition: var(--transition);
}

.product-showcase-card-elegant:hover .product-image-elegant img {
    transform: scale(1.08);
}

.product-badge-elegant {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

body.rtl .product-badge-elegant {
    left: auto;
    right: 20px;
}

.product-badge-elegant.popular {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.product-badge-elegant::before {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.product-details-elegant {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-category-elegant {
    color: var(--light-green);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-name-elegant {
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name-elegant a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.product-name-elegant a:hover {
    color: var(--primary-green);
}

.product-size-elegant {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-order-btn-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.product-order-btn-elegant::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: 0.5s;
}

.product-order-btn-elegant:hover::before {
    left: 100%;
}

.product-order-btn-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.product-order-btn-elegant i {
    font-size: 20px;
}

/* Responsive for new styles */
@media (max-width: 1024px) {
    .footer-grid-nature {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid-nature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand-nature {
        padding: 0;
    }
    
    .footer-section-nature h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-nature a:hover {
        padding-left: 0;
        padding-right: 0;
    }
    
    .footer-social-nature {
        justify-content: center;
    }
    
    .social-links-nature {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    body.rtl .whatsapp-float {
        right: auto;
        left: 20px;
    }
    
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float-btn i {
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}


/* ============================================
   Nature-Inspired Ingredient Icons
   ============================================ */
.ingredient-icon-nature {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ingredient-icon-nature svg {
    width: 35px;
    height: 35px;
}

/* Remove emoji styling from ingredient icons */
.ingredient-icon {
    font-size: 0;
}

.ingredient-icon.ingredient-icon-nature {
    font-size: inherit;
}


/* ============================================
   Elegant Products Grid
   ============================================ */
.products-showcase.elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.product-showcase-card.elegant {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-showcase-card.elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 90, 39, 0.15);
}

.product-showcase-card.elegant .product-image-wrap {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #f8faf7 0%, #e8f5e9 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.product-showcase-card.elegant .product-image-wrap img {
    width: 95%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
    max-width: 100%;
}

.product-showcase-card.elegant:hover .product-image-wrap img {
    transform: scale(1.08);
}

.product-showcase-card.elegant .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-showcase-card.elegant .product-badge.popular {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.product-showcase-card.elegant .product-badge.new {
    background: linear-gradient(135deg, #c9a962 0%, #b89952 100%);
}

.product-showcase-card.elegant .product-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-showcase-card.elegant .product-cat {
    color: var(--light-green);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-showcase-card.elegant .product-details h3 {
    margin: 0 0 5px 0;
}

.product-showcase-card.elegant .product-details h3 a {
    color: var(--dark-green);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.product-showcase-card.elegant .product-details h3 a:hover {
    color: var(--primary-green);
}

.product-showcase-card.elegant .product-size {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 12px;
}

.product-showcase-card.elegant .product-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-showcase-card.elegant .product-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-showcase-card.elegant .product-price.sale {
    color: #e53935;
}

.product-showcase-card.elegant .product-price-old {
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.product-showcase-card.elegant .product-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-showcase-card.elegant .product-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.product-showcase-card.elegant .product-order-btn i {
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-showcase.elegant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-showcase-card.elegant .product-image-wrap {
        padding: 15px;
    }
    
    .product-showcase-card.elegant .product-image-wrap img {
        height: 150px;
    }
    
    .product-showcase-card.elegant .product-details {
        padding: 15px;
    }
    
    .product-showcase-card.elegant .product-details h3 a {
        font-size: 13px;
    }
    
    .product-showcase-card.elegant .product-price {
        font-size: 15px;
    }
    
    .product-showcase-card.elegant .product-order-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .products-showcase.elegant-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   Nature-Inspired Contact & Social Icons
   ============================================ */
.contact-details.nature-style {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-nature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(232,245,233,0.9) 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 90, 39, 0.08);
}

.contact-item-nature:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.15);
    border-color: rgba(45, 90, 39, 0.15);
}

body.rtl .contact-item-nature:hover {
    transform: translateX(5px);
}

.nature-icon {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.4s ease;
}

.nature-icon svg {
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
}

/* Email icon - leaf green gradient */
.nature-icon.email-icon {
    background: linear-gradient(145deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2d5a27;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.15);
}

.nature-icon.email-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%234a8c3f'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    transform: rotate(20deg);
    transition: all 0.3s ease;
}

/* Phone icon - wooden brown gradient */
.nature-icon.phone-icon {
    background: linear-gradient(145deg, #efebe9 0%, #d7ccc8 100%);
    color: #5d4037;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.15);
}

.nature-icon.phone-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%238d6e63'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    transform: rotate(20deg);
    transition: all 0.3s ease;
}

/* WhatsApp icon - nature green gradient */
.nature-icon.whatsapp-icon {
    background: linear-gradient(145deg, #e8f5e9 0%, #a5d6a7 100%);
    color: #1b5e20;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
}

.nature-icon.whatsapp-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%2325D366'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    transform: rotate(20deg);
    transition: all 0.3s ease;
}

.contact-item-nature:hover .nature-icon::before {
    transform: rotate(35deg) scale(1.2);
}

.contact-item-nature h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.contact-item-nature p {
    margin: 0;
}

.contact-item-nature p a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-item-nature:hover p a {
    color: var(--primary-green);
}

/* Nature-Inspired Social Links */
.social-links-nature {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-nature {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-nature svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Instagram - gradient pink/purple with leaf */
.social-nature.instagram {
    background: linear-gradient(145deg, #fce4ec 0%, #f8bbd9 100%);
    color: #c2185b;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.15);
}

.social-nature.instagram::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%23e91e63'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transform: rotate(25deg);
    transition: all 0.3s ease;
}

/* Facebook - blue with leaf */
.social-nature.facebook {
    background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.15);
}

.social-nature.facebook::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%231976d2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transform: rotate(25deg);
    transition: all 0.3s ease;
}

/* Twitter - sky blue with leaf */
.social-nature.twitter {
    background: linear-gradient(145deg, #e1f5fe 0%, #b3e5fc 100%);
    color: #0288d1;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.15);
}

.social-nature.twitter::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%2303a9f4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transform: rotate(25deg);
    transition: all 0.3s ease;
}

/* TikTok - dark with leaf */
.social-nature.tiktok {
    background: linear-gradient(145deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #212121;
    box-shadow: 0 4px 15px rgba(33, 33, 33, 0.15);
}

.social-nature.tiktok::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z' fill='%23424242'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transform: rotate(25deg);
    transition: all 0.3s ease;
}

.social-nature:hover {
    transform: translateY(-5px) scale(1.05);
}

.social-nature:hover::before {
    transform: rotate(40deg) scale(1.3);
    opacity: 1;
}

.social-nature:hover svg {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-item-nature {
        padding: 15px 18px;
        gap: 15px;
    }
    
    .nature-icon {
        width: 48px;
        height: 48px;
    }
    
    .nature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .social-links-nature {
        gap: 12px;
        justify-content: center;
    }
    
    .social-nature {
        width: 45px;
        height: 45px;
    }
    
    .social-nature svg {
        width: 20px;
        height: 20px;
    }
}


/* ============================================
   FAQ Section Styles
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf7 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.12);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-green);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(45, 90, 39, 0.03);
}

.faq-question span {
    flex: 1;
    padding-left: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}


/* ============================================
   Product View Button (Showcase Only - No Prices)
   ============================================ */
.product-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.35);
    color: white;
}

.product-view-btn i {
    font-size: 16px;
}

/* Hide price wrap for showcase */
.product-showcase-card.elegant .product-price-wrap {
    display: none;
}


/* ============================================
   Product View Button - Learn More (Showcase Only)
   ============================================ */
.product-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c43 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.product-view-btn:hover {
    background: linear-gradient(135deg, #4a7c43 0%, #2d5a27 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    color: white;
}

.product-view-btn i {
    font-size: 14px;
}

/* ============================================
   Elegant Product Card Styling (Showcase)
   ============================================ */
.product-showcase-card.elegant {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-showcase-card.elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-showcase-card.elegant .product-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
}

.product-showcase-card.elegant .product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
}

.product-showcase-card.elegant:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-showcase-card.elegant .product-details {
    padding: 20px;
    text-align: center;
}

.product-showcase-card.elegant .product-cat {
    display: inline-block;
    font-size: 12px;
    color: #2d5a27;
    background: rgba(45, 90, 39, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.product-showcase-card.elegant h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.product-showcase-card.elegant h3 a {
    color: inherit;
    text-decoration: none;
}

.product-showcase-card.elegant .product-size {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}
