/* =====================================================
   HERBAL NATURALS - MODERN EARTHY COSMETICS WEBSITE
   Ayurvedic, Organic, Handmade, Eco-friendly Brand
   ===================================================== */

/* Color Palette */
:root {
    --primary-color: #35682D;      /* RAL 6002 Leaf Green - The Leaf */
    --secondary-color: #2D5625;    /* Darker Leaf Green */
    --tertiary-color: #4A7C3F;     /* Lighter Leaf Green */
    --accent-color: #D4AF37;       /* Soft Gold - Magic/Alchemy */
    --light-accent: #E8C870;       /* Light Gold */
    --blue-accent: #1E5A96;        /* Ocean Blue */
    --light-blue: #3B82B8;         /* Light Blue */
    --white: #FFFFFF;              /* Pure White */
    --beige: #E8E3D8;              /* Soft Neutral */
    --cream: #F5F2EA;              /* Warm Cream */
    --text-dark: #35682D;          /* Leaf Green */
    --text-light: #5A7A52;         /* Muted Green */
    --border-color: #D4AF37;       /* Gold Border */
    --shadow: 0 4px 15px rgba(53, 104, 45, 0.15);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fbf5 0%, #f4f9f0 50%, #f0f5eb 100%);
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

body.products-page {
    background: linear-gradient(135deg, #fbf9f3 0%, #f2ede3 45%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
}

h3 {
    font-size: 1.6rem;
    letter-spacing: 1px;
}

p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
    font-weight: 600;
}

a:hover {
    color: var(--blue-accent);
    transform: translateX(2px);
}

/* =====================================================
   NAVIGATION BAR
   ===================================================== */

.navbar {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Merriweather', serif;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: var(--primary-color);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(27, 48, 34, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1000;
    list-style: none;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--cream);
    color: var(--accent-color);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    color: white !important;
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--light-accent), var(--accent-color));
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    border-color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 35px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    border-color: white;
}

.btn-primary-white {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(53, 104, 45, 0.1);
}

.btn-primary-white:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(53, 104, 45, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(53, 104, 45, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--blue-accent));
    color: white;
    box-shadow: 0 10px 30px rgba(30, 90, 150, 0.3);
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
    background: linear-gradient(135deg, #f0f5e8 0%, #eef9f0 50%, #f5f9f2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: clamp(360px, 60vh, 560px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    padding: 1.5rem 2.5rem;
    margin: 0;
    background: linear-gradient(135deg, rgba(53, 104, 45, 0.95), rgba(45, 86, 37, 0.92));
    border-radius: 0;
    max-width: 45%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    border-left: 6px solid var(--blue-accent);
    box-shadow: -4px 0 20px rgba(30, 90, 150, 0.2);
}

.hero-content-overlay .hero-title {
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content-overlay .hero-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.hero-content-overlay .hero-description {
    color: #E8E3D8;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.hero-content-overlay .btn-primary {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    width: fit-content;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.hero-content-overlay .btn-primary:hover {
    background: var(--light-accent);
    border-color: var(--light-accent);
}

/* =====================================================
   INDIVIDUAL INGREDIENTS SHOWCASE SECTION
   ===================================================== */

.individual-ingredients-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f9f2 0%, #ebe8de 50%, #f0f5e8 100%);
}

.individual-ingredients-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.individual-ingredients-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ingredient-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(27, 48, 34, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
}

.ingredient-image-placeholder {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8dcc8 0%, #f0e6d2 100%);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(107, 158, 94, 0.3);
}

.ingredient-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ingredient-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.ingredient-benefit {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.featured-products {
    padding: 3.5rem 2rem 4.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
}

/* =====================================================
   BLUE-GREEN ACCENT STYLING
   ===================================================== */

.accent-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
}

.accent-section h2,
.accent-section h3 {
    color: white;
}

.accent-section p {
    color: rgba(255, 255, 255, 0.95);
}

.blue-accent-border {
    border-left: 5px solid var(--blue-accent);
    box-shadow: -3px 0 15px rgba(30, 90, 150, 0.2);
}

.green-white-blend {
    background: linear-gradient(90deg, var(--primary-color) 0%, white 100%);
}

.blue-green-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-accent) 100%);
    color: white;
}

.highlight-card {
    background: white;
    border: 2px solid var(--tertiary-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: var(--blue-accent);
    box-shadow: 0 8px 25px rgba(30, 90, 150, 0.15);
}

.leaf-green-text {
    color: var(--primary-color);
    font-weight: 700;
}

.blue-accent-text {
    color: var(--blue-accent);
    font-weight: 600;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.products-grid, .products-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card, .product-card-full {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover, .product-card-full:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img,
.product-card-full:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3, .product-card-full h3 {
    font-size: 1.3rem;
    margin: 1.2rem 1.5rem 0.5rem;
}

.product-desc, .product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0 1.5rem 1rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0.8rem 1.5rem 0;
}

.product-weight {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.2rem 1.5rem;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 1.5rem;
}

.product-benefits {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 1.5rem;
}

.product-benefits span {
    background-color: var(--beige);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-ingredients {
    margin: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-card .btn, .product-card-full .btn {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* =====================================================
   WHY CHOOSE US / BENEFITS
   ===================================================== */

.why-us {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(144, 168, 77, 0.12) 0%, rgba(107, 158, 94, 0.08) 100%);
}

.benefits-grid, .values-grid, .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card, .value-card, .ingredient-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.benefit-card:hover, .value-card:hover, .ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon, .info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3, .value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.benefit-card p, .value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =====================================================
   INGREDIENTS SECTION
   ===================================================== */

.ingredients-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
}

.ingredient-card {
    padding: 1.5rem;
    text-align: left;
    border-left: 4px solid var(--accent-color);
}

.ingredient-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ingredient-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(144, 168, 77, 0.1) 0%, rgba(144, 203, 94, 0.08) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   PAGE HEADER
   ===================================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */

.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-media {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* =====================================================
   STORY VIDEO SECTION
   ===================================================== */

.story-video-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(53, 104, 45, 0.06) 0%, rgba(30, 90, 150, 0.05) 100%);
}

.story-video-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.story-video-content .section-title {
    margin-bottom: 0.8rem;
}

.story-video-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.story-video-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(53, 104, 45, 0.18);
    border: 2px solid rgba(212, 175, 55, 0.45);
    background: #ffffff;
    margin: 0 auto;
}

.story-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.story-video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* =====================================================
   VALUES SECTION
   ===================================================== */

.values-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(144, 168, 77, 0.12) 0%, rgba(107, 158, 94, 0.08) 100%);
}

/* =====================================================
   PREMIUM INGREDIENTS SECTION (HOME PAGE)
   ===================================================== */

.premium-ingredients-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 50%, #f0f5e8 100%);
    position: relative;
    overflow: hidden;
}

.premium-ingredients-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 158, 94, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.premium-ingredients-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(144, 168, 77, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.ingredients-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ingredients-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.ingredients-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.header-divider-small {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
}

/* =====================================================
   5 SACRED LEAVES SHOWCASE
   ===================================================== */

.ingredients-showcase {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.five-leaves-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    width: 100%;
}

.leaf-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(107, 158, 94, 0.12);
    transition: var(--transition);
    border: 1px solid rgba(107, 158, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.leaf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 158, 94, 0.08), transparent);
    transition: left 0.5s ease;
}

.leaf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(107, 158, 94, 0.2);
    border-color: var(--accent-color);
}

.leaf-card:hover::before {
    left: 100%;
}

.premium-leaf {
    position: relative;
    z-index: 1;
}

.leaf-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.leaf-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.leaf-benefit {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaf-description {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
}

.center-leaf {
    /* No special positioning */
}

/* =====================================================
   AYURVEDIC HERBS SECTION
   ===================================================== */

.ayurvedic-section {
    background: linear-gradient(135deg, rgba(107, 158, 94, 0.08), rgba(144, 168, 77, 0.06));
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(107, 158, 94, 0.15);
}

.ayurvedic-section h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.herbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.herb-item {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.herb-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(107, 158, 94, 0.15);
}

.herb-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.herb-tag {
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */

.process-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.process-arrow {
    display: none;
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */

.team-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(144, 168, 77, 0.12) 0%, rgba(107, 158, 94, 0.08) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--cream);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1rem 0.3rem;
}

.role {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 1rem;
}

.team-member p {
    margin: 0.8rem 1rem 1.5rem;
}

/* =====================================================
   COMPARISON SECTION
   ===================================================== */

.different-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.comparison-item:hover {
    border-color: var(--text-light);
}

.comparison-item.herbal-highlight {
    border-color: var(--accent-color);
    background: rgba(107, 158, 94, 0.05);
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.comparison-item.herbal-highlight ul li {
    color: var(--accent-color);
    font-weight: 500;
}

.vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* =====================================================
   PREMIUM PRODUCT PAGE (Forest Essentials Style)
   ===================================================== */

.premium-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 50%, var(--blue-accent) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(53, 104, 45, 0.2);
}

.premium-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(235, 229, 217, 0.15), transparent),
                radial-gradient(circle at 80% 80%, rgba(30, 90, 150, 0.1), transparent),
                radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-header h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: 2.5px;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.premium-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), transparent);
    margin: 2rem auto;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.header-subtitle {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.premium-section {
    position: relative;
}

.premium-filter {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.filter-label {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Lato', sans-serif;
}

.filter-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--accent-color);
    border-color: var(--primary-color);
    font-weight: 700;
}

/* Soap Category Overview */
.category-overview {
    background: linear-gradient(135deg, rgba(27, 48, 34, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--accent-color);
}

.category-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.soap-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.soap-category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(27, 48, 34, 0.1);
    border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.soap-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.soap-category-card:hover::before {
    left: 100%;
}

.soap-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-top-width: 6px;
}

.soap-category-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.soap-product-name {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: 'Merriweather', serif;
}

.soap-details {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

.soap-details p {
    margin-bottom: 1rem;
}

.soap-details strong {
    color: var(--primary-color);
    font-weight: 700;
}


.product-count {
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-light);
}

.product-count p {
    font-size: 0.95rem;
}

/* =====================================================
   PREMIUM PRODUCT CARD (Forest Essentials Style)
   ===================================================== */

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card-full {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-full:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(107, 158, 94, 0.2);
    border: 1px solid var(--accent-color);
}

.product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #1B3022 0%, #2A4732 100%);
    position: relative;
}

/* Botanical Macro Photography Aesthetic */
.botanical-macro {
    background: radial-gradient(circle at 40% 30%, #2A4732, #1B3022);
}

.macro-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(212, 175, 55, 0.9);
    color: #1B3022;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-full:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.95) contrast(1.1);
}

.product-card-full:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

/* Product Info Section */
.product-card-full h3 {
    font-size: 1.4rem;
    margin: 1.8rem 1.8rem 0.3rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0.2rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-benefits {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1.2rem 1.8rem;
}

.product-benefits span {
    background: linear-gradient(135deg, rgba(27, 48, 34, 0.08), rgba(27, 48, 34, 0.05));
    color: var(--primary-color);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.product-ingredients {
    margin: 1.2rem 1.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.product-ingredients strong {
    color: var(--primary-color);
    font-weight: 700;
}

.product-description {
    margin: 1rem 1.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
}

.product-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 1.2rem 1.8rem 0.2rem;
    font-family: 'Merriweather', serif;
}

.product-weight {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.2rem 1.8rem 1.2rem;
}

/* Add to Cart Button - Premium Style */
.product-card-full .btn {
    margin: 0 1.8rem 1.8rem;
    width: calc(100% - 3.6rem);
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    color: white;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.product-card-full .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(107, 158, 94, 0.3);
}

/* =====================================================
   PRODUCTS PAGE SPECIFIC
   ===================================================== */

.products-section {
    padding: 3rem 2rem 5rem;
}

/* =====================================================
   SOAP COLLECTION HERO SECTION
   ===================================================== */

.soap-collection-hero {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1B3022 0%, #2A4732 50%, #1B3022 100%);
    overflow: hidden;
}

.soap-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

.soap-collection-hero .container {
    position: relative;
    z-index: 2;
}

.soap-hero-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.soap-hero-title {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.soap-hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.soap-hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.soap-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.soap-showcase-card {
    background: white;
    padding: 2.2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transform-style: preserve-3d;
}

.soap-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.soap-showcase-card:hover::before {
    left: 100%;
}

.soap-showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
}

.soap-showcase-card.premium-showcase {
    background: linear-gradient(135deg, #1B3022 0%, #2A4732 100%);
    color: white;
    border: 2px solid var(--accent-color);
}

.soap-showcase-card.premium-showcase h3,
.soap-showcase-card.premium-showcase .soap-card-tagline,
.soap-showcase-card.premium-showcase .soap-card-leaves,
.soap-showcase-card.premium-showcase .soap-card-skin,
.soap-showcase-card.premium-showcase .soap-card-price {
    color: white;
}

.soap-showcase-card.premium-showcase .soap-card-benefits span {
    color: var(--accent-color);
}

.soap-card-badge {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.soap-card-badge.premium {
    background: var(--accent-color);
    color: #1B3022;
}

.soap-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.soap-showcase-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.soap-card-tagline {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.soap-card-leaves {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.soap-card-leaves strong {
    color: var(--primary-color);
}

.soap-card-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.2rem 0;
}

.soap-card-benefits span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.soap-card-skin {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1rem 0 0.8rem 0;
}

.soap-card-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
}

.soap-hero-cta {
    text-align: center;
    margin-top: 3rem;
}

.soap-hero-tagline-final {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

/* Responsive Soap Hero */
@media (max-width: 1024px) {
    .soap-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    
    .soap-hero-title {
        font-size: 2.2rem;
    }
    
    .soap-hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .soap-collection-hero {
        padding: 3rem 1.5rem;
    }
    
    .soap-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .soap-hero-title {
        font-size: 1.8rem;
    }
    
    .soap-hero-subtitle {
        font-size: 1rem;
    }
    
    .soap-showcase-card {
        padding: 1.8rem;
    }
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(107, 158, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.05rem;
}

.location-text {
    font-size: 0.9rem;
}

.social-card {
    grid-column: 1 / -1;
}

.social-links, .social-links-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a, .social-links-contact a {
    padding: 0.5rem 1rem;
    background: var(--beige);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.social-links a:hover, .social-links-contact a:hover {
    background: var(--accent-color);
    color: white;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(144, 168, 77, 0.12) 0%, rgba(107, 158, 94, 0.08) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item h3 {
    cursor: pointer;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item h3:hover {
    color: var(--accent-color);
}

.faq-item p {
    display: none;
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active p {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   SHOPPING CART
   ===================================================== */

.floating-cart-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(107, 158, 94, 0.4);
    transition: var(--transition);
    z-index: 50;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 158, 94, 0.5);
}

.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.cart-item {
    background: var(--cream);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin: 0;
}

.cart-item-info p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--accent-color);
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    background: var(--cream);
}

.cart-total {
    margin-bottom: 1rem;
    text-align: right;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   SIDE IMAGE SECTION
   ===================================================== */

.side-image-section {
    padding: 3rem 0;
    background: var(--cream);
}

.side-image-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.side-image {
    width: 50%;
}

.side-showcase-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

/* =====================================================
   IMAGE SECTION
   ===================================================== */

.image-section {
    padding: 4rem 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section .container {
    display: flex;
    justify-content: center;
}

.blank-space-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

/* =====================================================
   FEATURED IMAGE SECTION
   ===================================================== */

.featured-image {
    padding: 4rem 0;
    background: var(--cream);
}

.featured-image .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
    .hero {
        min-height: clamp(320px, 55vh, 420px);
    }

    .hero-content-overlay {
        max-width: 100%;
        padding: 2rem;
        min-height: auto;
    }

    .hero-content-overlay .hero-title {
        font-size: 2rem;
    }

    .hero-content-overlay .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content-overlay .hero-description {
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        padding: 2rem;
        min-height: clamp(320px, 55vh, 420px);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 1rem;
    }

    .products-grid, .products-full-grid {
        grid-template-columns: 1fr;
    }

    .about-section .container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        display: block;
        transform: rotate(90deg);
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .vs {
        transform: rotate(90deg);
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .floating-cart-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .five-leaves-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .center-leaf {
        grid-column: auto;
    }

    .ingredients-header h2 {
        font-size: 2rem;
    }

    .herbs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .product-card .btn, .product-card-full .btn {
        margin: 0 1rem 1rem;
        width: calc(100% - 2rem);
    }

    .benefits-grid, .values-grid, .ingredients-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}

/* =====================================================
   INGREDIENT BADGES & PAGES
   ===================================================== */

.ingredients-header {
    background: linear-gradient(135deg, #1B3022 0%, #2A4732 50%, #1B3022 100%);
    color: var(--cream);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ingredients-header::before {
    content: '🌿';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    transform: rotate(-25deg);
}

.ingredients-header::after {
    content: '✨';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    bottom: 20px;
    left: 20px;
}

.ingredients-header h1 {
    color: var(--cream);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.ingredients-header .header-divider {
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    height: 2px;
    width: 100px;
    margin: 1.5rem auto;
}

.ingredients-header .header-subtitle {
    color: var(--light-accent);
    font-size: 1.1rem;
    font-style: italic;
}

.ingredients-container {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f5e8 0%, #eef9f0 50%, #f5f9f2 100%);
}

/* Ingredient Sections */
.ingredient-section {
    margin-bottom: 5rem;
    position: relative;
}

.ingredient-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.section-intro-secondary {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.section-tagline {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-top: 1rem;
    font-style: italic;
    line-height: 1.8;
    font-weight: 500;
}

.proprietary-section {
    background: linear-gradient(135deg, rgba(27, 48, 34, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 4rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.proprietary-tagline {
    color: var(--accent-color);
    font-size: 1.1rem;
    line-height: 2;
}

.proprietary-image {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proprietary-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(27, 48, 34, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--accent-color);
}

.proprietary-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.intent-section {
    background: linear-gradient(135deg, #f5f9f2 0%, #f0f5e8 100%);
    padding: 4rem 2rem;
    border-radius: 8px;
}

.intent-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intent-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.intent-check {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.intent-item p {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.standard-section {
    background: linear-gradient(135deg, #1B3022 0%, #2A4732 50%, #1B3022 100%);
    color: var(--cream);
    padding: 4rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.standard-section .section-title {
    color: var(--cream);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.standard-description {
    color: var(--light-accent);
    font-size: 1.2rem;
    line-height: 2;
    font-style: italic;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto;
    font-style: italic;
    line-height: 1.8;
}

/* Ingredients Grid */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    perspective: 1000px;
}

/* Ingredient Badge Card */
.ingredient-badge {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(27, 48, 34, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 3px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform-style: preserve-3d;
}

.badge-image-container {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0f5e8 0%, #eef9f0 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transform: translateZ(20px);
}

.badge-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ingredient-badge:hover .badge-image-container img {
    transform: scale(1.1) rotateZ(2deg);
}

.badge-image-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent);
}

.ingredient-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 10;
}

.ingredient-badge:hover::before {
    left: 100%;
}

.ingredient-badge:hover {
    transform: translateY(-12px) translateZ(20px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-top-width: 5px;
}

.badge-icon {
    font-size: 3.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
    transition: transform 0.5s ease;
    transform: translateZ(30px);
}

.ingredient-badge:hover .badge-icon {
    transform: translateZ(30px) scale(1.1) rotateY(-10deg);
}

.badge-content {
    flex-grow: 1;
    padding: 0 1.5rem 1.5rem 1.5rem;
    transform: translateZ(25px);
    transition: transform 0.5s ease;
}

.ingredient-badge:hover .badge-content {
    transform: translateZ(25px);
}

.badge-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-category {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.badge-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.badge-accent {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.ingredient-badge:hover .badge-accent {
    opacity: 1;
}

/* Decorative Elements */
.ingredient-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(30px);
}

.ingredient-badge:hover::after {
    opacity: 0.1;
}

/* =====================================================
   RESPONSIVE INGREDIENT BADGES
   ===================================================== */

@media (max-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .ingredients-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ingredients-header {
        padding: 3rem 1.5rem;
    }

    .ingredients-header h1 {
        font-size: 2rem;
    }

    .ingredients-header::before {
        font-size: 12rem;
    }

    .ingredients-container {
        padding: 2rem 0;
    }

    .ingredient-section {
        margin-bottom: 3rem;
    }

    .section-header {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-intro {
        font-size: 0.9rem;
    }

    .ingredients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .badge-image-container {
        height: 150px;
    }

    .badge-icon {
        font-size: 2.8rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .badge-content {
        padding: 0 1rem 1rem 1rem;
    }

    .badge-title {
        font-size: 1.1rem;
    }

    .badge-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ingredients-header {
        padding: 2rem 1rem;
    }

    .ingredients-header h1 {
        font-size: 1.6rem;
    }

    .ingredients-header::before {
        font-size: 8rem;
    }

    .ingredients-header::after {
        font-size: 5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .badge-image-container {
        height: 140px;
    }

    .badge-icon {
        font-size: 2.5rem;
    }

    .ingredient-badge:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* =====================================================
   BRAND ESSENCE SECTION
   ===================================================== */

.brand-essence {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f5e8 0%, #eef9f0 50%);
    border-top: 1px solid var(--light-accent);
    border-bottom: 1px solid var(--light-accent);
}

.essence-content {
    text-align: center;
}

.essence-title {
    font-size: 1.8rem;
    font-family: 'Merriweather', serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.essence-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.essence-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.essence-check {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.essence-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

.essence-tagline {
    font-size: 1.3rem;
    font-family: 'Merriweather', serif;
    color: var(--primary-color);
    margin-top: 2rem;
    font-style: italic;
}

/* =====================================================
   PHILOSOPHY SECTION
   ===================================================== */

.philosophy-section {
    padding: 5rem 0;
    background: white;
}

.philosophy-content {
    max-width: 800px;
    margin: 2rem auto;
}

.philosophy-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.philosophy-highlight {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: 'Merriweather', serif;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.philosophy-conclusion {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
    font-family: 'Merriweather', serif;
}

.section-intro {
    font-size: 1.4rem;
    font-family: 'Merriweather', serif;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* =====================================================
   FIVE-LEAF COMPLEX SECTION
   ===================================================== */

.five-leaf-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f9f2 0%, #f0f5e8 100%);
    border-top: 1px solid var(--light-accent);
}

.five-leaf-section .text-center {
    margin-top: 2rem;
}

/* =====================================================
   INGREDIENT INTEGRITY SECTION
   ===================================================== */

.ingredient-integrity-section {
    padding: 5rem 0;
    background: white;
}

/* =====================================================
   RITUAL OF CARE SECTION
   ===================================================== */

.ritual-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f9f2 0%, #eef9f0 100%);
    border-top: 1px solid var(--light-accent);
}

/* =====================================================
   SMALL BATCH SECTION
   ===================================================== */

.small-batch-section {
    padding: 5rem 0;
    background: white;
}

/* =====================================================
   CLEAN BEAUTY PROMISE SECTION
   ===================================================== */

.clean-beauty-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f5e8 0%, #eef9f0 100%);
    border-top: 1px solid var(--light-accent);
}

/* =====================================================
   AURA LEAF PROMISE SECTION
   ===================================================== */

.promise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1B3022 0%, #2A4732 100%);
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.promise-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.promise-title {
    font-size: 2.5rem;
    font-family: 'Merriweather', serif;
    color: white;
    margin-bottom: 0.5rem;
}

.promise-tagline {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.promise-text-group {
    margin-bottom: 2.5rem;
}

.promise-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
    font-family: 'Merriweather', serif;
    line-height: 1.8;
}

.btn-primary-white {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 700;
}

.btn-primary-white:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

/* =====================================================
   SECTION TITLE STYLING
   ===================================================== */

.section-title {
    font-size: 2rem;
    font-family: 'Merriweather', serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

/* =====================================================
   TEXT CENTER UTILITY
   ===================================================== */

.text-center {
    text-align: center;
}

/* =====================================================
   HERO SECTION UPDATES
   ===================================================== */

.hero-overline {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-subtitle-text {
    font-size: 1.2rem;
    color: var(--light-accent);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description-main {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* =====================================================
   RESPONSIVE DESIGN - BRAND ESSENCE
   ===================================================== */

@media (max-width: 768px) {
    .brand-essence {
        padding: 3rem 0;
    }

    .essence-title {
        font-size: 1.4rem;
    }

    .essence-checklist {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .philosophy-text,
    .philosophy-highlight,
    .philosophy-conclusion {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .promise-title {
        font-size: 2rem;
    }

    .promise-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-essence {
        padding: 2rem 0;
    }

    .essence-title {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .philosophy-text,
    .philosophy-highlight,
    .philosophy-conclusion {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .promise-title {
        font-size: 1.5rem;
    }

    .promise-tagline {
        font-size: 1.1rem;
    }

    .promise-text {
        font-size: 0.95rem;
    }

    .hero-overline {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description-main {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .navbar, .floating-cart-btn, .cart-sidebar {
        display: none;
    }
}
