/* ==========================================================================
   Home Hero Slider (Swiper)
   ========================================================================== */
.home-main {
    padding-top: 0;
    padding-bottom: 0;
}

/* ==========================================================================
   New Split Hero Section
   ========================================================================== */
.new-hero-split-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: calc(100vh - 130px);
    /* 130px is roughly the total header height */
    min-height: 500px;
    /* fallback minimum */
}

.new-hero-left,
.new-hero-right {
    flex: 0 0 100%;
    max-width: 100%;
    height: 50vh;
    /* Mobile height */
}

@media (min-width: 992px) {

    .new-hero-left,
    .new-hero-right {
        flex: 0 0 50%;
        max-width: 50%;
        height: 100%;
        /* Fill the container height */
    }
}

.new-hero-left {
    background-color: var(--wp--preset--color--tertiary, #EDEBE4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

@media (min-width: 992px) {
    .new-hero-left {
        padding: 60px 80px;
        justify-content: flex-start;
    }
}

.new-hero-content {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .new-hero-content {
        margin-left: 10%;
        margin-right: 0;
    }
}

.new-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--wp--preset--color--secondary);
    margin-bottom: 40px;
}


.new-hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.new-hero-ctas .btn {
    padding: 15px 30px;
}

.new-hero-bcorp {
    margin-top: 40px;
}

.b-corp-logo {
    width: 60px;
    height: auto;
    opacity: 0.9;
}

/* Right Side Slider */
.new-hero-right {
    position: relative;
    overflow: hidden;
}

.new-hero-swiper {
    width: 100%;
    height: 100%;
}

.new-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.new-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.new-hero-slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    z-index: 10;
}

@media (min-width: 992px) {
    .new-hero-slide-caption {
        bottom: 60px;
        left: 60px;
    }
}

.new-hero-slide-caption h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.new-hero-slide-caption p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.new-hero-swiper .swiper-pagination {
    bottom: 40px !important;
    left: 40px !important;
    width: auto !important;
    text-align: left !important;
}

@media (min-width: 992px) {
    .new-hero-swiper .swiper-pagination {
        bottom: 60px !important;
        left: 60px !important;
    }
}

.new-hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
}

.new-hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: calc(90vh - 120px);
    /* Move height to the main container */
    min-height: 400px;
}

/* Slide: Image Only */
.slide-type-image .slide-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the slide area */
    display: block;
}

/* Slide: Two Column (Text + Image) */
.slide-type-two-column {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Fill the swiper container */
    padding: 20px 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Light overlay to ensure text is readable */
    z-index: 1;
}

.slide-type-two-column .container {
    position: relative;
    z-index: 2;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.slide-content-col {
    max-width: 600px;
}

.slide-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--wp--preset--color--secondary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}



.slide-image-col {
    display: flex;
    justify-content: center;
}

.slide-foreground-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Swiper Slide Content Animations
   ========================================================================== */
/* Initial hidden state for slide content */
.slide-type-two-column .slide-heading,
.slide-type-two-column .slide-text,
.slide-type-two-column .btn,
.slide-type-two-column .slide-foreground-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Specific stagger delays for a cascading effect */
.slide-type-two-column .slide-heading {
    transition-delay: 0.2s;
}

.slide-type-two-column .slide-text {
    transition-delay: 0.4s;
}

.slide-type-two-column .btn {
    transition-delay: 0.6s;
}

.slide-type-two-column .slide-foreground-image {
    transition-delay: 0.8s;
    transform: translateY(0) scale(0.95);
}

/* Animate to visible state ONLY when the slide is active */
.swiper-slide-active .slide-heading,
.swiper-slide-active .slide-text,
.swiper-slide-active .btn {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .slide-foreground-image {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Swiper UI Overrides */
.swiper-button-next,
.swiper-button-prev {
    color: var(--wp--preset--color--primary) !important;
    background: #fff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--wp--preset--color--primary) !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .slide-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: auto;
        min-height: auto;
    }

    .slide-type-two-column {
        padding: 40px 0;
    }

    .slide-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .slide-content-col {
        margin: 0 auto;
    }

    .slide-heading {
        font-size: 2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
        /* Hide arrows on mobile for better UX */
    }
}

/* ==========================================================================
   Explore Categories Carousel
   ========================================================================== */
.categories-section {
    background-color: #fff;
    padding-top: 80px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--wp--preset--color--secondary, #063F30);
    margin-bottom: 40px;
}

.categories-swiper {
    position: relative;
    overflow: hidden;
}

.category-slide {
    text-align: center;
    transition: transform 0.3s ease;
}

.category-slide:hover {
    transform: translateY(-5px);
}

.category-link {
    text-decoration: none;
    color: #333;
    display: block;
}

.category-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-link:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    transition: color 0.3s;
}

.category-link:hover .category-name {
    color: var(--wp--preset--color--primary, #98782D);
}

/* Specific Arrow Styling for Categories (to sit nicely on sides) */
.categories-swiper .swiper-button-next.cat-next,
.categories-swiper .swiper-button-prev.cat-prev {
    background: #fff;
    color: var(--wp--preset--color--secondary);
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    top: 40%;
    /* Center relative to image wrapper, not whole slide */
}

@media (max-width: 768px) {
    .categories-section {
        padding-top: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .category-image-wrapper {
        width: 120px;
        height: 120px;
    }
}

/* ==========================================================================
   Scroll Reveal Animations (IntersectionObserver)
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Stagger utility classes if multiple items reveal at once */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* ==========================================================================
   Products Slider Sections (Most Popular, Trending, New Arrivals)
   ========================================================================== */
.products-slider-section {
    background-color: #fff;
}

.slider-container-relative {
    position: relative;
    /* For absolutely positioning arrows relative to the section */
}

.products-swiper {
    overflow: hidden;
}

.product-card {
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect ratio */
    background: #F2F1EC;
    /* Light beige/grey neutral background */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    /* Some padding so the image doesn't touch the edges if it's transparent */
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed to contain so product icon/image fits nicely inside the wrapper */
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #927530;
    /* Olive/Brown color from mockup */
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    /* Pill shape */
    z-index: 2;
}

.product-info {
    padding: 0;
    /* Removed padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.product-title a:hover {
    color: var(--wp--preset--color--primary, #98782D);
}

.product-price-action {
    display: block;
    align-self: flex-start;
}

.price-tag,
.price-tag .amount {
    color: #033D2A;
    /* Dark green from mockup */
    font-weight: 700;
    font-size: 1.05rem;
}

.price-tag del .amount {
    color: #999;
    font-size: 0.9rem;
    font-weight: normal;
    margin-right: 5px;
}

.price-tag ins {
    text-decoration: none;
}

@media (max-width: 768px) {
    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        padding: 2px 6px;
        font-size: 0.75rem;
        font-weight: 600;
    }
}

/* Specific Arrow Styling for Product Sliders */
.slider-container-relative .swiper-button-next.prod-next,
.slider-container-relative .swiper-button-prev.prod-prev {
    background: #fff;
    color: var(--wp--preset--color--secondary, #063F30);
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    z-index: 10;
}

.slider-container-relative .swiper-button-next.prod-next {
    right: -20px;
}

.slider-container-relative .swiper-button-prev.prod-prev {
    left: -20px;
}

.slider-container-relative .swiper-button-next.prod-next:after,
.slider-container-relative .swiper-button-prev.prod-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 1400px) {

    /* Bring arrows inside slightly on smaller screens if container is wide */
    .slider-container-relative .swiper-button-next.prod-next {
        right: 0;
    }

    .slider-container-relative .swiper-button-prev.prod-prev {
        left: 0;
    }
}

@media (max-width: 768px) {
    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        padding: 2px 6px;
        font-size: 0.75rem;
        font-weight: 600;
    }
}

/* ==========================================================================
   Bento Categories Grid (USP Highlight)
   ========================================================================== */
.bento-categories-section {
    background-color: var(--wp--preset--color--neutral, #FDFDFD);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    /* Base height for small cards */
    gap: 30px;
}

.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.bento-content {
    position: relative;
    z-index: 10;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 1, 1, 0.4) 0%, rgba(1, 1, 1, 0.2) 100%);
    z-index: 5;
    transition: opacity 0.4s ease;
}

.bento-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 5;
    transition: opacity 0.4s ease;
}

.bento-card:hover .bento-overlay,
.bento-card:hover .bento-overlay-light {
    opacity: 0.85;
}

.bento-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s ease;
}

.bento-card:hover .bento-bg-image {
    transform: scale(1.08);
}

/* Specific USP Card */
.bento-usp {
    grid-column: span 2;
    grid-row: span 2;
    background-color: var(--wp--preset--color--secondary, #063F30);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.bento-usp .bento-content {
    justify-content: center;
    width: 50%;
    padding: 60px;
}

.bento-image-wrapper {
    position: relative;
    z-index: 10;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bento-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-usp:hover .bento-image-wrapper img {
    transform: scale(1.05) rotate(-2deg);
}

.bento-subheading {
    color: var(--wp--preset--color--primary, #98782D);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.bento-heading {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 30px 0;
}



/* Small Cards */
.bento-small {
    grid-column: span 1;
    grid-row: span 1;
    background-color: var(--wp--preset--color--tertiary, #EDEBE4);
}

.bento-heading-small {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}



/* Fallbacks */
.fallback-usp-bg {
    background: radial-gradient(circle, rgba(152, 120, 45, 0.2) 0%, rgba(6, 63, 48, 0) 70%);
}

.fallback-small-bg {
    background-color: var(--wp--preset--color--tertiary, #EDEBE4);
}

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

    .bento-usp {
        grid-column: span 2;
    }

    .bento-small {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(250px, auto);
    }

    .bento-usp {
        grid-column: span 1;
        grid-row: span 1;
        flex-direction: column;
    }

    .bento-usp .bento-content,
    .bento-image-wrapper {
        width: 100%;
        padding: 40px;
    }

    .bento-image-wrapper {
        padding-top: 0;
    }

    .bento-heading {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   Two Column Promo Cards Section
   ========================================================================== */
.two-column-cards-section {
    background-color: var(--wp--preset--color--neutral, #FDFDFD);
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s ease;
}

.promo-card:hover .promo-bg {
    transform: scale(1.05);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient mimicking the image: darker on the left, fading out */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

/* For the second card if we want a different overlay */
.promo-card:nth-child(2) .promo-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
}

.promo-content {
    position: relative;
    z-index: 10;
    max-width: 65%;
}

.promo-heading {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.promo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

/* Fallback backgrounds if no image provided */
.fallback-bg-1 {
    background-color: #2b3a42;
}

.fallback-bg-2 {
    background-color: #4a5d6a;
}

@media (max-width: 991px) {
    .promo-heading {
        font-size: 1.8rem;
    }

    .promo-content {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        min-height: 350px;
        padding: 30px;
    }

    .promo-content {
        max-width: 100%;
    }
}

/* ==========================================================================
   Trust / Promise Section
   ========================================================================== */
.promise-section {
    background-color: transparent;
    padding: 40px 0;
}

.promise-section .promise-box {
    background-color: #F3F2EA;
    padding: 3rem;
    border-radius: 16px;
}

.promise-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.promise-subheading {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.promise-feature {
    text-align: center;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper img {
    max-width: 30px;
    max-height: 30px;
}

.fallback-icon {
    width: 30px;
    height: 30px;
    background-color: var(--wp--preset--color--primary);
    border-radius: 50%;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--wp--preset--color--secondary);
}

.feature-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.promise-guarantee-banner {
    background: #fff;
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
}

.guarantee-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    color: var(--wp--preset--color--secondary);
}

.guarantee-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}


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

@media (max-width: 768px) {
    .promise-guarantee-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }

    .guarantee-content {
        flex-direction: column;
    }
}

/* ==========================================================================
   Got Featured & Founder Section
   ========================================================================== */
.featured-founder-section {
    background: #fff;
    padding: 60px 0;
}

.featured-heading {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--wp--preset--color--secondary);
}

.featured-heading span {
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.featured-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 1;
}

.featured-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.featured-logo-item {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.featured-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.featured-logo-item img {
    max-height: 60px;
    width: auto;
}

.founder-block {
    display: flex;
    align-items: stretch;
    background: rgb(241, 239, 233);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.founder-image-col {
    width: 40%;
    position: relative;
    min-height: 400px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.fallback-founder-image {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    position: absolute;
}

.founder-content-col {
    width: 60%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wp--preset--color--primary);
    margin-bottom: 10px;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 0;
    color: var(--wp--preset--color--secondary);
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 991px) {
    .founder-block {
        flex-direction: column;
    }

    .founder-image-col,
    .founder-content-col {
        width: 100%;
    }

    .founder-image-col {
        min-height: 300px;
    }
}

/* ==========================================================================
   Mobile Typography & Spacing Optimizations
   ========================================================================== */
@media (max-width: 768px) {

    .section-title,
    .slide-heading,
    .promise-header h2,
    .featured-heading {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .bento-title {
        font-size: 1.25rem;
    }

    .founder-name {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .founder-content-col {
        padding: 30px 20px;
    }

    .slide-heading {
        font-size: 2.2rem;
    }

    .promise-section .promise-box {
        padding: 1.5rem;
        border-radius: 12px;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: var(--wp--preset--color--neutral, #FDFDFD);
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.quote-icon {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.client-info {
    margin-top: auto;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wp--preset--color--secondary, #063F30);
    margin: 0 0 5px 0;
}

.client-designation {
    font-size: 0.9rem;
    color: var(--wp--preset--color--primary, #98782D);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Custom Testimonial Arrows */
.slider-container-relative .test-prev,
.slider-container-relative .test-next {
    background: #fff;
    color: var(--wp--preset--color--secondary, #063F30);
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    z-index: 10;
    position: absolute;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container-relative .test-next {
    right: -20px;
}

.slider-container-relative .test-prev {
    left: -20px;
}

.slider-container-relative .test-prev:after,
.slider-container-relative .test-next:after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 1400px) {
    .slider-container-relative .test-next {
        right: 0;
    }

    .slider-container-relative .test-prev {
        left: 0;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    /* background-color: var(--wp--preset--color--tertiary, #EDEBE4); */
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03); */
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 24px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    /* Forces button to use the theme font */
    color: var(--wp--preset--color--secondary, #063F30);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--wp--preset--color--primary, #98782D);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--wp--preset--color--primary, #98782D);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
    padding: 0 25px 25px 25px;
    color: #555;
    line-height: 1.6;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}