/* Dhanyani home + shared product cards */

.page-home {
    background:
        radial-gradient(ellipse 60% 35% at 100% 0%, rgba(102, 187, 106, 0.12), transparent 55%),
        linear-gradient(180deg, #f4f9f4 0%, #fafcf9 50%, #eef6ee 100%);
}
.page-home .p-eyebrow {
    display: inline-flex; align-items: center; gap: 0.35rem;
    color: var(--primary); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}

.home-head {
    display: flex; flex-wrap: wrap; align-items: flex-end;
    justify-content: space-between; gap: 1rem;
    margin-bottom: 1.5rem;
}
.home-head--center { justify-content: center; text-align: center; }
.home-head h2 {
    margin: 0.3rem 0 0;
    font-size: clamp(1.4rem, 3vw, 1.95rem);
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════
   HERO — full width, native 3:1 (1080×360)
   Never crops; max-height keeps it compact
   ═══════════════════════════════════════════ */
.hero-banner {
    position: relative;
    width: 100%;
    background: #145a1c;
    overflow: hidden;
    line-height: 0;
}
.hero-banner__track {
    position: relative;
    width: 100%;
}
.hero-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s var(--ease), visibility 0.7s;
    pointer-events: none;
    background: #145a1c;
}
.hero-banner__slide.is-active {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.hero-banner__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    background: #145a1c;
}
.hero-banner__media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    object-position: center;
    transform: none;
}
/* Mobile: full-bleed natural 3:1 (usually ~120–140px — compact) */
@media (max-width: 767px) {
    .hero-banner__media img {
        max-height: none;
        width: 100%;
        height: auto;
    }
}
@media (min-width: 1400px) {
    .hero-banner__media img { max-height: 360px; }
}
.hero-banner__dots {
    position: absolute;
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.4rem;
}
.hero-banner__dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 0; padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.25s var(--ease);
}
.hero-banner__dots button.is-active {
    width: 22px;
    border-radius: 999px;
    background: #fff;
}
.hero-banner__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.hero-banner__nav:hover { background: rgba(0, 0, 0, 0.45); }
.hero-banner__nav--prev { left: 0.65rem; }
.hero-banner__nav--next { right: 0.65rem; }
@media (min-width: 900px) {
    .hero-banner__nav { display: inline-flex; }
}

/* ── About ── */
.home-about {
    background: #fff;
    padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}
.home-about__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 900px) {
    .home-about__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
    }
}
.home-about__collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.75rem;
}
.home-about__tall {
    border-radius: 18px;
    overflow: hidden;
    min-height: 340px;
    box-shadow: 0 14px 36px rgba(46, 125, 50, 0.1);
}
.home-about__tall img {
    width: 100%; height: 100%;
    object-fit: cover; min-height: 340px;
}
.home-about__stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
}
.home-about__stack img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 18px;
    min-height: 160px;
}
.home-about__float {
    position: absolute;
    left: 0.85rem; bottom: 0.95rem;
    background: #fff;
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(46, 125, 50, 0.1);
}
.home-about__float strong {
    display: block; font-size: 1.15rem; color: var(--primary);
}
.home-about__float small {
    font-size: 0.68rem; color: var(--text-muted); font-weight: 600;
}
.home-about__label {
    display: block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.55rem;
}
.home-about__copy h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    line-height: 1.18; color: #243024;
    letter-spacing: -0.025em;
}
.home-about__copy h2 em { font-style: normal; color: var(--primary); }
.home-about__rule {
    display: block; width: 52px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px; margin-bottom: 1rem;
}
.home-about__copy > p {
    margin: 0 0 0.75rem;
    color: var(--text-muted);
    font-size: 0.94rem; line-height: 1.7;
}
.home-about__copy > p strong { color: var(--primary); }
.home-about__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.15rem;
    margin: 1.35rem 0 1.25rem;
}
.home-about__facts article {
    display: flex; align-items: flex-start; gap: 0.65rem;
}
.home-about__icon {
    width: 42px; height: 42px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 11px;
    background: var(--gold-light);
    color: var(--primary-dark);
}
.home-about__facts strong { display: block; font-size: 0.88rem; }
.home-about__facts small { font-size: 0.72rem; color: var(--text-muted); }
.home-about__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
@media (max-width: 599px) {
    .home-about__tall, .home-about__tall img { min-height: 260px; }
    .home-about__stack img { min-height: 120px; }
}

/* ── Impact band ── */
.home-impact {
    background:
        linear-gradient(135deg, rgba(20,90,28,0.94), rgba(46,125,50,0.92)),
        url("../images/b.png") center/cover;
    color: #fff;
    padding: clamp(2rem, 4vw, 3rem) 0;
}
.home-impact__head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.home-impact__head h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: #fff;
}
.home-impact__promises {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .home-impact__promises { grid-template-columns: repeat(5, 1fr); gap: 0.85rem; }
}
.home-impact__promises article {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 1.1rem 0.9rem;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: transform 0.25s, background 0.25s;
}
.home-impact__promises article:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.18);
}
.home-impact__promises article.is-accent {
    background: var(--gold-light);
    color: var(--primary-dark);
    border-color: transparent;
}
.home-impact__icon {
    width: 44px; height: 44px;
    margin: 0 auto 0.65rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.16);
    font-size: 1.1rem;
}
.home-impact__promises article.is-accent .home-impact__icon {
    background: rgba(46,125,50,0.12);
    color: var(--primary);
}
.home-impact__promises strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}
.home-impact__promises small {
    display: block;
    font-size: 0.72rem;
    opacity: 0.88;
}
.home-impact__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    text-align: center;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255,255,255,0.18);
}
@media (min-width: 768px) {
    .home-impact__stats { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
}
.home-impact__stats > div { padding: 0.85rem 0.5rem; }
.home-impact__stats i {
    display: block;
    margin: 0 auto 0.35rem;
    color: var(--gold-light);
    font-size: 0.95rem;
}
.home-impact__stats strong {
    display: block;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.home-impact__stats span {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.home-prod__enq {
    border: 0; background: transparent; cursor: pointer;
    font: inherit; font-size: 0.78rem; font-weight: 700;
    color: var(--primary);
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0;
}

/* ── Products ── */
.home-products {
    padding: clamp(2rem, 4.5vw, 3.25rem) 0;
    background: #f2f8f2;
}
.home-products__rail {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .home-products__rail { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .home-products__rail { grid-template-columns: repeat(4, 1fr); }
}
.home-prod {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.12);
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.home-prod:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.home-prod__media {
    display: block; position: relative;
    aspect-ratio: 4 / 3; overflow: hidden;
}
.home-prod__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.home-prod:hover .home-prod__media img { transform: scale(1.05); }
.home-prod__media span {
    position: absolute; top: 0.65rem; left: 0.65rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: var(--gold-light);
    color: var(--primary-dark);
    font-size: 0.62rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.home-prod__body {
    padding: 0.95rem 1rem 1.1rem;
    display: flex; flex-direction: column; flex: 1;
}
.home-prod__body h3 {
    margin: 0 0 0.4rem; font-size: 1rem;
}
.home-prod__body h3 a { text-decoration: none; color: inherit; }
.home-prod__body > p {
    margin: 0 0 0.9rem;
    font-size: 0.8rem; color: var(--text-muted); line-height: 1.5;
    flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.home-prod__row {
    display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
}
.home-prod__row > a:last-child {
    font-size: 0.78rem; font-weight: 700;
    color: var(--primary); text-decoration: none;
}

/* ── Categories mosaic ── */
.home-cats {
    padding: clamp(2rem, 4.5vw, 3.25rem) 0;
    background: #fff;
}
.home-cats__mosaic {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .home-cats__mosaic {
        grid-template-columns: 1.35fr 1fr 1fr;
        grid-template-rows: 200px 160px;
    }
}
.home-cat {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 180px;
    text-decoration: none;
    color: #fff;
    display: block;
}
.home-cat img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.home-cat:hover img { transform: scale(1.06); }
.home-cat > div {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.15rem;
    background: linear-gradient(180deg, transparent 25%, rgba(10, 36, 16, 0.82));
}
.home-cat span {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 0.25rem;
}
.home-cat h3 { margin: 0; font-size: 1.15rem; }
.home-cat p { margin: 0.3rem 0 0; font-size: 0.82rem; opacity: 0.9; }
@media (min-width: 768px) {
    .home-cat--lg { grid-row: span 2; min-height: auto; }
    .home-cat--wide { grid-column: span 2; }
}

/* ── Journey / R&D ── */
.home-journey {
    padding: clamp(2rem, 4.5vw, 3.25rem) 0;
    background: linear-gradient(180deg, #eaf5ea, #f7fbf7);
}
.home-journey__grid {
    display: grid; gap: 1.75rem; align-items: center;
}
@media (min-width: 900px) {
    .home-journey__grid { grid-template-columns: 1fr 1fr; gap: 2.75rem; }
}
.home-journey__visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: var(--shadow-lg);
}
.home-journey__visual img {
    width: 100%; height: 100%;
    object-fit: cover; min-height: 280px;
}
.home-journey__visual > span {
    position: absolute; left: 1rem; bottom: 1rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #fff; color: var(--primary-dark);
    padding: 0.55rem 0.85rem; border-radius: 11px;
    font-size: 0.8rem; font-weight: 700;
    box-shadow: var(--shadow-md);
}
.home-journey__copy h2 {
    margin: 0.35rem 0 0.7rem;
    color: var(--primary-dark);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.home-journey__copy > p {
    margin: 0 0 1.2rem;
    color: var(--text-muted); line-height: 1.65;
}
.home-journey__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}
.home-journey__steps > div {
    background: #fff;
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
}
.home-journey__steps b {
    display: block;
    color: var(--accent);
    font-size: 0.75rem; margin-bottom: 0.2rem;
}
.home-journey__steps strong { display: block; font-size: 0.88rem; }
.home-journey__steps small { font-size: 0.72rem; color: var(--text-muted); }

/* ── Social proof ── */
.home-social-proof {
    padding: clamp(2rem, 4.5vw, 3.25rem) 0;
    background: #fff;
}
.home-social-proof__grid {
    display: grid; gap: 0.9rem;
}
@media (min-width: 768px) {
    .home-social-proof__grid { grid-template-columns: repeat(3, 1fr); }
}
.home-quote {
    background: linear-gradient(165deg, #f2f9f2, #fff);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
}
.home-quote > i { color: var(--primary); opacity: 0.5; margin-bottom: 0.5rem; }
.home-quote p {
    margin: 0 0 0.85rem;
    font-size: 0.95rem; line-height: 1.55;
}
.home-quote cite {
    font-style: normal;
    font-size: 0.78rem; font-weight: 700;
    color: var(--primary);
}
.home-social-proof__certs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 1.35rem;
}
@media (min-width: 768px) {
    .home-social-proof__certs { grid-template-columns: repeat(4, 1fr); }
}
.home-social-proof__certs > div {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem;
    background: #145a1c;
    color: #fff;
    border-radius: 12px;
    font-size: 0.82rem; font-weight: 700;
}
.home-social-proof__certs i { color: var(--gold-light); }

/* ── FAQ ── */
.home-faq {
    padding: clamp(2rem, 4.5vw, 3.25rem) 0;
    background: #f2f8f2;
}
.home-faq__grid {
    display: grid; gap: 1.75rem;
}
@media (min-width: 900px) {
    .home-faq__grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 2.5rem; align-items: start;
    }
}
.home-faq__grid h2 {
    margin: 0.35rem 0 0.65rem;
    color: var(--primary-dark);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.home-faq__grid > div > p {
    color: var(--text-muted);
    margin: 0 0 1.1rem; line-height: 1.6;
}
.home-faq__list details {
    background: #fff;
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 12px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.home-faq__list summary {
    list-style: none; cursor: pointer;
    padding: 0.95rem 1.05rem;
    font-weight: 700;
    display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
}
.home-faq__list summary::-webkit-details-marker { display: none; }
.home-faq__list summary i {
    color: var(--primary); font-size: 0.75rem;
    transition: transform 0.25s;
}
.home-faq__list details[open] summary i { transform: rotate(45deg); }
.home-faq__list details p {
    margin: 0;
    padding: 0 1.05rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem; line-height: 1.6;
}

/* ── CTA ── */
.home-cta-wrap {
    padding: 0 0 clamp(2rem, 4vw, 3rem);
}
.home-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 22px;
    background: linear-gradient(125deg, #145a1c, #2e7d32 50%, #57a85c);
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.home-cta__text span {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.78rem; font-weight: 600; opacity: 0.95;
}
.home-cta__text h2 {
    margin: 0.35rem 0 0.4rem;
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
}
.home-cta__text p {
    margin: 0; opacity: 0.9; font-size: 0.92rem;
    max-width: 42ch;
}
.home-cta__actions {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.home-cta .p-btn--primary {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: none;
}

/* ── Shared product cards (products / detail pages) ── */
.p-handpick { background: linear-gradient(180deg, #eef6ee 0%, #e4f2e4 55%, #f3faf3 100%); }
.p-handpick__head {
    display: flex; flex-wrap: wrap; justify-content: space-between;
    align-items: flex-end; gap: 1rem; margin-bottom: 2rem;
}
.p-handpick__head p { margin: 0.5rem 0 0; color: var(--text-muted); font-size: 0.92rem; }
.p-handpick__track {
    display: flex; gap: 1.15rem; overflow-x: auto;
    scroll-snap-type: x mandatory; padding-bottom: 0.75rem;
    scrollbar-width: none;
}
.p-handpick__track::-webkit-scrollbar { display: none; }
.p-handpick__card {
    flex: 0 0 min(290px, 84vw); scroll-snap-align: start;
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid rgba(46, 125, 50, 0.16);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.p-product-grid .p-handpick__card { flex: unset; width: 100%; }
.p-handpick__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.p-handpick__img { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.p-handpick__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.p-handpick__card:hover .p-handpick__img img { transform: scale(1.05); }
.p-handpick__tag {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.28rem 0.6rem; border-radius: var(--radius-pill);
    background: var(--gold-light); font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.p-handpick__body { padding: 1.15rem 1.2rem 1.25rem; }
.p-handpick__cat {
    font-size: 0.68rem; font-weight: 700; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.p-handpick__body h3 { margin: 0.35rem 0; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; }
.p-handpick__body h3 a { text-decoration: none; color: inherit; }
.p-handpick__body p { margin: 0; font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.p-handpick__actions { display: flex; align-items: center; gap: 0.85rem; margin-top: 1rem; flex-wrap: wrap; }
.p-handpick__link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.8rem; font-weight: 700; color: var(--primary);
    text-decoration: none;
}
.p-handpick__link i { width: 14px; height: 14px; }
.p-section__head--center { text-align: center; max-width: 560px; margin-inline: auto; }
