@charset "utf-8";
/* CSS Document */

/* ============================================
   DESIGN SYSTEM - CSS VARIABLES
   ============================================ */

:root {
    /* ===== TYPOGRAPHY ===== */
    /* Font Families */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Font Sizes - Modular Scale (1.250 - Major Third) */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.75rem;
    /* 60px */

    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* ===== COLOR SYSTEM ===== */
    /* Primary Colors - Green Theme */
    --color-primary-50: #f0fdf4;
    --color-primary-100: #dcfce7;
    --color-primary-200: #bbf7d0;
    --color-primary-300: #86efac;
    --color-primary-400: #4ade80;
    --color-primary-500: #22c55e;
    /* Main Brand Green */
    --color-primary-600: #16a34a;
    --color-primary-700: #15803d;
    /* Darker Green for hover */
    --color-primary-800: #166534;
    --color-primary-900: #14532d;

    /* Neutral Colors */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #f0fdf4;

    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;

    /* ===== SPACING SCALE ===== */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */

    /* Section Padding */
    --section-padding-y: var(--space-20);
    --section-padding-y-sm: var(--space-12);

    /* ===== SHADOWS ===== */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 0.375rem;
    /* 6px */
    --radius-base: 0.5rem;
    /* 8px */
    --radius-md: 0.75rem;
    /* 12px */
    --radius-lg: 1rem;
    /* 16px */
    --radius-xl: 1.25rem;
    /* 20px */
    --radius-2xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;
    /* Fully rounded */

    /* ===== TRANSITIONS ===== */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE TYPOGRAPHY ===== */
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    font-weight: var(--font-regular);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: #e31e24;
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

/* Paragraphs */
p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.25rem;
    color: #1b1515;
}

/* Links */
a {
    transition: color var(--transition-base);
    text-decoration: none;
}

/* ===== SMOOTH SCROLL & ANIMATIONS ===== */
html {
    scroll-behavior: smooth;
}

/* Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageLoad 0.6s ease-out;
}

/* Fade In Up Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Call-to-Action */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.pulse-on-hover:hover {
    animation: pulse 1.5s infinite;
}

/* Hover Glow Effect for Interactive Elements */
.btn-primary,
.product-btn,
.view-all-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.product-btn::before,
.view-all-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.product-btn:hover::before,
.view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.25rem;
        /* 36px */
        --text-4xl: 1.875rem;
        /* 30px */
        --text-3xl: 1.5rem;
        /* 24px */
    }
}

@media (max-width: 480px) {
    :root {
        --text-5xl: 1.875rem;
        /* 30px */
        --text-4xl: 1.5rem;
        /* 24px */
        --text-3xl: 1.25rem;
        /* 20px */
    }
}

/* ============================================
   END DESIGN SYSTEM
   ============================================ */

/* ===== Slider Base ===== */
.main-slider-three {
    width: 100%;
    overflow: hidden;
}

/* Slider item auto height */
.main-slider-three__item {
    position: relative;
}

/* Full Image */
.slider-img {
    width: 100%;
    height: auto;
    /* Auto height ensures full image visible */
    display: block;
}

/* Overlay */
.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Content */
.main-slider-three__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 900px;
    padding: var(--space-8);
}

.main-slider-three__content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.main-slider-three__content p {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== Fancy Animated Arrows ===== */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.owl-nav button span {
    font-size: 32px;
    color: white;
    transition: all var(--transition-base);
}

/* Hover effect: grow + glow */
.owl-nav button:hover {
    background: white;
    border-color: var(--color-primary-500);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.owl-nav button:hover span {
    color: var(--color-primary-600);
    transform: scale(1.2);
}

/* Position arrows */
.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.owl-dots {
    display: none !important
}

/* Dots */
/*.owl-dots {
    text-align: center;
    margin-top: 10px;
}*/

/*.owl-dot {
    width: 14px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    margin: 0 5px;
}*/

/*.owl-dot.active {
    width: 40px;
    background: linear-gradient(90deg,#00e0ff,#00ffa2);
}*/

/* Responsive */
@media (max-width: 992px) {
    .main-slider-three__content h2 {
        font-size: 32px;
    }

    .main-slider-three__content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-slider-three__content h2 {
        font-size: 24px;
    }

    .main-slider-three__content p {
        font-size: 14px;
    }

    .owl-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-slider-three__content h2 {
        font-size: 18px;
    }

    .main-slider-three__content p {
        font-size: 12px;
    }
}


/*Nav Bar*/
.topbar {
    /* background: linear-gradient(90deg, #e31e24, #028e46); */
    padding: 5px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    color: #2E7D32;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
}

.pill a {
    color: #9f9292;
    text-decoration: none;
    font-size: 13px;
    /* font-weight: 600; */
    font-family: 'Inter', sans-serif;
}

.icons-only a {
    color: #2E7D32;
    margin: 0px 6px;
    font-size: 15px;
}

.divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 12px;
}


/* Language dropdown */
.language-pill {
    position: relative;
}

.language-pill .language-dropdown {
    position: absolute;
    top: 130%;
    left: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 8px 0;
    display: none;
    min-width: 100px;
    z-index: 100;
}

.language-pill .language-dropdown li {
    padding: 6px 16px;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s;
}

.language-pill .language-dropdown li:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

/* Sticky header */
#navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* background: linear-gradient(90deg, #0f2347, #2e7d32); */
    transition: all 0.3s ease;
}

.main-header__wrapper {
    transition: padding 0.3s ease;
}

/* Prevent content jump when sticky */
body {
    margin: 0;
}

#navbar+.content {
    padding-top: 120px;
}


/* About us slider start*/
.slider-container {
    width: 100%;
    max-width: 500px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    margin-top: 3%;
}

.slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

/* Hover zoom */
.slider-container:hover img {
    transform: scale(1.08);
}

/* Navigation buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.nav:hover {
    background: #2e7d32;
}

.prev {
    left: 18px;
}

.next {
    right: 18px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 18px;
    width: 100%;
    text-align: center;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dots span.active {
    background: #fff;
    width: 22px;
    border-radius: 10px;
}

.text-boxx {
    color: white;
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.45);
    /* contrast */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /*border-radius: 10px;*/
}

/* testimonial css*/
.testimonials-carousel {
    position: relative;
    padding: 30px 0;
    background-image: url('assets/images/footer-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #fff;
}

/* Overlay blur effect for background only */
.testimonials-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 111, 62, 0.5);
    backdrop-filter: blur(6px);
    z-index: 0;
}

.testimonials-carousel h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-slider {
    position: relative;
    z-index: 1;
    /* cards above overlay */
}

.testimonial-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 220px;
    margin: 0 10px;
    color: #333;
    /* text color for cards */
}

.testimonial-card .quote-icon {
    font-size: 50px;
    color: #2a6f3e;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.15;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.testimonial-meta img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #2a6f3e;
}

.testimonial-meta .name {
    font-weight: 600;
}

.testimonial-meta .designation {
    font-size: 13px;
    color: #777;
}

/* Dots */
.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    /* white dots for visibility on dark overlay */
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

/*Home testimonial section*/
.blog-testimonial-section {
    padding: 30px 0;
    background: #f4f8f6;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
}

.section-heading h2 span {
    color: #2c9f45;
}

.section-heading p {
    color: #666;
    margin-top: 10px;
}

/* Card */
.blog-testimonial-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform .4s ease;
}

.blog-testimonial-card:hover {
    transform: translateY(-10px);
}

/* Image */
.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: var(--text-sm);
    color: var(--color-primary-600);
    font-weight: var(--font-semibold);
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin: var(--space-2) 0;
    line-height: var(--leading-tight);
    color: var(--text-primary);
}

.blog-author {
    font-size: 14px;
    color: #777;
}

.blog-author i {
    margin-right: var(--space-2);
    color: var(--color-primary-600);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-weight: var(--font-semibold);
    color: var(--color-primary-600);
    text-decoration: none;
    transition: gap var(--transition-base);
}

.read-more:hover {
    gap: var(--space-3);
}

/* View All */
.view-all-btn {
    padding: var(--space-3) var(--space-8);
    background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-500));
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
    transition: all var(--transition-base);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}


.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 10px;
}

.blog-date {
    color: #2c9f45;
    font-weight: 600;
}

.blog-author {
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-author i {
    color: #2c9f45;
    font-size: 13px;
}

/*About buttion*/
.fancy-btn {
    float: right;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: all var(--transition-slow);
}

.glow-btn {
    position: relative;
    color: var(--color-primary-600);
    border: 2px solid var(--color-primary-600);
    background: transparent;
    overflow: hidden;
}

.glow-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
    z-index: -1;
}

.glow-btn:hover {
    color: #fff;
}

.glow-btn:hover::before {
    transform: scaleX(1);
}

/*Product css*/
.hot-products-two {
    background: var(--bg-secondary);
    padding: var(--section-padding-y-sm) 0;
}

/* Title */
.section-title h2 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

/* Grid */
.hot-products-grid {
    margin-top: var(--space-10);
}

/* Card */
.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    height: 100%;
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary-200);
}

/* Image */
.product-img {
    position: relative;
    background: var(--bg-secondary);
    text-align: center;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Content */
.product-content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.product-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
}

.product-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.product-card:hover .product-title a {
    color: var(--color-primary-600);
}

.product-price {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-primary-600);
    margin-bottom: var(--space-4);
}

/* Button */
.product-btn {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-500));
    color: white;
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-600));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-600));
    color: white;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Price layout */
.price-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.new-price {
    font-size: var(--text-xl);
    font-weight: var(--font-extrabold);
    color: var(--color-primary-600);
}

.old-price {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Make card relative for badge */
.product-card {
    position: relative;
}


.terms-section {
    background: #f7f9fc;
    padding: 50px 0 0px;
}

.terms-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 50px 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.terms-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2933;
    margin-bottom: 10px;
}

.terms-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #7dd56f);
    margin-bottom: 30px;
    border-radius: 2px;
}

.terms-content {
    font-size: 16px;
    line-height: 1.9;
    color: #4a5568;
}

/* Styling inside CMS content */
.terms-content h4,
.terms-content h5 {
    margin-top: 30px;
    font-weight: 600;
    color: #1f2933;
}

.terms-content p {
    margin-bottom: 18px;
}

.terms-content ul {
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 10px;
    list-style: disc;
}

/* Mobile */
@media (max-width: 767px) {
    .terms-card {
        padding: 35px 25px;
    }

    .terms-title {
        font-size: 26px;
    }
}

.faq-area {
    background: #f7f9fc;
    padding: 20px 0;
}

.faq-accordion {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #1f2933;
    cursor: pointer;
    text-decoration: none;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #28a745;
    border-bottom: 2px solid #28a745;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.accordion-title.active .arrow {
    transform: rotate(-135deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

.accordion-content.show {
    max-height: 500px;
    padding: 5px 20px 5px 20px;
}

/* Mobile */
@media (max-width: 767px) {
    .faq-accordion {
        padding: 25px;
    }
}



.contact-form h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.input-box {
    position: relative;
    margin-bottom: 14px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 9px;
    border: 1px solid #ccc;
    outline: none;
    resize: none;
    font-size: 16px;
}

.input-box span {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 0 5px;
    background: #fff;
    color: #999;
    transition: 0.3s;
    pointer-events: none;
}

.input-box input:focus~span,
.input-box input:valid~span,
.input-box textarea:focus~span,
.input-box textarea:valid~span {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #2e8b57;
}

.input-box input[type="submit"] {
    background: #2e8b57;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.input-box input[type="submit"]:hover {
    background: #276b46;
}

/* Contact cccs close*/
/* Gallery Css Start */
.section-title {
    text-align: center;
    margin: 19px 0 0px;
    font-size: 2em;
    color: #58901e;
}

.tab-buttons {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: 2px solid #54901c;
    color: #60951f;
    padding: 4px 33px;
    margin: 5px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #538c21;
    color: #fff;
}


/* PAGE HEADER */
.page-header {
    padding: 40px 0;
    position: relative;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.header-title {
    font-size: 42px;
    font-weight: 700;
    color: #e8f5e9;
}

/* SEARCH */
.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #c8e6c9;
    border-radius: 8px;
    background: #fafafa;
    color: #333;
}

/* SIDEBAR */
.product-sidebar {
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    position: sticky;
    top: 120px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.product-sidebar h4 {
    font-size: 18px;
    font-weight: 600;
    color: #245720;
}

.product-sidebar ul {
    list-style: none;
    padding: 0;
}

.product-sidebar li {
    margin: 10px 0;
}

.product-sidebar li a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
}

.product-sidebar li.active a {
    color: #28a745;
    font-weight: 700;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.product-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-img .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .img-main {
    opacity: 0;
    transform: scale(0.95);
}

.product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1);
}

/* BADGE */
.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

/* TEXT */
.product-title {
    font-size: 18px;
    margin: 15px 0 6px;
    color: #333;
    font-weight: 600;
}

.price {
    font-size: 17px;
    color: #388e3c;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 8px 22px;
    background: #245720;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #28a745;
}

/* PAGINATION */
.pagination {
    text-align: center;
    margin-top: 28px;
}

.pagination button {
    margin: 4px;
    padding: 7px 14px;
    border: none;
    background: #245720;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button.active {
    background: #28a745;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
    background: #f8faf6;
    outline: none;
}

.product-sidebar {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-sidebar h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #245720;
}

.product-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-sidebar ul li {
    margin-bottom: 10px;
}

.product-sidebar ul li a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.product-sidebar ul li.active a,
.product-sidebar ul li a:hover {
    background: #245720;
    color: #ffffff;
}

.product-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* Hover image */
.product-img .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .img-default {
    opacity: 0;
    transform: scale(0.95);
}

.product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1);
}

/* Badge */
.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 6px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #245720;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #28a745;
}

.mactive {
    background: #245720;
    color: #FFF !important;
}