/* ================================================================
   DiaperHome Theme Styles
   Color: #3da28b
   ================================================================ */

:root {
    --dh-primary: #3da28b;
    --dh-primary-dark: #2e8672;
    --dh-primary-light: #e8f5f1;
    --dh-secondary: #f0883e;
    --dh-success: #27ae60;
    --dh-danger: #e74c3c;
    --dh-text: #2c3e50;
    --dh-text-light: #7f8c8d;
    --dh-border: #e5e7eb;
    --dh-bg-light: #f8fafb;
    --dh-radius: 0.625rem;
    --dh-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --dh-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --dh-transition: 0.2s ease;

    --bs-primary: #3da28b;
    --bs-primary-rgb: 61, 162, 139;
    --bs-link-color: #3da28b;
    --bs-link-hover-color: #2e8672;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--dh-text);
    font-size: 0.9375rem;
    line-height: 1.6;
}

a {
    color: var(--dh-primary);
    text-decoration: none;
    transition: color var(--dh-transition);
}
a:hover {
    color: var(--dh-primary-dark);
}
img {
    max-width: 100%;
    height: auto;
}

/* ── Bootstrap Color Overrides ──────────────────────────── */
.bg-primary {
    background-color: #3da28b !important;
}
.text-primary {
    color: #3da28b !important;
}
.border-primary {
    border-color: #3da28b !important;
}
.btn-primary {
    background-color: #3da28b;
    border-color: #3da28b;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #2e8672;
    border-color: #2e8672;
}
.btn-outline-primary {
    color: #3da28b;
    border-color: #3da28b;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #3da28b;
    border-color: #3da28b;
    color: #fff;
}

/* ── Top Bar ────────────────────────────────────────────── */
.dh-topbar {
    background: var(--dh-primary);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

/* ── Header ─────────────────────────────────────────────── */
.dh-header {
    z-index: 1030;
    box-shadow: var(--dh-shadow);
}

.dh-header .custom-logo,
.dh-header .navbar-brand img {
    max-height: 44px;
    width: auto;
}

.dh-header-currency .form-select {
    min-width: 78px;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

#dhMobileMenu .custom-logo,
#dhMobileMenu .custom-logo-link img,
#dhMobileMenu .offcanvas-header .custom-logo-link img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
}

/* ── Desktop Navigation ─────────────────────────────────── */
.dh-nav-main {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dh-nav-main > .menu-item {
    position: relative;
    display: inline-block;
}

.dh-nav-main .menu-item > a {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    color: var(--dh-text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--dh-transition);
}

.dh-nav-main .menu-item > a:hover,
.dh-nav-main .current-menu-item > a,
.dh-nav-main .current-menu-ancestor > a {
    color: var(--dh-primary);
}

.dh-nav-main .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 0.4rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--dh-border);
    border-radius: var(--dh-radius);
    box-shadow: var(--dh-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity var(--dh-transition),
        transform var(--dh-transition),
        visibility var(--dh-transition);
    z-index: 40;
}

.dh-nav-main .menu-item:hover > .sub-menu,
.dh-nav-main .menu-item:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dh-nav-main .sub-menu .menu-item {
    display: block;
}

.dh-nav-main .sub-menu .menu-item > a {
    display: block;
    width: 100%;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
}

/* ── Mobile Nav ─────────────────────────────────────────── */
.dh-mobile-nav,
.dh-mobile-nav .sub-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.dh-mobile-nav .menu-item > a {
    display: block;
    padding: 0.55rem 0;
    color: var(--dh-text);
    font-weight: 500;
    border-bottom: 1px solid var(--dh-border);
    font-size: 0.9375rem;
}

.dh-mobile-nav .menu-item > a:hover {
    color: var(--dh-primary);
}

.dh-mobile-nav .sub-menu {
    padding-left: 1rem;
}

.dh-mobile-nav .sub-menu a {
    font-size: 0.875rem;
    color: var(--dh-text-light);
}

/* ── Search ─────────────────────────────────────────────── */
.dh-search-area .form-control {
    border-radius: var(--dh-radius) 0 0 var(--dh-radius);
    border-color: var(--dh-border);
}

.dh-search-area .form-control:focus {
    border-color: var(--dh-primary);
    box-shadow: 0 0 0 3px rgba(61, 162, 139, 0.12);
}

.dh-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0 0 var(--dh-radius) var(--dh-radius);
}

.dh-search-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--dh-border);
    text-decoration: none;
    color: var(--dh-text);
    transition: background var(--dh-transition);
}

.dh-search-item:hover {
    background: var(--dh-bg-light);
    color: var(--dh-text);
}

.dh-search-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ── Buttons ────────────────────────────────────────────── */
.dh-btn-primary,
.btn.dh-btn-primary {
    background: var(--dh-primary);
    color: #fff;
    border: none;
    border-radius: var(--dh-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: background var(--dh-transition);
}

.dh-btn-primary:hover,
.btn.dh-btn-primary:hover {
    background: var(--dh-primary-dark);
    color: #fff;
}

.dh-btn-outline {
    background: transparent;
    color: var(--dh-primary);
    border: 1px solid var(--dh-primary);
    border-radius: var(--dh-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all var(--dh-transition);
}

.dh-btn-outline:hover {
    background: var(--dh-primary);
    color: #fff;
}

/* ── Cart Badge ─────────────────────────────────────────── */
.dh-cart-count {
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
}

/* ── Offcanvas Cart ─────────────────────────────────────── */
#dhCartDrawer {
    width: 380px;
}

@media (max-width: 575.98px) {
    #dhCartDrawer {
        width: 100%;
    }
}

.dh-minicart .woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dh-minicart .woocommerce-mini-cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--dh-border);
    align-items: center;
    position: relative;
}

.dh-minicart .woocommerce-mini-cart-item a:not(.remove) {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    text-decoration: none;
    color: var(--dh-text);
    flex: 1;
    min-width: 0;
}

.dh-minicart .woocommerce-mini-cart-item img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.dh-minicart .woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: var(--dh-text-light) !important;
    border-radius: 50%;
    text-decoration: none;
}

.dh-minicart .woocommerce-mini-cart-item .remove:hover {
    background: #fee2e2;
    color: var(--dh-danger) !important;
}

.dh-minicart .woocommerce-mini-cart-item .quantity {
    font-size: 0.8125rem;
    color: var(--dh-text-light);
}

.dh-minicart .woocommerce-mini-cart__total {
    padding: 0.75rem;
    font-weight: 600;
    border-top: 2px solid var(--dh-border);
    display: flex;
    justify-content: space-between;
}

.dh-minicart .woocommerce-mini-cart__buttons {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dh-minicart .woocommerce-mini-cart__buttons .button {
    display: block;
    text-align: center;
    padding: 0.6rem;
    border-radius: var(--dh-radius);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.dh-minicart .woocommerce-mini-cart__buttons .button:first-child {
    border: 1px solid var(--dh-border);
    color: var(--dh-text);
}

.dh-minicart .woocommerce-mini-cart__buttons .checkout {
    background: var(--dh-primary);
    color: #fff;
    border: none;
}

.dh-minicart .woocommerce-mini-cart__buttons .checkout:hover {
    background: var(--dh-primary-dark);
}

/* ── Homepage Sections ──────────────────────────────────── */
.dh-hero-section {
    background: linear-gradient(135deg, var(--dh-primary-light) 0%, #fff 100%);
    border-radius: var(--dh-radius);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}

.dh-features-strip {
    background: var(--dh-bg-light);
    border-top: 1px solid var(--dh-border);
    border-bottom: 1px solid var(--dh-border);
}

.dh-features-strip i {
    flex-shrink: 0;
    color: var(--dh-primary);
}

.dh-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--dh-primary);
    display: inline-block;
}

/* ── Footer ─────────────────────────────────────────────── */
.dh-footer {
    font-size: 0.875rem;
}

.dh-footer a.text-white-50:hover {
    color: #fff !important;
}

.dh-footer-contact li {
    line-height: 1.6;
}

.dh-social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--dh-transition);
}

.dh-social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ── Payment Icons ──────────────────────────────────────── */
.dh-pay-icon {
    border-radius: 4px;
    background: #fff;
    padding: 3px 5px;
    height: 30px;
    width: auto;
}

/* ── WhatsApp Float ─────────────────────────────────────── */
.dh-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform var(--dh-transition);
}

.dh-wa-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ── Page Content ───────────────────────────────────────── */
.dh-page-content h1,
.dh-page-content h2,
.dh-page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.dh-page-content p {
    margin-bottom: 1rem;
}
.dh-page-content img {
    border-radius: var(--dh-radius);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .dh-header .navbar-brand img {
        max-height: 36px;
    }
}

@media (max-width: 575.98px) {
    .dh-topbar {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
    .dh-wa-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    .dh-hero-section {
        padding: 1.25rem 1rem;
    }
}

/* ================================================================
   DN Home Experience
   ================================================================ */
.dn-cart-drawer-subtotal .amount {
    color: var(--dh-primary-dark);
    font-weight: 700;
}

.dn-home-section-head {
    margin-bottom: 1rem;
}

.dn-home-section-head h2 {
    font-size: 1.35rem;
    margin: 0 0 0.3rem;
}

.dn-home-section-head p {
    margin: 0;
    color: var(--dh-text-light);
}

.dn-home-section-head--inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.dn-home-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

.dn-home-banner__slides {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease;
    will-change: transform;
}

.dn-home-banner__slide {
    flex: 0 0 100%;
}

.dn-home-banner img {
    width: 100%;
    height: auto;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .dn-home-banner__slides {
        transition: none;
    }
}

.dn-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.5rem;
    background: linear-gradient(145deg, #effbf7 0%, #ffffff 55%, #f1f9ff 100%);
    border: 1px solid var(--dh-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.dn-home-hero__eyebrow {
    display: inline-flex;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--dh-primary-dark);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.dn-home-hero__title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.dn-home-hero__text {
    color: var(--dh-text-light);
    max-width: 58ch;
    margin-bottom: 1rem;
}

.dn-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.dn-home-hero__panel {
    border: 1px solid #d9efe8;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem;
}

.dn-home-hero__panel h2 {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
}

.dn-home-hero__panel ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--dh-text-light);
}

.dn-home-hero__panel li + li {
    margin-top: 0.5rem;
}

.dn-home-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.25rem;
}

.dn-home-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--dh-border);
    background: #fff;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.dn-home-highlight i {
    color: var(--dh-primary);
    font-size: 1.2rem;
}

.dn-home-education,
.dn-home-about,
.dn-home-categories,
.dn-home-products,
.dn-home-faq {
    margin-bottom: 1.25rem;
}

.dn-home-about {
    display: grid;
    grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    border: 1px solid var(--dh-border);
    border-radius: 1rem;
    background: #fff;
    padding: 0.85rem;
}

.dn-home-about__media {
    width: 100%;
    max-width: 400px;
    justify-self: start;
    border-radius: 0.85rem;
    overflow: hidden;
    min-height: 240px;
    max-height: 300px;
}

.dn-home-about__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: block;
    object-fit: cover;
}

.dn-home-about__content {
    padding: 0.25rem 0.2rem;
}

.dn-home-about__eyebrow {
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--dh-primary-dark);
}

.dn-home-about__content h2 {
    margin: 0 0 0.45rem;
    font-size: 1.35rem;
}

.dn-home-about__content p {
    margin: 0 0 0.7rem;
    color: #455a6d;
}

.dn-home-education__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.dn-edu-card {
    border: 1px solid var(--dh-border);
    border-radius: 0.8rem;
    background: #fff;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.dn-edu-card__icon {
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 2.15rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf7f3;
    color: var(--dh-primary-dark);
    font-size: 1.1rem;
}

.dn-edu-card__content {
    min-width: 0;
}

.dn-edu-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.dn-edu-card p {
    margin: 0;
    color: var(--dh-text-light);
    font-size: 0.9rem;
}

.dn-home-category {
    display: block;
    border: 1px solid var(--dh-border);
    border-radius: 0.8rem;
    background: #fff;
    padding: 0.7rem;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.dn-home-category:hover {
    transform: translateY(-2px);
    border-color: #cfe8e0;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.dn-home-category__image {
    position: relative;
    border-radius: 0.55rem;
    overflow: hidden;
    background: #f8fbfa;
    margin-bottom: 0.5rem;
}

.dn-home-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dn-home-category__headline {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(
        180deg,
        rgba(6, 19, 34, 0.15),
        rgba(6, 19, 34, 0.65)
    );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.dn-home-category:hover .dn-home-category__image img,
.dn-home-category:focus-visible .dn-home-category__image img {
    transform: scale(1.04);
}

.dn-home-category:hover .dn-home-category__headline,
.dn-home-category:focus-visible .dn-home-category__headline {
    opacity: 1;
}

.dn-home-category__name {
    display: block;
    color: var(--dh-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.35;
    margin-top: 3px;
}

.dn-home-products--category-row .dn-home-section-head {
    margin-bottom: 0.85rem;
}

.dn-home-category-row {
    display: grid;
    grid-template-columns: minmax(220px, 24%) minmax(0, 1fr);
    gap: 0.9rem;
    align-items: stretch;
}

.dn-home-category-row__hero {
    position: relative;
    display: block;
    border: 1px solid #dce9e4;
    border-radius: 0.85rem;
    overflow: hidden;
    min-height: 100%;
    text-decoration: none;
}

.dn-home-category-row__hero img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.dn-home-category-row__hero-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.03),
        rgba(0, 0, 0, 0.6)
    );
}

.dn-home-category-row__hero:hover img,
.dn-home-category-row__hero:focus-visible img {
    transform: scale(1.03);
}

.dn-home-category-row__products {
    min-width: 0;
}

.dn-home-faq__item {
    border: 1px solid var(--dh-border);
    border-radius: 0.75rem !important;
    overflow: hidden;
}

.dn-home-faq__divider {
    border: 0;
    border-top: 1px solid #dce8e2;
    margin: 0 0 1rem;
}

.dn-home-faq__title {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.dn-home-faq__title i {
    color: var(--dh-primary-dark);
    font-size: 1.2rem;
}

.dn-home-faq__number {
    color: var(--dh-primary-dark);
    font-weight: 700;
    margin-right: 0.45rem;
}

.dn-home-faq__item + .dn-home-faq__item {
    margin-top: 0.7rem;
}

.dn-home-faq .accordion-button:not(.collapsed) {
    color: var(--dh-primary-dark);
    background: #f1faf7;
    box-shadow: none;
}

.dn-home-faq .accordion-body {
    color: #3f5366;
    font-size: 0.92rem;
}

.dn-home-cta {
    border-radius: 1rem;
    background: linear-gradient(
        130deg,
        var(--dh-primary) 0%,
        var(--dh-primary-dark) 100%
    );
    color: #fff;
    text-align: center;
    padding: 1.8rem 1.2rem;
}

.dn-home-cta h2 {
    margin: 0 0 0.4rem;
    font-size: 1.45rem;
}

.dn-home-cta p {
    margin: 0 0 1rem;
    opacity: 0.92;
}

.dn-home-cta .btn-light {
    border: none;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .dn-home-hero {
        grid-template-columns: 1fr;
    }

    .dn-home-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dn-home-education__grid {
        grid-template-columns: 1fr;
    }

    .dn-home-category-row {
        grid-template-columns: 1fr;
    }

    .dn-home-about {
        grid-template-columns: 1fr;
    }

    .dn-home-about__media {
        min-height: 210px;
    }

    .dn-home-about__media img {
        min-height: 210px;
        max-height: 300px;
    }

    .dn-home-category-row__hero img {
        min-height: 200px;
        max-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .dn-home-highlights {
        grid-template-columns: 1fr;
    }

    .dn-home-hero,
    .dn-home-cta {
        padding: 1.1rem;
    }

    .dn-home-section-head--inline {
        display: block;
    }
}

/* ================================================================
   Policy Pages
   ================================================================ */
.dh-policy-page {
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.dh-policy-card {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--dh-border);
    border-radius: 1rem;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
}

.dh-policy-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--dh-border);
}

.dh-policy-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.dh-policy-body {
    line-height: 1.85;
    color: #334155;
}

.dh-policy-body h2,
.dh-policy-body h3 {
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: #111827;
}

.dh-policy-body p,
.dh-policy-body li {
    color: #334155;
}

.dh-policy-body a {
    word-break: break-word;
}

.dh-policy-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dh-border);
}

.dh-policy-footer a {
    color: var(--dh-primary);
}

@media (max-width: 767.98px) {
    .dh-policy-card {
        padding: 1rem;
        border-radius: 0.875rem;
    }
}

/* ================================================================
   About Us Page
   ================================================================ */
.dh-about-page .dh-about-intro {
    background: #f8faf7;
}

.dh-about-page .dh-about-value-card {
    border: 1px solid var(--dh-border);
    border-radius: 12px;
    padding: 1.1rem;
    background: #fff;
}

/* ================================================================
   Contact Page
   ================================================================ */
.dh-contact-page .card {
    border: 1px solid var(--dh-border);
}

/* ================================================================
   Global Trust Strip (Above Footer)
   ================================================================ */
.dh-trust-strip {
    background: #f4f8f6;
    border-top: 1px solid var(--dh-border);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dh-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dh-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 0.9rem;
    border-left: 1px solid var(--dh-border);
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    background: #fff;
}

.dh-trust-strip__item:first-child {
    border-left: none;
}

.dh-trust-strip__item i {
    color: var(--dh-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .dh-trust-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dh-trust-strip__item:nth-child(2n + 1) {
        border-left: none;
    }
}

@media (max-width: 575.98px) {
    .dh-trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .dh-trust-strip__item {
        border-left: none;
        border-top: 1px solid var(--dh-border);
    }

    .dh-trust-strip__item:first-child {
        border-top: none;
    }
}
