/* DHENUVARNA - Premium Natural & Herbal Products CSS */

/* CSS Variables */
:root {
    /* Earth-inspired Colors */
    --primary: #2D5016;
    --primary-light: #4A7C59;
    --accent: #8B4513;
    --earth-green: #6B8E23;
    --olive: #808000;
    --beige: #F5F5DC;
    --brown: #8B4513;
    --sage: #9CAF88;

    /* Neutral Colors */
    --white: #FFFFFF;
    --cream: #FFF8DC;
    --light-beige: #FAF0E6;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #2c3e50;
    --gray-800: #1a1a1a;
    --black: #000000;

    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;
}

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

input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: #1a1a1a;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xxl) 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 55px;
}

.header.scroll-up {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.animate-slide-in {
    animation: slideInLeft 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 55px;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 55px;
}

.logo img {
    height: 50px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon {
    position: relative;
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    border-radius: 8px;
}

.header-icon:hover {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    color: var(--primary);
    transform: scale(1.05);
}

.header-icon svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-icon:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.2rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.dropdown-menu a svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(45, 80, 22, 0.08), transparent);
    color: var(--primary);
    padding-left: 1.5rem;
}

.dropdown-menu a:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #7a8b84;
    pointer-events: none;
    z-index: 1;
    stroke-width: 2.5;
}

.search-input {
    padding: 0.65rem 1rem 0.65rem 2.8rem;
    border: 2px solid #e8f0e8;
    border-radius: 50px;
    width: 240px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8faf7;
    color: #2c3e50;
    outline: none;
}

.search-input::placeholder {
    color: #9cb89c;
}

.search-input:focus {
    border-color: var(--primary);
    background: var(--white);
    width: 300px;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.12);
}

.search-input:focus+.search-icon {
    color: var(--primary);
}

.header-icon {
    position: relative;
    color: var(--gray-800);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.4);
    border: 2px solid white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cart-dropdown {
    position: relative;
}

.cart-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-menu {
    right: 0;
    left: auto;
    min-width: 320px;
    max-height: 400px;
    overflow-y: auto;
}

[dir="rtl"] .cart-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .account-menu {
    right: auto;
    left: 0;
}

/* RTL Layout Support */
[dir="rtl"] .header-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .search-btn {
    right: auto;
    left: 0.6rem;
}

[dir="rtl"] .search-input {
    padding: 0.6rem 1rem 0.6rem 2.8rem;
}

[dir="rtl"] .icon-badge {
    right: auto;
    left: -6px;
}

[dir="rtl"] .dropdown-menu a::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .dropdown-menu a:hover {
    padding-left: 1rem;
    padding-right: 1.5rem;
}

[dir="rtl"] .product-card,
[dir="rtl"] .cart-item,
[dir="rtl"] .checkout-form {
    text-align: right;
}

[dir="rtl"] .mega-menu {
    left: auto;
    right: 0;
}

.cart-empty {
    padding: 2rem;
    text-align: center;
    color: var(--gray-600);
}

.cart-empty svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty p {
    margin-bottom: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
}

/* Mega Menu */
.nav-menu .dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -100px;
    background: white;
    min-width: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column h4 {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.mega-menu-column a {
    display: block;
    padding: 0.5rem 0;
    color: #666;
    font-size: 14px;
}

.mega-menu-column a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faf7 0%, #e8f5e9 100%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(107, 142, 35, 0.5) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 2rem;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease;
}

.hero-price .sale-price {
    color: #FFD700;
    margin-right: 1rem;
}

.hero-price .original-price {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.slide-content .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

/* Trust Strip */
.trust-strip {
    background: var(--light-beige);
    padding: var(--space-lg) 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary);
}

.trust-item span {
    font-weight: 500;
    color: var(--gray-800);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Slider */
.categories-section {
    position: relative;
}

.categories-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: scroll;
    scroll-behavior: auto;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

.categories-slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    cursor: pointer;
    width: 220px;
    min-width: 220px;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    background: #f8faf7;
    padding: 1rem;
}

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

.category-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 0 1rem;
}

.category-card p {
    color: var(--gray-600);
    padding: 0 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.category-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.category-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-nav button:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px !important;
    left: auto !important;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.product-image .badge {
    position: absolute;
    top: 10px;
    left: 10px !important;
    right: auto !important;
    z-index: 1;
}

.product-image .badge-success {
    position: absolute;
    top: 10px;
    left: 10px !important;
    right: auto !important;
    z-index: 2;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price .sale-price {
    color: #e74c3c;
    font-size: 1.3rem;
}

.product-price .original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 400;
}

.product-price .price {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: 0.5rem;
}

.stars {
    color: #FFD700;
}

/* Brand Story */
.brand-story {
    background: var(--light-beige);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.story-text h2 {
    margin-bottom: var(--space-md);
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    color: #2c3e50;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: #1a1a1a;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: var(--space-md);
}

/* Blog Section */
.blog-section {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.blog-image-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.blog-image-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-link::after {
    opacity: 1;
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.15);
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e8f0e8;
}

.blog-date,
.blog-category {
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.blog-category {
    color: var(--primary);
    font-weight: 600;
    background: rgba(45, 80, 22, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.blog-content h3 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.blog-content h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.blog-content h3 a:hover {
    color: var(--primary-light);
}

.blog-content p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(45, 80, 22, 0.08);
    border-radius: 25px;
    align-self: flex-start;
}

.read-more:hover {
    gap: 0.6rem;
    background: var(--primary);
    color: white;
    padding-right: 1.2rem;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card img {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--light-beige);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

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

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

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #2c3e50;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.newsletter-badge span {
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.newsletter-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.newsletter-content>p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#newsletter-message {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    background: white;
    border-color: white;
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-item i {
    color: #90EE90;
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-content>p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .newsletter-badge {
        padding: 0.5rem 1rem;
    }

    .newsletter-badge span {
        font-size: 0.7rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .newsletter-features {
        gap: 1rem;
    }

    .feature-item {
        font-size: 0.8rem;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
    }
}

/* Footer */
.footer {
    background: #2c4a3e;
    color: #e8f5e9;
    padding: 4rem 0 0;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6B8E23, transparent);
}

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

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.footer-section h4 {
    color: #c8e6c9;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p {
    color: #b8d4b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b8d4b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a i {
    font-size: 0.7rem;
    color: #8BC34A;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-section ul li a:hover i {
    transform: translateX(3px);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b8d4b8;
    margin-bottom: 1rem;
}

.footer-contact ul li i {
    color: #8BC34A;
    width: 18px;
    font-size: 0.9rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(139, 195, 74, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    margin-top: 1rem;
    border: 1px solid rgba(139, 195, 74, 0.3);
}

.footer-badge i {
    color: #8BC34A;
    font-size: 1rem;
}

.footer-badge span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: #b8d4b8;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links a:hover {
    background: #6B8E23;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 142, 35, 0.3);
    border-color: #6B8E23;
}

.footer-bottom {
    text-align: center;
    padding: 1.8rem 0;
    color: #9cb89c;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom i.fa-heart {
    color: #ff6b6b;
    margin: 0 0.3rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        height: 60px;
    }

    .header-content {
        padding: 0;
        height: 60px;
    }

    .header-logo img {
        height: 40px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .header-actions {
        gap: 0.5rem;
        order: 2;
    }

    .search-container {
        display: none;
    }

    .header-icon {
        padding: 0.4rem;
    }

    .header-icon svg {
        width: 20px;
        height: 20px;
    }

    .icon-badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.65rem;
        top: -6px;
        right: -6px;
    }

    .mobile-nav {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .hero-slider {
        height: 50vh;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .trust-items {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.2rem;
        overflow-x: hidden;
    }

    .trust-item {
        flex: 1;
        min-width: 0;
        flex-direction: column;
        text-align: center;
        gap: 0.2rem;
        padding: 0.3rem 0.1rem;
    }

    .trust-item i {
        font-size: 1rem;
    }

    .trust-item span {
        font-size: 0.45rem;
        line-height: 1;
        white-space: normal;
        word-break: break-word;
    }

    .categories-slider {
        gap: 1rem;
    }

    .category-card {
        min-width: 220px;
    }

    .category-nav button {
        width: 40px;
        height: 40px;
    }

    .category-card h3 {
        font-size: 1.1rem;
    }

    .category-card p {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        font-size: 0.9rem;
    }

    .product-image img {
        height: 180px;
    }

    .product-info h3 {
        font-size: 0.95rem;
    }

    .product-overlay {
        opacity: 1;
        background: rgba(45, 80, 22, 0.85);
    }

    .product-overlay .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

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

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image img {
        height: 220px;
    }

    .header-logo img {
        height: 40px;
    }

    .header-icon {
        padding: 0.3rem;
    }

    .icon-badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
    }
}


/* Product Detail Page */
.breadcrumb {
    padding: 1.5rem 0;
    color: #7a8b84;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #7a8b84;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: #ccc;
}

.breadcrumb span:last-child {
    color: var(--primary);
    font-weight: 500;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0 4rem;
}

.product-detail-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background: #f8faf7;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-main-image iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.thumbnail.active {
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.video-thumb:hover .play-icon {
    background: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 2;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f0e8;
}

.product-sku {
    color: #7a8b84;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-stock i {
    font-size: 0.85rem;
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.product-rating .stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    color: #7a8b84;
    font-size: 0.9rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: -0.5rem 0;
    border-bottom: 1px solid #e8f0e8;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.product-detail-price .sale-price,
.product-detail-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.product-detail-price .original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.product-detail-price .discount-badge {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.product-description {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8f0e8;
}

.product-description h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-description p {
    line-height: 1.8;
    color: #2c3e50;
    font-size: 1rem;
}

.product-purchase-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-quantity label {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e0e8dd;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.quantity-selector button {
    padding: 0.8rem 1.2rem;
    border: none;
    background: #f8faf7;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector button:hover {
    background: var(--primary);
    color: white;
}

.quantity-selector input {
    width: 70px;
    text-align: center;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.product-actions .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.btn-add-cart {
    flex: 1;
}

.btn-wishlist {
    width: 50px;
    padding: 0.9rem;
}

.btn-wishlist:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8f0e8;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(135deg, #f8faf7, #e8f5e9);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e0e8dd;
}

.trust-badge:hover {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

.trust-badge i {
    font-size: 1rem;
    color: var(--primary);
}

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.product-benefits {
    background: linear-gradient(135deg, #f8faf7, #e8f5e9);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e0e8dd;
}

.product-benefits h4 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.product-benefits h4 i {
    color: #FFD700;
}

.product-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-benefits ul li {
    color: #2c3e50;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.product-benefits ul li i {
    color: #27ae60;
    font-size: 1.1rem;
}

.related-products {
    margin: 5rem 0 3rem;
}

.related-products h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-gallery {
        position: relative;
        top: 0;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .video-thumb .play-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .product-detail-info h1 {
        font-size: 1.8rem;
    }

    .product-detail-price {
        flex-wrap: nowrap;
        gap: 0.25rem;
        align-items: center;
    }

    .price-wrapper {
        gap: 0.3rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .product-detail-price .sale-price,
    .product-detail-price .price {
        font-size: 1.1rem;
    }

    .product-detail-price .original-price {
        font-size: 0.75rem;
    }

    .product-detail-price .discount-badge {
        padding: 0.15rem 0.35rem;
        font-size: 0.55rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .product-trust-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
    }

    .trust-badge {
        padding: 0.4rem 0.2rem;
        gap: 0.2rem;
        flex-direction: column;
    }

    .trust-badge i {
        font-size: 0.9rem;
    }

    .trust-badge span {
        font-size: 0.55rem;
        text-align: center;
        line-height: 1.1;
    }

    .product-purchase-section {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .product-quantity {
        flex-shrink: 0;
    }

    .product-quantity label {
        display: none;
    }

    .quantity-selector {
        min-width: 100px;
    }

    .quantity-selector input {
        width: 50px;
    }

    .product-actions {
        flex: 1;
        min-width: 0;
    }

    .btn-add-cart {
        font-size: 0.85rem;
        padding: 0.9rem 0.8rem;
    }

    .btn-wishlist {
        flex: 0 0 45px;
        padding: 0.9rem 0.5rem;
    }
}


/* Testimonials Section */
.testimonials-section {
    background: #fff;
    position: relative;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
    border-color: var(--primary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.customer-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #e8f5e9;
    flex-shrink: 0;
    object-fit: cover;
}

.customer-info {
    flex: 1;
}

.customer-info strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.customer-info span {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.customer-info span i {
    color: var(--primary);
    font-size: 0.75rem;
    margin-right: 0.2rem;
}

.customer-info .stars {
    color: #FFD700;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f0fdf4;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #dcfce7;
    align-self: flex-start;
}

.verified-badge i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .customer-img {
        width: 60px;
        height: 60px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #2c3e50;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card,
    .feature-card {
        padding: 1.5rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }
}


/* Order Notifications */
.order-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    z-index: 9999;
    animation: slideIn 0.5s ease;
    border-left: 4px solid var(--primary);
}

.order-notification.hide {
    animation: slideOut 0.5s ease;
    opacity: 0;
}

.notification-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.notification-text {
    font-size: 0.85rem;
    color: #2c3e50;
}

.notification-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 3px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

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

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .order-notification {
        max-width: 280px;
        left: 10px;
        bottom: 10px;
        padding: 12px 15px;
    }

    .notification-img {
        width: 40px;
        height: 40px;
    }
}

/* Policy Pages */
.page-hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.95), rgba(107, 142, 35, 0.9)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section {
    padding: 5rem 0;
    background: #f8faf7;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    padding-top: 2rem;
    border-top: 2px solid #e8f0e8;
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 3rem 0;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.4rem;
    }
}


/* Modern Header Styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #7a8b84;
    pointer-events: none;
    z-index: 1;
    stroke-width: 2.5;
}

.search-input {
    padding: 0.65rem 1rem 0.65rem 2.8rem;
    border: 2px solid #e8f0e8;
    border-radius: 50px;
    width: 240px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8faf7;
    color: #2c3e50;
    outline: none;
}

.search-input::placeholder {
    color: #9cb89c;
}

.search-input:focus {
    border-color: var(--primary);
    background: var(--white);
    width: 300px;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.12);
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.4);
    border: 2px solid white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
}