/* ===== EPOKA GLOBAL - MAIN STYLESHEET ===== */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Manrope:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap");

:root {
    --primary: #c9a227;
    --primary-dark: #a8870a;
    --secondary: #213826;
    --secondary-hover: #3e5640;
    --accent: #c8860a;
    --bg-light: #fffdf7;
    --bg-cream: #fef9ee;
    --bg-warm: #fdf3dc;
    --text-dark: #533b00;
    --text-mid: #5c4a2a;
    --text-light: #8c7a5a;
    --white: #ffffff;
    --border: #f0ddb0;
    --shadow: rgba(200, 140, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --font-heading: "Lora", serif;
    --font-subheading: "Manrope", sans-serif;
    --font-body: "Nunito", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    /* overflow-x: hidden; */
}

/* Reveal animation start  */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
}

.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* Reveal animation end  */

.page-wrapper {
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR SECTION START ===== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    /* padding: 10px 0; */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.navbar-brand img {
    height: 70px;
    width: auto;
    object-fit: cover;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark) !important;
    padding: 7px 16px !important;
    border-radius: 6px;
    transition: all 0.25s;
}

/* Hover state */
.navbar-nav .nav-link:hover {
    background: #fff2c5;
    color: #000 !important;
}

/* Active state: exact match from screenshot */
.navbar-nav .nav-link.active {
    background: #fff9d1 !important;
    color: #000 !important;
    font-weight: 700;
}

/* Navbar icon links */
.navbar-icons a {
    color: var(--text-dark);
    font-size: 20px;
    margin-left: 10px;
    transition: color 0.2s;
}

.navbar-icons a:hover {
    color: var(--primary);
}

/* Search bar with icon inside */
.navbar-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-light);
    font-size: 14px;
    pointer-events: none;
}

.search-bar {
    border: 1.5px solid var(--border);
    border-radius: 25px;
    padding: 7px 16px 7px 36px;
    font-size: 13px;
    outline: none;
    width: 190px;
    transition:
        border-color 0.2s,
        width 0.3s;
    background: var(--bg-cream);
}

.search-bar:focus {
    border-color: var(--primary);
    width: 220px;
}

/* ===== NAVBAR MOBILE MENU PANEL START ===== */

/* Mobile menu panel — hamburger open hone par neeche slide aata hai */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        border-top: 2px solid #fff2c5;
        padding: 12px 0 16px;
        box-shadow: 0 8px 24px rgba(200, 140, 0, 0.12);
        border-radius: 0 0 12px 12px;
    }

    /* Nav links mobile mein full width, padding thoda bada */
    .navbar-nav .nav-link {
        padding: 10px 20px !important;
        border-radius: 0;
        border-left: 3px solid transparent;
        font-size: 15px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        border-left-color: var(--primary);
        padding-left: 24px !important;
        background: #fff2c5;
    }

    /* Mobile mein icons ka size thoda adjust */
    .navbar-icons a {
        font-size: 18px;
        margin-left: 6px;
    }
}

/* ===== NAVBAR MOBILE MENU PANEL END ===== */

/* ===== NAVBAR SECTION END ===== */

/* ===== HERO SECTION START ===== */
.hero-section {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #1a1a1a;
    /* fallback */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Full-bleed background image (beekeeper photo) */
.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.7;
    z-index: 0;
}

/* Dark overlay to ensure text readability */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.3) 55%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}

/* Right-side honey image — absolute positioned to right edge */
.hero-honey-right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    max-height: 520px;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 2;
    pointer-events: none;
    /* subtle drop shadow to blend nicely */
    filter: drop-shadow(-8px 0 24px rgba(0, 0, 0, 0.35));
}

/* Hero content area (left column) */
.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 70px;
    padding-bottom: 80px;
    /* space for trust bar */
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 58px;
    /* font-weight: 700; */
    /* line-height: 1.2; */
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

/* "Honey" word stays white — no color accent needed since bg is dark */
.hero-content h1 span {
    color: #fff;
}

.hero-content p {
    font-size: 19px;
    font-family: var(--font-subheading);
    opacity: 0.8;
    margin-bottom: 32px;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.btn-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-primary-honey {
    background: var(--primary);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 40px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s;
    width: fit-content;
    text-align: center;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.45);
    letter-spacing: 0.3px;
}

.btn-primary-honey:hover {
    background: var(--primary-dark);

    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.55);
}

/* Shop Pure Honey CTA button — #FF7202 bg, white text */
.btn-primary-honey2 {
    /* background: var(--primary); */
    background: white;
    /* color: #ffffff !important; */
    color: var(--secondary);
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 40px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s;
    width: fit-content;
    text-align: center;
    /* box-shadow: 0 4px 20px rgba(201, 162, 39, 0.45); */
    letter-spacing: 0.3px;
}

.btn-primary-honey2:hover {
    background: var(--primary-dark);

    color: #ffffff !important;
    transform: translateY(-2px);
    /* box-shadow: 0 6px 24px rgba(201, 162, 39, 0.55); */
}

/* Trust badges bar at bottom of hero */
.hero-trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 14px 20px;
}

.trust-item {
    color: rgb(255, 255, 255);
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-item i {
    color: var(--primary);
    font-size: 15px;
}

/* ===== HERO SECTION RESPONSIVE — TABLET ===== */
@media (max-width: 991px) {
    .hero-section {
        min-height: 480px;
    }

    .hero-honey-right {
        height: 70%;
        max-height: 380px;
        opacity: 0.5;
    }

    .hero-content h1 {
        font-size: 44px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-trust-bar {
        gap: 28px;
    }

    .trust-item {
        font-size: 15px;
    }
}

/* ===== HERO SECTION RESPONSIVE — MOBILE ===== */
@media (max-width: 575px) {
    .hero-section {
        min-height: 420px;
    }

    /* Hide right honey image on mobile — overlaps content */
    .hero-honey-right {
        display: none;
    }

    .hero-container {
        padding-top: 48px;
        padding-bottom: 70px;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 0.5px;
        margin-bottom: 14px;
        text-align: center;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Trust bar — stack vertically on very small screens */
    .hero-trust-bar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
        /* background: rgba(0, 0, 0, 0.35); */
    }

    .trust-item {
        font-size: 13px;
    }
}

/* ===== HERO SECTION END ===== */

/* ===== SECTION TITLES START===== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
    font-family: var(--font-subheading);
}

/* ===== SECTION TITLES  END===== */

/* ===== PRODUCT SECTIONS ===== */
.products-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.product-card {
    /* background: var(--white); */
    border-radius: var(--radius-lg);
    padding: 20px 16px 18px;
    text-align: center;
    transition: all 0.3s;
    border: 1.5px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    /* transform: translateY(-6px); */
    /* box-shadow: 0 12px 36px var(--shadow); */
    border-color: var(--primary);
}

.product-card .img-wrap {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.product-card .img-wrap img {
    max-height: 155px;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .img-wrap img {
    transform: scale(1.06);
}

.product-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.btn-add-cart {
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 13px;
    padding: 9px 22px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
    margin-top: auto;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ===== CAROUSEL ARROWS ===== */
.carousel-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
}

.carousel-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===== WHY CHOOSE SECTION START ===== */

.why-choose-section {
    padding: 70px 0;
    position: relative;
    background: #fff9f4;
}

/* Section heading — centered above columns */
.why-choose-heading {
    margin-bottom: 48px;
}

/* ---- LEFT COLUMN ---- */

/* Outer wrapper: overflow visible so bee vector can peek outside the column */
.why-left-wrap {
    position: relative;
}

/* Bee + dashed-circle decorative vector —
   anchored to the left-wrap container using % so it stays
   in the correct corner regardless of zoom level */
.why-bee-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 200px;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

/* Beekeeper photo — rounded corners, larger height */
.why-choose-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.why-choose-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* Global Brand badge — overlaid on bottom-left of photo, inside .why-left-wrap */
.brand-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    background: rgba(255, 249, 244, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
    padding: 18px 22px;
    max-width: 72%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Brand badge heading */
.brand-badge h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

/* Brand badge description */
.why-brand-desc {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--text-light);
    /* line-height: 1.6; */
    text-align: justify;
    margin: 0;
}

/* ---- RIGHT COLUMN ---- */

/* Intro paragraph — Manrope 19px, justified */
.why-intro-text {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
    /* text-align: justify; */
}

/* Feature row: hexagonal icon + text side by side */
.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

/* Hexagonal icon — CSS clip-path, dark brown bg */
.why-hex-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: #533b00;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon PNG inside hexagon — inverted to white */
.why-hex-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Feature title */
.why-feature h6 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text-dark);
}

/* Feature description — Manrope 19px */
.why-feature p {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--text-light);
    /* line-height: 1.6; */
    margin: 0;
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 991px) {
    .why-bee-vector {
        top: -14%;
        left: -12%;
        width: 32%;
    }

    .why-choose-img img {
        height: 360px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .why-bee-vector {
        display: none;
    }

    .why-choose-img img {
        height: 260px;
    }

    .brand-badge {
        max-width: 90%;
        padding: 14px 16px;
    }

    .why-hex-icon {
        width: 50px;
        height: 50px;
    }

    .why-hex-icon img {
        width: 24px;
        height: 24px;
    }

    .why-intro-text {
        font-size: 16px;
        text-align: left;
    }

    .why-feature p {
        font-size: 15px;
    }
}

/* ===== WHY CHOOSE SECTION END ===== */

/* ===== CERTIFICATIONS & QUALITY SECTION START ===== */

/* Section background — warm off-white as per design */
.cert-section {
    background: #fff9f4;
    padding: 70px 0;
}

/* Individual cert card — white bg, subtle border, rounded corners */
.cert-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        box-shadow 0.25s,
        border-color 0.25s;
}

.cert-card:hover {
    box-shadow: 0 8px 28px rgba(200, 140, 0, 0.12);
    border-color: var(--border);
}

/* Image wrapper — fixed height so all logos align uniformly */
.cert-img-wrap {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cert-img-wrap img {
    max-height: 80px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
}

/* Card title — Manrope, 16px, bold, dark brown */
.cert-card-title {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Card description — Manrope, 14px, muted color */
.cert-card-desc {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ---- Responsive ---- */

/* Tablet — 2 cards per row already handled by Bootstrap col-md-6 */
@media (max-width: 767px) {
    .cert-section {
        padding: 50px 0;
    }

    .cert-intro {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .cert-card {
        padding: 24px 18px 22px;
    }

    .cert-img-wrap {
        height: 70px;
    }

    .cert-img-wrap img {
        max-height: 62px;
    }
}

/* Mobile — single column */
@media (max-width: 575px) {
    .cert-section {
        padding: 40px 0;
    }

    .cert-card-title {
        font-size: 15px;
    }

    .cert-card-desc {
        font-size: 13px;
    }
}

/* ===== CERTIFICATIONS & QUALITY SECTION END ===== */

/* ===== TESTIMONIALS SECTION START ===== */
.testimonials-section {
    padding: 80px 0 60px;
    background: #fff9f4;
    position: relative;
    overflow: hidden;
}

/* Bee + dashed-circle decorative vector — top-left */
.testi-bee-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    pointer-events: none;
    z-index: 0;
}

/* Section heading spacing */
.testi-heading {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

/* ---- Slider outer wrap — holds arrows + track-outer, arrows vertically centered on cards ---- */
.testi-slider-wrap {
    position: relative;
    z-index: 1;
    padding: 0 54px;
    margin-bottom: 28px;
}

/* Arrow buttons — vertically centered via flex on slider-wrap */
.testi-prev-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 10;
}

.testi-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 10;
}

/* Track outer — clips overflow so only 3 cards show */
.testi-track-outer {
    overflow: hidden;
    padding: 16px 2px 20px;
}

/* Track inner — flex row that slides */
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each card column — fixed width */
.testi-col {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
}

/* ---- Base card — top border only, 2px amber ---- */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px 28px;
    border: none;
    border-top: 2px solid rgba(201, 162, 39, 0.49);
    height: 100%;
    transition:
        box-shadow 0.3s,
        border-top-color 0.3s,
        transform 0.3s;
    text-align: center;
}

/* ---- Active (center) card — top border amber, shadow, lift ---- */
.testi-col.testi-active .testimonial-card {
    border-top: 2px solid var(--primary);
    box-shadow: 0 10px 36px rgba(245, 166, 35, 0.18);
    transform: translateY(-4px);
}

/* Large open-quote — two big curly quotes, warm amber ---- */
.testi-quote {
    font-size: 100px;
    color: var(--primary);

    line-height: 0.7;
    /* margin-bottom: 18px; */
    font-family: Georgia, serif;
    opacity: 0.65;
    /* letter-spacing: -8px; */
    display: block;
    text-align: start;
}

/* Review text — inactive: 16px | active: 19px */
.testi-text {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: normal;
}

.testi-col.testi-active .testi-text {
    font-size: 19px;
}

/* Stars */
.testi-stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 8px;
}

/* Author name — inactive: 16px | active: 19px */
.testi-author {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.testi-col.testi-active .testi-author {
    font-size: 19px;
}

/* ---- Dot indicators ---- */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testi-dot {
    width: 28px;
    height: 8px;
    border-radius: 99px;
    background: var(--border);
    cursor: pointer;
    transition:
        background 0.3s,
        width 0.3s;
}

.testi-dot.active {
    background: var(--primary);
    width: 36px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .testi-col {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }

    .testi-bee-vector {
        width: 150px;
    }

    /* On tablet: center active card is at index 0, so activate first visible */
    .testi-slider-wrap {
        padding: 0 44px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0 40px;
    }

    .testi-heading {
        margin-bottom: 32px;
    }

    .testi-slider-wrap {
        padding: 0 40px;
        margin-bottom: 20px;
    }

    .testi-track-outer {
        padding: 12px 2px 16px;
    }

    .testimonial-card {
        padding: 24px 20px 22px;
    }

    .testi-quote {
        font-size: 72px;
    }

    .testi-text {
        font-size: 15px !important;
    }

    .testi-author {
        font-size: 14px !important;
    }

    .testi-prev-btn,
    .testi-next-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 48px 0 32px;
    }

    .testi-col {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testi-slider-wrap {
        padding: 0 36px;
    }

    .testi-track {
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px 18px 20px;
        border-radius: 16px;
    }

    .testi-quote {
        font-size: 60px;
    }

    .testi-text {
        font-size: 14px !important;
        margin-bottom: 14px;
    }

    .testi-stars {
        font-size: 16px;
    }

    .testi-author {
        font-size: 14px !important;
    }

    .testi-dots {
        margin-top: 20px;
    }

    .testi-dot {
        width: 22px;
        height: 7px;
    }

    .testi-dot.active {
        width: 30px;
    }

    .testi-prev-btn,
    .testi-next-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .testi-bee-vector {
        width: 100px;
        opacity: 0.7;
    }
}

/* ===== TESTIMONIALS SECTION END ===== */

/* ===== CTA / NEWSLETTER SECTION START ===== */

.cta-section {
    padding: 80px 0;
    background: #fff9f4;
}

/* Outer wrapper — badges ke liye position:relative, overflow:visible zaroori hai */
.cta-wrapper {
    position: relative;
    /* Top aur bottom mein space — badges card se bahar nikle */
    padding: 60px 0 60px;
}

/* Main rounded card — background image wala */
.cta-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image — full card cover kare */
.cta-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 0;
}

/* Center content — heading, form, subtitle */
.cta-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 70px 24px 80px;
    width: 100%;
}

.cta-inner h2 {
    font-family: var(--font-subheading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.25;
}

/* Email + Submit — inline pill form */
.cta-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px 6px 6px 22px;
    max-width: 520px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-form input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: transparent;
    padding: 8px 0;
}

.cta-form input::placeholder {
    color: #aaa;
}

.cta-form button {
    background: var(--secondary);
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.25s,
        transform 0.2s;
    flex-shrink: 0;
}

.cta-form button:hover {
    background: var(--secondary-hover);
    transform: translateY(-1px);
}

/* Subtitle text — form ke niche */
.cta-subtitle {
    font-family: var(--font-subheading);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ====================================
   TOP-LEFT BADGE — "100% Natural" + Bee
   card ke BAHAR wrapper pe absolute
   ==================================== */
.cta-badge-topleft {
    position: absolute;
    top: 9%;
    left: 15.7%;
    z-index: 10;
    background: #8dbef3;
    border-radius: 30px;
    padding: 16px 20px 16px 22px;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
    min-width: 100px;
}

.cta-badge-topleft .badge-text {
    font-family: "Lora", serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a3a6b;
    /* line-height: 1.25; */
    white-space: nowrap;
}

.cta-badge-topleft .badge-bee {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ====================================
   BOTTOM-RIGHT CARD — "View All Product" + Honey Dipper
   card ke BAHAR wrapper pe absolute
   ==================================== */
.cta-badge-bottomright {
    position: absolute;
    bottom: 8%;
    right: 16%;
    z-index: 10;
    background: #ffb606;
    border-radius: 30px;
    padding: 20px 16px 20px 26px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    min-width: 210px;
}

.cta-badge-bottomright:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 182, 6, 0.45);
}

.cta-badge-bottomright .view-text {
    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c1a00;
    line-height: 1.3;
    white-space: nowrap;
}

.cta-badge-bottomright .badge-honey {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ===== RESPONSIVE — Tablet ===== */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-wrapper {
        padding: 50px 0;
    }

    .cta-inner {
        padding: 60px 20px 70px;
    }

    .cta-badge-topleft {
        min-width: 155px;
        padding: 13px 16px 13px 18px;
        border-radius: 16px;
    }

    .cta-badge-topleft .badge-text {
        font-size: 17px;
    }

    .cta-badge-topleft .badge-bee {
        width: 54px;
        height: 54px;
    }

    .cta-badge-bottomright {
        min-width: 180px;
        padding: 16px 12px 16px 20px;
        border-radius: 16px;
    }

    .cta-badge-bottomright .view-text {
        font-size: 17px;
    }

    .cta-badge-bottomright .badge-honey {
        width: 58px;
        height: 58px;
    }
}

/* ===== RESPONSIVE — Mobile (≤575px) ===== */
/* Completely new mobile layout — card hidden, clean stacked design instead */
@media (max-width: 575px) {
    .cta-section {
        padding: 40px 0;
        background: #fff9f4;
    }

    /* Wrapper — no extra padding needed, no absolute badges */
    .cta-wrapper {
        padding: 0;
    }

    /* Hide floating badges — they don't fit mobile */
    .cta-badge-topleft,
    .cta-badge-bottomright {
        display: none !important;
    }

    /* Hide the background image on mobile — use CSS gradient instead */
    .cta-card-bg {
        display: none;
    }

    /* Card — solid warm gradient background, no overflow needed */
    .cta-card {
        border-radius: 24px;
        min-height: auto;
        background: linear-gradient(
            135deg,
            #c8601a 0%,
            #e07820 40%,
            #f5a623 100%
        );
        overflow: visible;
    }

    /* Add a subtle dark overlay via pseudo element for depth */
    .cta-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: rgba(0, 0, 0, 0.18);
        z-index: 1;
    }

    /* Inner content — stacked, generous padding */
    .cta-inner {
        position: relative;
        z-index: 2;
        padding: 44px 24px 48px;
    }

    /* Heading — white, readable size */
    .cta-inner h2 {
        font-size: 1.55rem;
        margin-bottom: 22px;
        line-height: 1.3;
    }

    /* Form: full width, white pill card style, stacked vertically */
    .cta-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 14px 14px 14px;
        gap: 10px;
        align-items: stretch;
        max-width: 100%;
        margin-bottom: 20px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    }

    /* Input — full row */
    .cta-form input {
        padding: 10px 12px;
        font-size: 15px;
        border-radius: 10px;
        border: 1.5px solid #eee;
    }

    /* Button — full width, orange pill */
    .cta-form button {
        width: 100%;
        border-radius: 30px;
        text-align: center;
        padding: 13px 0;
        font-size: 15px;
    }

    /* Subtitle — smaller, still white */
    .cta-subtitle {
        font-size: 13px;
        line-height: 1.65;
        opacity: 0.9;
    }
}

/* ===== CTA / NEWSLETTER SECTION END ===== */

/* ===== FOOTER START ===== */

/* --- Main footer wrapper — warm cream #FFEED7 background as per design --- */
.footer-new {
    background: #ffeed7;
    color: var(--text-dark);
    padding: 60px 0 0;
    border-top: 4px solid var(--accent);
}

/* --- Top section padding --- */
.footer-new-top {
    padding-bottom: 40px;
}

/* --- Logo — same size as navbar logo --- */
.footer-new-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

/* --- Description text below logo --- */
.footer-new-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #5c3d1e;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

/* --- "Follow Us On" row: label + icon buttons side by side --- */
.footer-new-social-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* "Follow Us On" bold label */
.footer-new-follow-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Icon buttons row */
.footer-new-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Each social icon — dark rounded square, matching image design */
.footer-new-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        transform 0.2s;
    flex-shrink: 0;
}

.footer-new-social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Social vector images — invert to white on dark bg --- */
.footer-new-social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* --- Section headings (Shop, Useful Links, Contact Info) --- */
.footer-new-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: 0;
    text-transform: none;
}

/* --- Navigation link lists --- */
.footer-new-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-new-list li {
    margin-bottom: 10px;
}

.footer-new-list li a,
.footer-new-list li span {
    font-family: var(--font-body);
    font-size: 14px;
    color: #5c3d1e;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-new-list li a:hover {
    color: var(--primary-dark);
}

/* --- Contact list — icon + text side by side --- */
.footer-new-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-new-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px !important;
}

.footer-new-list li span i {
    color: var(--primary);
}

/* Orange circle icon wrap */
.footer-new-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* background: #FF7202; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 15px;
    margin-top: 1px;
}

.footer-new-contact-item span:not(.footer-new-contact-icon),
.footer-new-contact-item a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #5c3d1e;
    line-height: 1.5;
    padding-top: 8px;
}

/* --- Horizontal divider between top and bottom --- */
.footer-new-divider {
    border: none;
    border-top: 1.5px solid rgba(92, 61, 30, 0.2);
    margin: 0;
}

/* --- Footer bottom row: copyright | tagline | policy links --- */
.footer-new-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
}

.footer-new-copy,
.footer-new-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    color: #5c3d1e;
    margin: 0;
}

/* Policy links row */
.footer-new-policy-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-new-policy-links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: #5c3d1e;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-new-policy-links a:hover {
    color: var(--primary-dark);
}

/* ===== FOOTER RESPONSIVE — TABLET (≤991px) ===== */
@media (max-width: 991px) {
    .footer-new {
        padding: 48px 0 0;
    }

    .footer-new-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 0;
    }

    .footer-new-tagline {
        text-align: left;
    }
}

/* ===== FOOTER RESPONSIVE — MOBILE (≤767px) ===== */
@media (max-width: 767px) {
    .footer-new {
        padding: 40px 0 0;
    }

    .footer-new-top {
        padding-bottom: 28px;
    }

    .footer-new-desc {
        max-width: 100%;
    }

    .footer-new-social-row {
        gap: 12px;
    }

    .footer-new-bottom {
        gap: 6px;
    }
}

/* ===== FOOTER RESPONSIVE — SMALL MOBILE (≤575px) ===== */
@media (max-width: 575px) {
    .footer-new {
        padding: 32px 0 0;
    }

    .footer-new-logo img {
        height: 60px;
    }

    .footer-new-heading {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-new-social-link {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .footer-new-social-link img {
        width: 18px;
        height: 18px;
    }

    .footer-new-policy-links {
        gap: 10px;
    }

    .footer-new-bottom {
        padding: 14px 0;
    }
}

/* ===== FOOTER END ===== */

/* ===== PRODUCTS SLIDER ===== */
.products-slider-wrap {
    position: relative;
}

.products-slider {
    overflow: hidden;
}

.products-row-slide {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.products-row-slide .product-col {
    min-width: calc(25% - 15px);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .products-row-slide .product-col {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .products-row-slide .product-col {
        min-width: calc(100% - 0px);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-dark);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-honey-right {
        height: 55%;
        max-height: 300px;
        opacity: 0.6;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 28px;
    }

    .hero-trust-bar {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .search-bar {
        width: 140px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    .hero-honey-right {
        display: none;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 44px;
    }
}

/* ===== SIGNATURE SECTION CSS START ===== */

/* Section background */
.sig-section {
    background: #fff9f4 !important;
}

/* Slider wrap — needs relative for arrow positioning */
.sig-slider-wrap {
    position: relative;
    padding: 0 54px;
    /* space for both arrows */
}

/* Shared arrow style for sig section */
.sig-prev-btn,
.sig-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e8d8b0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.sig-prev-btn {
    left: 0;
}

.sig-next-btn {
    right: 0;
}

/* Disabled state — arrow faint jab slide nahi ho sakta */
.sig-prev-btn:disabled,
.sig-next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.sig-prev-btn:hover:not(:disabled),
.sig-next-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Card — white background, no border */
.sig-card {
    /* background: #ffffff !important; */
    border: none !important;
    border-radius: 16px !important;
    padding: 0 0 18px 0 !important;
    text-align: left;
    align-items: flex-start;
    overflow: hidden;
}

.sig-card:hover {
    border: none !important;
}

/* Product image area — only this gets the warm bg color */
.sig-img-wrap {
    width: 100%;
    height: 350px;
    background: #fff9d1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.sig-img-wrap img {
    max-height: 250px;
    width: auto;
    object-fit: cover;
    transition: transform 0.3s;
}

.sig-card:hover .sig-img-wrap img {
    transform: scale(1.06);
}

/* Product name — left aligned */
.sig-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    /* padding: 0 16px; */
}

/* Weight / subtitle line — left aligned */
.sig-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
    padding: 0 16px;
}

/* Add to Cart button — orange with white text */
.sig-card .btn-add-cart {
    background: var(--secondary) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: block;
    transition: all 0.25s;
}

.sig-card .btn-add-cart:hover {
    background: var(--secondary-hover) !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Responsive — tablet */
@media (max-width: 991px) {
    .sig-slider-wrap {
        padding: 0 44px;
    }
}

/* Responsive — mobile */
@media (max-width: 575px) {
    .sig-slider-wrap {
        padding: 0 36px;
    }

    .sig-prev-btn,
    .sig-next-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .sig-img-wrap {
        height: 160px;
    }

    .sig-img-wrap img {
        max-height: 145px;
    }
}

/* ===== SIGNATURE SECTION CSS END ===== */

/* ===== KIWI SECTION CSS START ===== */

/* White background for the whole section */
.kiwi-section {
    background: #ffffff !important;
}

/* Slider wrap with space for side arrows */
.kiwi-slider-wrap {
    position: relative;
    padding: 0 54px;
    margin-bottom: 28px;
}

/* Left & right arrows absolute positioned */
.kiwi-prev-btn,
.kiwi-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d6e8a0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.kiwi-prev-btn {
    left: 0;
}

.kiwi-next-btn {
    right: 0;
}

.kiwi-prev-btn:disabled,
.kiwi-next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.kiwi-prev-btn:hover:not(:disabled),
.kiwi-next-btn:hover:not(:disabled) {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
}

/* Kiwi card — white bg, only image area gets #FBFFCD */
.kiwi-card {
    /* background: #ffffff !important; */
    border: none !important;
    border-radius: 16px !important;
    padding: 0 0 18px 0 !important;
    text-align: left;
    align-items: flex-start;
    overflow: hidden;
}

.kiwi-card:hover {
    /* box-shadow: 0 10px 28px rgba(100, 160, 0, 0.15) !important; */
    border: none !important;
    /* transform: translateY(-5px); */
}

/* Kiwi product image wrap — only this gets the #FBFFCD bg */
.kiwi-img-wrap {
    width: 100%;
    height: 350px;
    background: #fbffcd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.kiwi-img-wrap img {
    max-height: 250px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.kiwi-card:hover .kiwi-img-wrap img {
    transform: scale(1.06);
}

/* Product name — left aligned */
.kiwi-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    /* padding: 0 16px; */
}

/* Weight + Price on same line — space-between */
.kiwi-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
    /* padding: 0 16px; */
    gap: 6px;
}

.kiwi-weight {
    font-size: 13px;
    color: var(--text-light);

    text-align: left;
}

.kiwi-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Orange Add To Cart button */
.kiwi-btn {
    background: var(--secondary) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    /* width: calc(100% - 32px); */
    /* margin: 0 16px; */
    display: block;
    transition: all 0.25s;
}

.kiwi-btn:hover {
    background: var(--secondary-hover) !important;
    transform: translateY(-1px);
}

/* Dot indicators */
.kiwi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.kiwi-dot {
    width: 24px;
    height: 6px;
    border-radius: 4px;
    background: #e0e0e0;
    transition:
        background 0.3s,
        width 0.3s;
    display: inline-block;
}

.kiwi-dot.active {
    background: #f5a623;
    width: 32px;
}

/* Responsive */
@media (max-width: 991px) {
    .kiwi-slider-wrap {
        padding: 0 44px;
    }
}

@media (max-width: 575px) {
    .kiwi-slider-wrap {
        padding: 0 36px;
    }

    .kiwi-prev-btn,
    .kiwi-next-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .kiwi-img-wrap {
        height: 160px;
    }
}

/* ===== KIWI SECTION CSS END ===== */

/* ===== EMPTY PRODUCTS STATE START ===== */

.empty-products-state {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    padding: 18px 0 34px;
}

.empty-products-panel {
    width: min(680px, 100%);
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 12px 34px rgba(200, 140, 0, 0.1);
}

.empty-products-icon {
    width: 118px;
    height: 118px;
    border-radius: 26px;
    background: #fffbd1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.empty-products-kiwi .empty-products-icon {
    background: #fbffcd;
}

.empty-products-icon img {
    max-width: 82px;
    max-height: 82px;
    object-fit: contain;
}

.empty-products-label {
    display: inline-block;
    font-family: var(--font-subheading);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    background: #fff7d4;
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.empty-products-panel h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-products-panel p {
    font-family: var(--font-subheading);
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 22px;
}

.empty-products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #ffffff !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 999px;
    transition: all 0.25s;
}

.empty-products-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-1px);
}

@media (max-width: 575px) {
    .empty-products-panel {
        padding: 28px 18px;
    }

    .empty-products-panel h3 {
        font-size: 22px;
    }

    .empty-products-panel p {
        font-size: 14px;
    }
}

/* ===== EMPTY PRODUCTS STATE END ===== */

/* ===== BEST SELLING PRODUCTS SECTION START ===== */

/* Section background — warm cream matching the design */
.bestsell-section {
    background: #fff9f4;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* Bee + dashed-circle decorative vector — top-right (mirrored from why-choose left vector) */
.bestsell-bee-vector {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 200px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

/* Slider wrap — needs relative for arrow positioning, space for side arrows */
.bestsell-slider-wrap {
    position: relative;
    padding: 0 54px;
    margin-bottom: 28px;
}

/* Left & right arrows — absolute positioned on outer edges */
.bestsell-prev-btn,
.bestsell-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e8d8b0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.bestsell-prev-btn {
    left: 0;
}

.bestsell-next-btn {
    right: 0;
}

/* Disabled state — arrow faded when slide can't move further */
.bestsell-prev-btn:disabled,
.bestsell-next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.bestsell-prev-btn:hover:not(:disabled),
.bestsell-next-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Card — white bg, no outer border, overflow hidden for rounded img */
.bestsell-card {
    border: none !important;
    border-radius: 16px !important;
    padding: 0 !important;
    text-align: left;
    align-items: flex-start;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

/* Product image area — cream warm bg, fixed height */
.bestsell-img-wrap {
    width: 100%;
    height: 350px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

.bestsell-img-wrap img {
    max-height: 250px;
    width: auto;
    object-fit: cover;
    transition: transform 0.3s;
}

.bestsell-card:hover .bestsell-img-wrap img {
    transform: scale(1.06);
}

/* Card body — padding for text + button below image */
.bestsell-card-body {
    padding: 14px 0px 18px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
}

/* Product name — Lora heading font */
.bestsell-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

/* Weight + Price on same line — space-between */
.bestsell-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
    gap: 6px;
}

.bestsell-weight {
    font-size: 13px;
    color: var(--text-light);
    font-family: var(--font-subheading);
}

.bestsell-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-subheading);
    white-space: nowrap;
}

/* Add To Cart button — orange, full width, rounded */
.bestsell-btn {
    background: var(--secondary) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    width: 100%;
    display: block;
    transition: all 0.25s;
}

.bestsell-btn:hover {
    background: var(--secondary-hover) !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Dot indicators — same style as kiwi dots */
.bestsell-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.bestsell-dot {
    width: 24px;
    height: 6px;
    border-radius: 4px;
    background: #e0e0e0;
    transition:
        background 0.3s,
        width 0.3s;
    display: inline-block;
}

.bestsell-dot.active {
    background: #f5a623;
    width: 32px;
}

/* ---- Responsive — Tablet ---- */
@media (max-width: 991px) {
    .bestsell-slider-wrap {
        padding: 0 44px;
    }

    .bestsell-bee-vector {
        height: 160px;
    }
}

/* ---- Responsive — Mobile ---- */
@media (max-width: 575px) {
    .bestsell-section {
        padding: 50px 0;
    }

    .bestsell-slider-wrap {
        padding: 0 36px;
    }

    .bestsell-prev-btn,
    .bestsell-next-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .bestsell-img-wrap {
        height: 160px;
    }

    .bestsell-img-wrap img {
        max-height: 140px;
    }

    .bestsell-bee-vector {
        height: 120px;
    }
}

/* ===== BEST SELLING PRODUCTS SECTION END ===== */

/* ===== WHY MANUKA HONEY SECTION START ===== */

.why-manuka-section {
    background: #ffffff;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Left decorative bee + dashed-circle vector — top-left */
.why-manuka-bee-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 200px;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

/* Section heading spacing */
.why-manuka-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* ---- Three-column layout ---- */
.why-manuka-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

/* Left & right feature columns — equal width */
.why-manuka-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Center bottle column — fixed width */
.why-manuka-center {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ---- Bottle image wrap ---- */
.wm-bottle-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft cream glow circle behind bottle */
.wm-bottle-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #fef3d8;
    z-index: 0;
}

.wm-bottle-img {
    position: relative;
    z-index: 1;
    max-height: 460px;
    width: auto;
    object-fit: cover;
    filter: drop-shadow(0 16px 40px rgba(200, 120, 0, 0.18));
}

/* ---- Individual feature item ---- */
.wm-feature {
    display: flex;
    align-items: center;
    gap: 0;
}

/* LEFT side features: text on left, line points right toward bottle */
.wm-feature-left {
    flex-direction: row;
    justify-content: flex-end;
}

/* RIGHT side features: line points left toward bottle, text on right */
.wm-feature-right {
    flex-direction: row;
    justify-content: flex-start;
}

/* ---- Feature text block ---- */
.wm-text {
    max-width: 200px;
}

.wm-text-right {
    text-align: right;
}

.wm-text-left {
    text-align: left;
}

/* h6 title — Lora 24px #533B00 */
.wm-title {
    font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 400;
    color: #533b00;
    margin-bottom: 6px;
    /* line-height: 1.3; */
}

/* p desc — Manrope 16px */
.wm-desc {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: var(--text-mid);
    /* line-height: 1.6; */
    margin: 0;
}

/* ---- Connector SVG lines — elbow/chevron shape matching reference image ---- */
/*
  Each line is an inline SVG with a polyline:
  - Left side (orange #F99100): horizontal segment then angled toward bottle
    Top:    flat right → diagonal DOWN-right to bottle
    Middle: flat right → slight diagonal UP-right to bottle
    Bottom: flat right → steep diagonal UP-right to bottle
  - Right side (dark #340000): mirrored — angled FROM bottle then horizontal
*/

/* Base SVG line sizing — flex-shrink so it bridges text → bottle */
.wm-svg-line {
    flex-shrink: 0;
    overflow: visible;
}

/* LEFT SVGs — sit between text (right) and bottle (left) */
.wm-svg-left {
    width: 110px;
    margin-left: 12px;
}

/* Height per line shape */
.wm-svg-left-top {
    height: 40px;
    align-self: flex-start;
    margin-top: 8px;
}

.wm-svg-left-mid {
    height: 20px;
    align-self: center;
}

.wm-svg-left-bot {
    height: 50px;
    align-self: flex-end;
    margin-bottom: 8px;
}

/* RIGHT SVGs — sit between bottle (right) and text (left) */
.wm-svg-right {
    width: 110px;
    margin-right: 12px;
}

.wm-svg-right-top {
    height: 40px;
    align-self: flex-start;
    margin-top: 8px;
}

.wm-svg-right-mid {
    height: 20px;
    align-self: center;
}

.wm-svg-right-bot {
    height: 50px;
    align-self: flex-end;
    margin-bottom: 8px;
}

/* ---- Responsive — Tablet (≤991px) ---- */
@media (max-width: 991px) {
    .why-manuka-layout {
        flex-direction: column;
        gap: 48px;
    }

    .why-manuka-col {
        flex: unset;
        width: 100%;
        gap: 36px;
    }

    /* On tablet/mobile, stack features vertically with no lines */
    .wm-feature-left,
    .wm-feature-right {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 16px;
    }

    .wm-svg-line {
        display: none;
    }

    .wm-text-right,
    .wm-text-left {
        text-align: left;
    }

    .wm-text {
        max-width: 100%;
    }

    .why-manuka-center {
        flex: unset;
        width: 100%;
        order: -1;
        /* bottle on top on mobile */
    }

    .wm-bottle-img {
        max-height: 260px;
    }

    .wm-bottle-glow {
        width: 220px;
        height: 220px;
    }

    .why-manuka-bee-vector {
        height: 150px;
    }
}

/* ---- Responsive — Mobile (≤575px) ---- */
@media (max-width: 575px) {
    .why-manuka-section {
        padding: 60px 0 70px;
    }

    .why-manuka-heading {
        margin-bottom: 40px;
    }

    .wm-title {
        font-size: 20px;
    }

    .wm-desc {
        font-size: 15px;
    }

    .wm-bottle-img {
        max-height: 220px;
    }

    .why-manuka-bee-vector {
        height: 110px;
    }
}

/* ===== WHY MANUKA HONEY SECTION END ===== */

/* ===== NEWEST COLLECTION SECTION START ===== */
.newest-section {
    background: #fff9f4;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* Bee + dashed-circle decorative vector — top-right (same as best-selling) */
.newest-bee-vector {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 200px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

/* Slider wrap — needs relative for arrow positioning, space for side arrows */
.newest-slider-wrap {
    position: relative;
    padding: 0 54px;
    margin-bottom: 28px;
}

/* Left & right arrows — absolute positioned on outer edges */
.newest-prev-btn,
.newest-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e8d8b0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.newest-prev-btn {
    left: 0;
}

.newest-next-btn {
    right: 0;
}

/* Disabled state — arrow faded when slide can't move further */
.newest-prev-btn:disabled,
.newest-next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.newest-prev-btn:hover:not(:disabled),
.newest-next-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Card — white bg, no outer border, overflow hidden for rounded img */
.newest-card {
    border: none !important;
    border-radius: 16px !important;
    padding: 0 !important;
    text-align: left;
    align-items: flex-start;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

/* Product image area — warm bg, fixed height */
.newest-img-wrap {
    width: 100%;
    height: 350px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newest-img-wrap img {
    max-height: 250px;
    width: auto;
    object-fit: cover;
    transition: transform 0.3s;
}

.newest-card:hover .newest-img-wrap img {
    transform: scale(1.06);
}

/* Card body — padding for text + button below image */
.newest-card-body {
    padding: 14px 0px 18px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
}

/* Product name — Lora heading font */
.newest-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

/* Weight + Price on same line — space-between */
.newest-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
    gap: 6px;
}

.newest-weight {
    font-size: 13px;
    color: var(--text-light);
    font-family: var(--font-subheading);
}

.newest-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-subheading);
    white-space: nowrap;
}

/* Add To Cart button — orange, full width, rounded */
.newest-btn {
    background: var(--secondary) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    width: 100%;
    display: block;
    transition: all 0.25s;
}

.newest-btn:hover {
    background: var(--secondary-hover) !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Dot indicators — same style as bestsell dots */
.newest-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.newest-dot {
    width: 24px;
    height: 6px;
    border-radius: 4px;
    background: #e0e0e0;
    transition:
        background 0.3s,
        width 0.3s;
    display: inline-block;
    cursor: pointer;
}

.newest-dot.active {
    background: var(--primary);
    width: 32px;
}

/* ===== RESPONSIVE: TABLET & DESKTOP ===== */
@media (max-width: 1200px) {
    .newest-slider-wrap {
        padding: 0 44px;
    }

    .newest-prev-btn,
    .newest-next-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .newest-img-wrap {
        height: 320px;
    }

    .newest-img-wrap img {
        max-height: 220px;
    }
}

@media (max-width: 768px) {
    .newest-section {
        padding: 50px 0;
    }

    .newest-slider-wrap {
        padding: 0 36px;
        margin-bottom: 24px;
    }

    .newest-prev-btn,
    .newest-next-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .newest-img-wrap {
        height: 300px;
    }

    .newest-img-wrap img {
        max-height: 200px;
    }

    .newest-card h5 {
        font-size: 0.95rem;
    }

    .newest-weight {
        font-size: 12px;
    }

    .newest-price {
        font-size: 0.95rem;
    }

    .newest-btn {
        padding: 10px 0;
        font-size: 13px;
    }

    .newest-bee-vector {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .newest-section {
        padding: 40px 0;
    }

    .newest-slider-wrap {
        padding: 0 28px;
        margin-bottom: 20px;
    }

    .newest-prev-btn,
    .newest-next-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .newest-img-wrap {
        height: 280px;
    }

    .newest-img-wrap img {
        max-height: 180px;
    }

    .newest-card h5 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .newest-weight {
        font-size: 11px;
    }

    .newest-price {
        font-size: 0.9rem;
    }

    .newest-meta {
        margin-bottom: 12px;
    }

    .newest-btn {
        padding: 9px 0;
        font-size: 12px;
    }

    .newest-dot {
        width: 20px;
        height: 5px;
    }

    .newest-dot.active {
        width: 28px;
    }

    .newest-bee-vector {
        height: 110px;
        opacity: 0.8;
    }
}

/* ===== NEWEST COLLECTION SECTION END ===== */

/* ===== GLOBAL MOBILE UTILITY ===== */
/* Hide all decorative bee/honey vector images on mobile to avoid clutter */
@media (max-width: 575px) {
    .why-bee-vector,
    .bestsell-bee-vector,
    .why-manuka-bee-vector,
    .newest-bee-vector,
    .testi-bee-vector {
        display: none !important;
    }
}

/* ===== GLOBAL MOBILE UTILITY END ===== */
