/* ═══════════════════════════════════════════
       RESET & VARIABLES
    ═══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", sans-serif;
    color: #573e19;

    background-color: #ede8df;
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: "Noto Sans", sans-serif;
    cursor: pointer;
}

/* ═══════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════ */
.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2d5a1b;
    color: #ffffff;
    padding: 11px 26px;
    border: none;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: background .2s, transform .15s;
}

.btn-green:hover {
    background: #3d7a1a;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #573e19;

    padding: 11px 26px;
    border: 1.5px solid #bbb;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 600;
    transition: border-color .2s, color .2s, transform .15s;
}

.btn-outline:hover {
    border-color: #3d7a1a;
    color: #3d7a1a;
    transform: translateY(-1px);
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #d97320;
    color: #ffffff;
    padding: 10px 22px;
    border: none;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 700;
    transition: background .2s, transform .15s;
}

.btn-orange:hover {
    background: #d97320;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 18px !important;
    font-size: 12.5px !important;
}

/* ═══════════════════════════════════════════
       HEADER / NAV
    ═══════════════════════════════════════════ */
.header {
    background: rgba(253, 249, 242, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 60px;
    padding-left: 60px !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-one {
    height: auto;
}

.logo-two {
    height: 100%;
}

.logo .logo-one img,
.logo .logo-two img {
    width: 100%;
    height: 55px;
}

.logo-top {
    font-size: 10px;
    font-weight: 600;
    color: #6b7460;

    letter-spacing: .6px;
    text-transform: uppercase;
}

.logo-main {
    font-size: 15.5px;
    font-weight: 800;
    color: #2d5a1b;
    letter-spacing: .2px;
}

.logo-main em {
    color: #427612;
    font-style: normal;
}

.logo-sub {
    font-size: 9px;
    color: #6b7460;

    letter-spacing: .8px;
    text-transform: uppercase;
}

.menu {
    display: flex;
    gap: 34px;
}

.menu li {
    font-size: 14px;
    font-weight: 600;
    color: #573e19;

    cursor: pointer;
    padding-bottom: 3px;
    transition: color .2s;
    position: relative;
}

.menu li:hover {
    color: #3d7a1a;
}

.menu li.active {
    color: #3d7a1a;
}

.menu li.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3d7a1a;
    border-radius: 2px;
}

.toggle-btn {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background .18s;
}

.toggle-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.mobile-menu {
    display: none;
    background: #fdf9f2;
    border-bottom: 1px solid #eee;
    /* Remove any position:absolute if present */
    position: absolute;
    width: 100%;
}

.mobile-menu.active {
    display: block;
}


.mobile-menu ul {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu li {
    font-size: 16px;
    font-weight: 600;
    color: #573e19;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: background .18s;
}

.nav-icon:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
.hero {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff54; /* darkness level */
    z-index: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 64px 44px 64px 7%;
    z-index: 9;
}

.hero-text {
    width: 100%;
}

.hero-text h1 {
    font-size: 44px;
    line-height: 1.18;
    color: #573e19;

}

.hero-text h1 .hi {
    color: #427612;
}

.hero-tagline {
    margin: 18px 0 30px;
    font-size: 13px;
    color: #2b2112;

    letter-spacing: .2px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-weight: 500;
}

.hero-tagline .sep {
    color: #bbb;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-right {
    overflow: hidden;
    height: 500px;
    position: absolute;
    right: 0;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback gradient if image fails */
.hero-right-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8e49a 0%, #8dc840 50%, #5a9e28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

/* ═══════════════════════════════════════════
       TRUST BAR
    ═══════════════════════════════════════════ */
.trust {
    padding: 22px 0;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    top: -80px;
    background: linear-gradient(to right, rgb(252 237 222) 0%, rgb(255 247 239 / 58%) 50%, rgb(254 242 230 / 12%) 100%)
}

.inner-padding {
    padding: 0 60px;
}

.trust-grid {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 56px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #573e19;

}

.trust-icon {
    width: 36px;
    height: 36px;
    background: #eef7e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
       SECTION HEADINGS
    ═══════════════════════════════════════════ */
.section-head {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 22px;
    font-weight: 800;
    color: #573e19;
    margin-bottom: 28px;
}

.section-head::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: #d8d0c4;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
       CATEGORIES
    ═══════════════════════════════════════════ */
.categories {
    padding: 0 0 60px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.cat-card {
    background: #fdf9f2;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

    padding-bottom: 20px;
}

.cat-thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4e8b8, #a8cf7a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 14px;
}

.cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card h3 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #573e19;
}

.owl-nav {
    position: absolute;
    top: -61px;
    right: 0;
    display: flex !important;
    gap: 8px;
    background: #faf4ec;
    padding: 0 5px;
    border-radius: 8px;
}

.owl-prev,
.owl-next {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    color: #6a5c47 !important;
    transition: all .25s ease;
    padding-bottom: 2px;
}



.owl-nav button {
    border: none !important;
    padding: 0 !important;
}

.categories .section-head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.categories .section-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d8cbb6;
}

/* ═══════════════════════════════════════════
       ABOUT + HEALTH BENEFITS
    ═══════════════════════════════════════════ */
.about {
    border-top: 1.75px dashed #e6d6c5;
    border-bottom: 1.75px dashed #e6d6c5;
    padding: 70px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 26px;
    color: #3c7a2c;
    padding: 8px 26px;
    background: #fdf9f2;
    border-radius: 6px;
    position: relative;
}

.about-tag {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.about-tag::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    height: 2px;
    width: calc(100% + 250px);
    background: #d9cbb4;
    margin-left: 20px;
    transform: translateY(-50%);
}

.about-left h2 {
    font-size: 34px;
    font-weight: 800;
    color: #573e19;

    line-height: 1.3;
    margin-bottom: 14px;
    margin-top: 20px;
}

.about-left p {
    font-size: 14px;
    color: #2b2112;

    line-height: 1.85;
    margin-bottom: 26px;
}

.about-right h3 {
    font-size: 32px;
    font-weight: 800;
    color: #573e19;

    margin-bottom: 22px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-item {
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    color: #2b2112;

    line-height: 1.4;
}

.benefit-icon {
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

.benefit-icon img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}




/* ============================================================
   PRODUCT GRID & CARD
   ============================================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}


.product-card {
    background: #fdf9f2;
    border: 1px solid #d8cbb6;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(45, 90, 27, .12);
}

/* ───────────────── PRODUCT IMAGE ───────────────── */

.product-card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 0.75;
    overflow: hidden;
    background: #ede8df;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.product-card:hover .product-card-img-wrap img {
    transform: scale(1.06);
}

/* ───────────────── BADGES ───────────────── */

.card-badge-offer,
.card-badge-out {
    position: absolute;
    top: 9px;
    left: 9px;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    font-family: "Noto Sans", sans-serif;
}

.card-badge-offer {
    background: #2d5a1b;
    color: #fff;
}

.card-badge-out {
    background: #fee2e2;
    color: #b91c1c;
}

/* ───────────────── WISHLIST BUTTON ───────────────── */

.card-wishlist-btn {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 30px;
    height: 30px;
    background: rgba(253, 249, 242, .88);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .2s;
    z-index: 2;
}

.card-wishlist-btn:hover {
    background: #fdf9f2;
}

.card-wishlist-btn svg {
    color: #2d5a1b;
}

.card-wishlist-btn.wished svg {
    fill: #2d5a1b;
}

/* ───────────────── PRODUCT CONTENT ───────────────── */

.product-card-body {
    padding: 12px 13px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}



.product-card-sub {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #888;
    font-family: "Noto Sans", sans-serif;
}

.product-card-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #573e19;
    line-height: 1.4;
    font-family: "Noto Sans", sans-serif;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-card-name:hover {
    color: #2d5a1b;
}

.product-card-weight {
    font-size: 12px;
    color: #888;
    font-family: "Noto Sans", sans-serif;
}

/* ───────────────── PRICE ───────────────── */

.product-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 2px;
}

.price-offer {
    font-size: 15px;
    font-weight: 800;
    color: #2d5a1b;
    font-family: "Noto Sans", sans-serif;
}

.price-original {
    font-size: 12.5px;
    color: #bbb;
    text-decoration: line-through;
    font-family: "Noto Sans", sans-serif;
}

/* ───────────────── VIEW PRODUCT BUTTON ───────────────── */

.product-card-add {
    margin-top: auto;
    width: 100%;
    display: block;
    text-align: center;
    padding: 9px 0;
    background: #2d5a1b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.product-card-add:hover {
    background: #3d7a1a;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
       REVIEWS + FOR YOUR LITTLE ONES
    ═══════════════════════════════════════════ */
.rev-baby {
    padding: 60px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}



.customer-review-card {
    display: flex;
    gap: 24px;
}

.review-cat-card {
    background: #fdf9f2;
    border-radius: 12px;
    overflow: visible;
    /* allow button to overflow bottom */
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform .25s, box-shadow .25s;
    flex: 1;
    position: relative;
    padding-bottom: 32px;
    
    overflow-y: visible !important;
    /* space for half-outside button */
}

.review-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* ── Image: full width, rounded top corners only ── */
.review-cat-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.review-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .35s ease;
    display: block;
}

.review-cat-card:hover .review-cat-thumb img {
    transform: scale(1.05);
}

/* ── Body below image ── */
.review-card-body {
    padding: 16px 4px 0;
}

/* ── Quote icon + text row ── */
.review-card-text {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
    margin-bottom: 6px;
}

.review-quote-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #f5a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.review-quote-icon svg {
    width: 10px;
    height: 10px;
    fill: #fff;
}

.review-card-body p {
    font-size: 13.5px;
    font-weight: 500;
    color: #573e19;
    line-height: 1.55;
    font-family: "Noto Sans", sans-serif;
    margin: 0;
}

/* ── Half-outside button ── */
.review-btn-wrap {
    position: absolute;
    bottom: -20px;
    /* half of button height (40px / 2) */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}



.review-btn-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2d5a1b;
    color: #ffffff;
    padding: 10px 28px;
    border: none;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .2px;
    font-family: "Noto Sans", sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(45, 90, 27, 0.35);
}

.review-btn-green:hover {
    background: #3d7a1a;
    transform: translateY(-1px);
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px 0;
    gap: 2px;
}

.review-author-name {
    font-size: 13px;
    font-weight: 700;
    color: #2d5a1b;
    font-family: "Noto Sans", sans-serif;
}

.review-author-place {
    font-size: 11.5px;
    color: #888;
    font-family: "Noto Sans", sans-serif;
}

/* responsive */


/* 
.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8e6a0, #85c440);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-body {
    flex: 1;
}

.review-stars {
    color: #f5a623;
    font-size: 12px;
    margin-bottom: 5px;
}

.review-text {
    font-size: 13px;
    color: #2b2112;

    line-height: 1.65;
    margin-bottom: 10px;
    font-style: italic;
} */

.baby-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #573e19;

    margin-bottom: 16px;
}


.baby-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.baby-product-card {
    background: #fdf9f2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid #e8ddd0;
}

.baby-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.baby-product-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5cc, #b8e06a);
}

.baby-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}

.baby-product-card:hover .baby-product-thumb img {
    transform: scale(1.06);
}

.baby-product-info {
    padding: 12px 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.baby-product-info h4 {
    font-family: "Noto Sans", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #573e19;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* ── Equal height: baby cards stretch to match review cards ── */
.rev-baby .two-col {
    align-items: stretch;
}

.rev-baby .two-col>div {
    display: flex;
    flex-direction: column;
}

/* Baby product grid fills available height */
.baby-product-grid {
    flex: 1;
    align-content: stretch;
}

.baby-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.baby-product-thumb {
    flex: 1;
    /* image expands to fill remaining height */
    height: auto;
    min-height: 160px;
}

.baby-product-info {
    flex-shrink: 0;
    /* name + button always same fixed size */
}

/* 
.baby-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.baby-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

    transition: transform .2s;
}

.baby-card:hover {
    transform: translateX(4px);
}

.baby-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8f5cc, #b8e06a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    overflow: hidden;
}

.baby-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.baby-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
} */

/* ═══════════════════════════════════════════
       BLOG
    ═══════════════════════════════════════════ */
.blog {
    /* background-color: #ede8df; */
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    border-top: 1.75px dashed #e6d6c5;
    line-height: 1.6;
    overflow-x: hidden;

    padding: 60px 0;
}

.blog-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 34px;
    color: #573e19;

}

.blog-title em {
    color: #427612;
    font-style: normal;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fef7e9;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

    transition: transform .25s, box-shadow .25s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);

}

.blog-thumb {
    width: 100%;
    height: 175px;
    background: linear-gradient(135deg, #d4e8b8, #8dc44e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 18px;
}

.blog-body h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-bar {
    width: 34px;
    height: 3px;
    background: #427612;
    border-radius: 2px;
    margin-bottom: 14px;
}

/* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
.footer {
    background: #263d18;
    color: rgba(255, 255, 255, 0.82);
    padding: 52px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 44px;
    margin-bottom: 38px;
}

.footer-brand h3 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.85;
    opacity: .75;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
}

.footer-col li,
.footer-col p {
    font-size: 13px;
    margin-bottom: 9px;
    opacity: .72;
    cursor: pointer;
    transition: opacity .2s;
}

.footer-col li:hover,
.footer-col p:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    text-align: center;
    font-size: 12.5px;
    opacity: .5;
}

/* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
@media (min-width: 1450px) {
    .hero {
        grid-template-columns: 46% 54%;
        min-height: 90vh;
    }

    .hero-right {
        min-height: 100%;
    }

    .hero-text h1 {
        font-size: 60px;
    }

    .hero-tagline {
        font-size: 18px;
    }
}

@media (max-width: 1800px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:1400px) {
    body {
        background-size: cover;
    }

    .cat-thumb {
        width: 100%;
        height: 150px;
    }

    .review-cat-thumb {
        width: 100%;
        height: 150px;
    }
}



@media(min-width:1251px) {
    .owl-nav {
        display: none !important;
    }
}

@media(max-width:1250px) {

    .cat-grid {
        display: block;
    }

    .owl-nav {
        display: flex !important;
    }

    .about-tag::after {
        width: calc(100% + 150px);
    }
}

@media (max-width: 1024px) {
    .nav {
        padding: 0 25px !important;
        /* padding-left: 25px !important; */
    }

    .logo .logo-one img,
    .logo .logo-two img {
        height: 40px;
    }

    .menu {
        display: none;
    }

    .toggle-btn {
        display: flex !important;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-right {
        right: -20%;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-tag::after {
        width: calc(100% + 50px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-product-grid>*:nth-last-child(-n + 2):nth-child(3n + 1),
    .home-product-grid>*:nth-last-child(-n + 2):nth-child(3n + 2) {
        display: none;
    }
}

@media (max-width: 860px) {

    .about-grid,
    .two-col {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero {
        grid-template-columns: 60% 40%;
    }

    .hero-right {
        right: -50%;
    }

    .hero-left {
        padding: 48px 5%;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .trust-grid {
        flex-wrap: wrap;
        gap: 22px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .baby-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .home-product-grid>*:nth-last-child(-n + 2):nth-child(3n + 1),
    .home-product-grid>*:nth-last-child(-n + 2):nth-child(3n + 2) {
        display: none;
    }
}

@media (max-width: 675px) {

    .hero {
        grid-template-columns: 75% 25%;
    }

    .hero-right {
        right: -72%;
    }
}

@media (max-width: 575px) {

    .hero {
        grid-template-columns: 75% 25%;
    }

    .hero-right {
        right: -95%;
    }

    .about-tag::after {
        width: 100%;
    }

    .inner-padding {
        padding: 0 20px;
    }


}

@media (max-width: 560px) {
    .hero {
        grid-template-columns: 1fr;
    }

    /* .hero-right {
        display: none;
    } */

    .hero-overlay{
        display: block;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        gap: 10px;
    }

    .benefits-grid .benefit-icon {
        height: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

}

@media (max-width: 525px) {

    .about-tag::after {
        width: calc(100% - 50px);
    }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-product-grid > *:nth-child(n + 13) {
    display: none;
  }

   .baby-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .baby-product-thumb {
        height: 120px;
    }
}


@media (max-width: 425px) {
    .logo-two {
        display: none;
    }
}


@media (max-width: 400px){
    .page-title{
        font-size: 30px !important;
    }
}


@media (max-width: 350px) {

    .about-tag::after {
        width: calc(100% - 80px);
    }
}


.page-section {
    /* background-color: #ede8df;
  background-image: url('../images/bg.png');
  background-repeat: no-repeat;
  background-size: 100%; */
    min-height: 100vh;
    overflow-x: hidden;
}

.page-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #573e19;
    line-height: 1.2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 6px;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6px 40px 24px;
    font-size: 13px;
    color: #888;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #2d5a1b;
}

.breadcrumb span {
    margin: 0 5px;
}






/* ── Empty State ── */
.empty-details {
    background: #fdf9f2;
    padding: 60px 40px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #d8cbb6;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    max-width: 500px;
    margin: 40px auto 80px;
}

.empty-details img {
    width: 170px;
    margin: 0 auto 25px;
    display: block;
    opacity: 0.85;
}

.empty-details h2 {
    font-family: "Noto Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #573e19;
    margin-bottom: 12px;
}

.empty-details p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.empty-details button {
    background: #2d5a1b;
    color: #fff;
    border: none;
    padding: 12px 34px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: "Noto Sans", sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.empty-details button:hover {
    background: #3d7a1a;
    transform: translateY(-1px);
}



/* Make owl items stretch same height */
.customer-review-card .owl-stage {
    display: flex;
}

.customer-review-card .owl-item {
    display: flex;
}

/* Make each card fill full height */
.review-cat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Review body expands to push button down */
.review-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Text takes available space */
.review-card-text {
    flex: 1;
}


.owl-carousel .owl-item {
    margin-bottom: 25px;
}