/* ========================================
   HOMEPAGE STYLES
   ======================================== */

/**
 * Design Tokens Configuration
 * Based on design-specifications.md
 */
:root {
    --primary-color: #4C3696;
    --secondary-color: #502BCB;
    --complementary-1: #5ab915;
    --complementary-2: #7fc453;
    --accent-color: #EAE8F2;
    --bg-white: #FFFFFF;
    --heading-color: #000000;
    --body-color: #1D1D1D;
    --brand-green: #5ab915;
    /* Updated to match Complementary Color 1 */

    --base-unit: 4px;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    --space-3xl: 4rem;

    --radius-lg: 16px;

    --font-headings: 'Josefin Sans', sans-serif;
    --font-body: 'Jost', sans-serif;
    --font-buttons: 'Sofia Pro', sans-serif;

    /* Semantic Spacing */
    --container-max: 1320px;
    --container-narrow: 1200px;
}

/* Global Utilities
   ---------------------------------------- */
.section-padding {
    padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--space-xl) 0;
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-badge {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 36px;
    /* H2 */
    color: var(--heading-color);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--body-color);
    opacity: 0.7;
}

/* Hero Section
   ---------------------------------------- */
.hero-section {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    animation: heroFadeInUp 1s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 48px;
    /* H1 standard from specs */
    font-weight: 900;
    color: var(--bg-white);
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--bg-white);
    max-width: 480px;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: 18px 48px;
    background-color: var(--complementary-1);
    color: var(--bg-white);
    font-family: var(--font-buttons);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* Level 2 Shadow */
}

.hero-btn:hover {
    background-color: var(--complementary-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    /* Level 3 Shadow */
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 320px;
    }

    .hero-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 14px;
    }
}


/* Swiper Styling */
.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--bg-white);
    opacity: 0.6;
    border-radius: 50%;
    margin: 0 10px !important;
    transition: all 0.3s ease;
    border: none;
    transform: none;
    position: relative;
    cursor: pointer;
}

/* Invisible Hit Area Expansion for Accessibility */
.hero-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--bg-white);
    width: 12px;
    height: 12px;
    transform: scale(1.1);
}

.hero-pagination .swiper-pagination-bullet-active::after {
    display: none;
}

/* Hero Navigation Buttons */
.hero-next,
.hero-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-next:after,
.hero-prev:after {
    display: none;
    /* Hide default swiper icons if using custom content or font icons */
    /* Alternatively, if we want default arrows but styled container: */
    font-size: 14px;
}

/* Ensure we use Font Awesome or similar if not default swiper */
/* For now, let's assume default Swiper arrows are okay inside the circle, or we add content via CSS */
/* Actually, standard Swiper buttons have :after content. Let's adjust font size */
.hero-next:after,
.hero-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-next:hover,
.hero-prev:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {

    .hero-next,
    .hero-prev {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .hero-next:after,
    .hero-prev:after {
        font-size: 14px;
    }
}


/* Marquee Section */
.marquee-section {
    background-color: var(--primary-color);
    /* Corrected to Brand Primary Color */
    padding: 12px 0;
    margin-top: 8px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-container {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
    padding-left: 0;
}

.marquee-item {
    color: var(--bg-white);
    font-family: var(--font-buttons);
    /* Sofia Pro font */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.marquee-item::after {
    content: "•";
    margin-left: 80px;
    opacity: 0.5;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for accessibility */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

/* Circular Categories Section 
   ---------------------------------------- */
.circular-categories-section {
    padding-bottom: 0;
}

.circular-categories-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.categories-header {
    margin-bottom: var(--space-3xl);
    padding: 0 var(--space-md);
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.categories-slider-wrapper {
    position: relative;
    padding: 0;
}

.circular-categories-swiper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.circular-category-card {
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: var(--space-md);
}

.circular-category-image-container {
    width: 18.5vw;
    height: 18.5vw;
    max-width: 250px;
    max-height: 250px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--space-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: #fdfdfd;
}

.circular-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.circular-category-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* No color on hover as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.circular-category-hover-overlay span {
    color: #fff;
    font-family: var(--font-buttons);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #fff;
    padding: 6px 12px;
    border-radius: 20px;
}

.circular-category-card:hover .circular-category-hover-overlay {
    opacity: 1;
}

.circular-category-name {
    font-family: var(--font-headings);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--heading-color);
    margin: 0;
    padding-top: var(--space-sm);
    transition: color 0.3s ease;
}

/* Nav Buttons */
.categories-nav-btn {
    position: absolute;
    top: 40%;
    /* Align with images center mostly */
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.categories-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.categories-prev {
    left: 0;
}

.categories-next {
    right: 0;
}

@media (min-width: 769px) {
    .categories-nav-btn {
        display: none !important;
    }
}

/* Hover Effects */
.circular-category-card:hover .circular-category-image {
    transform: scale(1.07);
}

.circular-category-card:hover .circular-category-name {
    color: var(--brand-green);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .circular-category-image-container {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .categories-slider-wrapper {
        padding: 0 30px;
    }

    .circular-category-image-container {
        width: 100%;
        max-width: 110px;
        height: auto;
        aspect-ratio: 1/1;
    }

    .circular-category-name {
        font-size: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }

    .categories-header {
        margin-bottom: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .categories-slider-wrapper {
        padding: 0 25px;
    }

    .circular-category-card {
        padding: 10px 2px;
    }

    .circular-category-image-container {
        max-width: 95px;
    }

    .circular-category-name {
        font-size: 9px;
    }

    .categories-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

/* Featured Banners Section 
   ---------------------------------------- */
.banner-grid {
    display: flex;
    gap: var(--space-xl);
    height: 600px;
}

.banner-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    text-decoration: none;
    background: #f5f5f5;
}

.banner-large {
    flex: 1;
    height: 100%;
}

.banner-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.banner-small {
    flex: 1;
}

.banner-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.banner-content {
    position: absolute;
    z-index: 2;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    max-width: 400px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.content-bottom-left {
    bottom: var(--space-xl);
    left: var(--space-xl);
    text-align: left;
    align-items: flex-start;
}

.content-bottom-right {
    bottom: var(--space-xl);
    right: var(--space-xl);
    text-align: right;
    align-items: flex-end;
}

.content-top-right {
    top: var(--space-xl);
    right: var(--space-xl);
    text-align: right;
    align-items: flex-end;
}

.content-top-left {
    top: var(--space-xl);
    left: var(--space-xl);
    text-align: left;
    align-items: flex-start;
}

.banner-badge {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-xs);
    letter-spacing: 1px;
}

.banner-title {
    font-family: var(--font-headings);
    font-size: 32px;
    color: #fff;
    margin: 0 0 var(--space-md) 0;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 20px;
    }

    .banner-badge {
        font-size: 11px;
    }

    .banner-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .banner-grid {
        height: auto;
        flex-direction: column;
    }

    .banner-large,
    .banner-right-column {
        height: 350px;
    }
}

.banner-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--complementary-1);
    color: #fff;
    font-family: var(--font-buttons);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-shadow: none;
    /* Remove text shadow from button text */
}

/* Hover Effects */
.banner-item:hover .banner-image {
    transform: scale(1.1);
}

.banner-item:hover .banner-btn {
    background: var(--complementary-2);
    color: #fff;
}

/* Bestseller Section 
   ---------------------------------------- */
.badge-green {
    color: var(--brand-green) !important;
}

.bestseller-top-wrapper {
    margin-bottom: var(--space-3xl);
    text-align: center;
}

.bestseller-section .section-header {
    margin-bottom: var(--space-md);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

@media (max-width: 991px) {
    .bestseller-top-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .filter-tabs {
        justify-content: center;
    }
}

.filter-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--accent-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--brand-green);
    color: #fff;
}

.filter-btn:not(.active):hover {
    background: #d9d7e5;
    /* Slightly darker than accent-color #EAE8F2 */
}

/* Bestseller Section Products Grid */
.bestseller-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1024px) {
    .bestseller-section .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bestseller-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .bestseller-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Reviews Section - Modern & Sober Redesign */
.reviews-section {
    background: #fff;
    padding: var(--space-3xl) 0;
}

.review-card {
    background: #fff;
    border-radius: 40px 12px;
    /* Subtle organic asymmetry */
    padding: var(--space-xl);
    border: 1px solid #f1f1f1;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(76, 54, 150, 0.05);
    border-color: var(--accent-color);
}

.review-card::before {
    content: "\201C";
    /* Quote mark */
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: var(--brand-green);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.placeholder-img {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 10px;
}

.review-product-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: var(--space-md);
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    color: var(--brand-green);
    font-size: 14px;
    margin-bottom: 12px;
}

.review-highlight {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.reviewer-info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 16px;
}

.reviewer-loc {
    font-size: 13px;
    color: #999;
}

.reviews-swiper {
    padding: 20px 0 var(--space-3xl);
}

.reviews-section .swiper-button-next,
.reviews-section .swiper-button-prev {
    color: var(--primary-color);
    background: var(--accent-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reviews-section .swiper-button-next:after,
.reviews-section .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bold;
}

.reviews-section .swiper-button-next:hover,
.reviews-section .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Reviews Responsive */
@media (max-width: 768px) {

    .reviews-section .swiper-button-next,
    .reviews-section .swiper-button-prev {
        display: flex !important;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
    }

    .reviews-section .swiper-button-prev {
        left: 0px;
    }

    .reviews-section .swiper-button-next {
        right: 0px;
    }

    .review-card {
        padding: 12px;
        border-radius: 20px 8px;
    }

    .review-highlight {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .review-text {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .reviewer-name {
        font-size: 12px;
    }

    .reviewer-loc {
        font-size: 10px;
    }

    .review-product-thumb {
        width: 35px;
        height: 35px;
    }
}



/* Mission & Vision Section (Redesigned - Storytelling Layout) */
.mission-section {
    background-color: #f9f8f4;
    /* Warmer, organic background */
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 54, 150, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Features / Highlights Section 
   ---------------------------------------- */
.features-section {
    background-color: #fff;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.features-section .container {
    max-width: 95% !important;
    width: 95% !important;
    padding: 0 var(--space-md);
}

.features-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-xxl);
    width: 100%;
}

.features-left {
    width: 35%;
}

.features-image-container {
    width: fit-content;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0 var(--accent-color);
}

.features-main-image {
    width: auto;
    max-width: 100%;
    max-height: 65vh;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

.features-right {
    width: 65%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    transition: transform 0.3s ease;
}





.feature-title {
    font-family: var(--font-headings);
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--body-color);
    margin: 0;
    line-height: 1.4;
    opacity: 0.8;
}

/* Feature Hover Effects */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.08);
}





/* Responsive Features */
@media (max-width: 1024px) {
    .features-wrapper {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .features-left {
        width: 100%;
        max-width: 500px;
    }

    .features-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-left {
        display: none;
    }

    .features-right {
        width: 100%;
    }

    .features-grid {
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-md);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-text {
        font-size: 12px;
    }
}

.mission-header-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    position: relative;
    z-index: 2;
}

.mission-header-centered .section-badge {
    color: var(--brand-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.mission-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
}

@media (max-width: 768px) {
    .mission-title {
        font-size: 24px;
    }
}

.mission-title .hindi-text {
    color: var(--brand-green);
}

.mission-story-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.mission-row {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.mission-row:nth-child(even) {
    flex-direction: row-reverse;
}

.mission-image-col {
    flex: 1;
    position: relative;
}

.mission-image-inner {
    width: 100%;
    height: 400px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    box-shadow: 20px 34px 60px var(--accent-color);
    background: #e0e0e0;
}

.secondary-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.tertiary-shape {
    border-radius: 30% 70% 40% 60% / 30% 60% 40% 70%;
}

.mission-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mission-row:hover .mission-image-inner img {
    transform: scale(1.1);
}

.mission-text-col {
    flex: 1;
}

.mission-content-box {
    padding: var(--space-xl);
    background: transparent;
}

.mission-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand-green);
    margin-bottom: var(--space-lg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mission-card-title {
    font-family: var(--font-headings);
    font-size: 32px;
    margin-bottom: var(--space-md);
    color: var(--heading-color);
}

.mission-card-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .mission-card-title {
        font-size: 20px;
    }

    .mission-card-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 991px) {
    .mission-row {
        display: flex;
        flex-direction: column !important;
        text-align: center;
        gap: 15px;
    }

    .mission-row:nth-child(even) {
        flex-direction: column !important;
    }

    /* Allows us to reorder nested elements directly under the row */
    .mission-text-col,
    .mission-content-box {
        display: contents;
    }

    .mission-header-group {
        order: 1;
        /* 1. Heading + Icon at Top */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin-top: 10px;
    }

    .mission-image-col {
        order: 2;
        /* 2. Image in the Middle */
        width: 100%;
    }

    .mission-card-content {
        order: 3;
        /* 3. Text at the Bottom */
        width: 100%;
        padding: 0 var(--space-md);
    }

    .mission-icon-circle {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin: 0;
    }

    .mission-card-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .mission-image-inner {
        height: 220px;
        width: 90%;
        margin: 0 auto;
    }

    .mission-card-content p {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
    }

    .mission-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .filter-tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
        flex: 0 1 auto;
    }
}

@media (max-width: 1024px) {
    .banner-grid {
        height: auto;
        flex-direction: column;
    }

    .banner-large {
        height: 500px;
    }

    .banner-small {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 400px;
    }

    .hero-slide {
        height: auto;
        min-height: 400px;
    }

    .hero-image {
        height: 100%;
        min-height: 400px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-content {
        padding: var(--space-3xl) var(--space-lg);
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;
        font-size: 14px;
        padding: 14px 24px;
    }
}

/* Reviews Color Updates */
.review-stars {
    color: var(--brand-green) !important;
}

.review-highlight {
    color: var(--primary-color) !important;
}

.reviews-section .sub-heading {
    color: var(--brand-green) !important;
}

.section-title {
    color: #000 !important;
    /* As per guide for Headings */
}


/* Press/Journal Section 
   ---------------------------------------- */
/* Press / Stories Section - Clean & Modern */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.press-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-color);
}

.press-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.press-card:hover .press-card-image img {
    transform: scale(1.1);
}

.press-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.press-date span {
    display: block;
}

.press-date .day {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.press-date .month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #666;
}

.press-card-content {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.press-title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.press-title a {
    color: var(--heading-color);
    text-decoration: none;
}

.press-title a:hover {
    color: var(--primary-color);
}

.read-more-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 12px;
    color: var(--brand-green);
}

.placeholder-press-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .press-card-image {
        height: 200px;
    }

    .press-card-content {
        padding: 12px;
    }

    .press-title {
        font-size: 13px;
        line-height: 1.3;
        height: 35px;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .press-meta {
        font-size: 9px;
    }

    .read-more-link {
        font-size: 10px;
    }

    .press-date {
        padding: 4px 6px;
        border-radius: 8px;
        top: 10px;
        left: 10px;
    }

    .press-date .day {
        font-size: 12px;
    }

    .press-date .month {
        font-size: 8px;
    }
}

@media (max-width: 991px) {
    .press-grid {
        grid-template-columns: 1fr !important;
        /* Force 1-up on mobile/tablet */
        gap: 20px !important;
    }
}

@media (max-width: 576px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Cleanup - Hide Arrows */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    display: none !important;
}

/* Reviews Mobile Refinement */
@media (max-width: 768px) {
    .reviews-section.section-padding {
        padding-top: 0 !important;
    }
}