:root {
    --ink: #171612;
    --paper: #fffdf8;
    --cream: #f6f0e3;
    --gold: #c79a43;
    --line: #ded6c8;
}

/* ==================================
   MAIN
================================== */
.bd-premium-pdp {
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, sans-serif;
}
.bd-container {
    width: min(1440px, calc(100% - 40px));
    margin: auto;
    padding: 0px 20px;
}

/* ==================================
   HERO
================================== */
.bd-hero {
    padding: 35px 0 65px;
    background: #e8e1d8;
}

.bd-grid {
    display: flex;
    gap: 70px;
    align-items: start;
}
.bd-grid .bd-gallery.bd-reveal,
.bd-grid .bd-info.bd-reveal{
    width: 50%;
}
/* ==================================
   PRODUCT INFO
================================== */
.bd-info {
    padding-top: 20px;
}
/* BRAND TOP ROW */
.bd-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}
.bd-brand-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: #9f7427;
    text-transform: uppercase;
}
.bd-brand-name span {
    width: 22px;
    height: 1px;
    background: #c79a43;
    display: block;
}
.bd-brand-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #625d54;
}
.bd-brand-location i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4d7c59;
    display: block;
}   
.bd-brand-location b {
    font-weight: 400;
    color: #b7ac9c;
}
/* EYEBROW */
.bd-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: #9f7427;
}
.bd-info h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 1.05;
    margin: 15px 0;
    letter-spacing: -2px;
}
.bd-summary {
    line-height: 1.7;
}
.single-product .woocommerce-Price-amount.amount {
    font-size: 17px!important;
    font-weight: 700;
}
.bd-price-label{
    padding-left: 10px;
    color: #c79a43;
    font-size: 18px;
    font-weight: 600;
}
/* =========================================
   PRODUCT TRUST BADGES
========================================= */

.bd-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 8px;
    margin-top: 14px;
    margin-bottom: 18px;
}

.bd-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-height: 46px;
    padding: 8px 13px;

    background: #fffdf9;
    border: 1px solid #ded3c3;
    border-radius: 999px;

    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;

    white-space: nowrap;
    box-sizing: border-box;
}

.bd-trust-badge--strong {
    font-size: 14px;
    font-weight: 700;
}

.bd-trust-badge--strong strong {
    font-weight: 700;
}

.bd-trust-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    background: #f3f8f3;
    border-radius: 50%;

    color: #4d8d5d;
    font-size: 14px;
    font-weight: 700;

    flex: 0 0 20px;
}

.bd-trust-proof {
    color: #b87824;
    text-decoration: none;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.bd-trust-proof:hover {
    color: #8e5919;
}

/* Mobile */
@media (max-width: 767px) {

    .bd-trust-badges {
        gap: 8px 6px;
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .bd-trust-badge {
        min-height: 42px;
        padding: 7px 11px;
        gap: 6px;
        font-size: 14px;
    }

    .bd-trust-badge--strong {
        font-size: 13px;
    }

    .bd-trust-check {
        width: 19px;
        height: 19px;
        flex-basis: 19px;
        font-size: 13px;
    }
    .bd-grid{
        display: block;
    }
    .bd-grid .bd-gallery.bd-reveal, .bd-grid .bd-info.bd-reveal{
        width: 100%;
    }
    .bd-gallery.bd-reveal .woocommerce-product-gallery{
        display: inline-block !important;
    }

}
.bdh-buy-now-btn {
    animation: bdhBuyNowVibrate 1.2s infinite;
    transform-origin: center;
}

@keyframes bdhBuyNowVibrate {
    0%, 70%, 100% {
        transform: translateX(0);
    }

    74% {
        transform: translateX(-4px) rotate(-1deg);
    }

    78% {
        transform: translateX(4px) rotate(1deg);
    }

    82% {
        transform: translateX(-4px) rotate(-1deg);
    }

    86% {
        transform: translateX(4px) rotate(1deg);
    }

    90% {
        transform: translateX(-3px);
    }

    94% {
        transform: translateX(3px);
    }

    97% {
        transform: translateX(-2px);
    }

    99% {
        transform: translateX(2px);
    }
}

.bdh-buy-now-btn:hover {
    animation-play-state: paused;
}
/* ==================================
   ORDER NOTICE
================================== */
.bd-notice {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    margin: 15px 0px;
    /* border: 1px solid #ddd2c0; */
    border-radius: 16px;
    /* background: #fffdf8; */
    border: 1px solid #ded6c9;
    background: #fffaf0;
}
.bd-notice-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #171612;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.bd-notice strong {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
}
.bd-notice span {
    display: block;
    font-size: 12px;
    color: #6b665e;
    line-height: 1.5;
}


/* ==================================
   DELIVERY CARDS
================================== */
.bd-delivery-cards {
    margin-top: 20px;
}
.bd-delivery-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid #ded6c8;
    border-radius: 14px;
    background: #fffdf8;
}
.bd-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef4ed;
    color: #23634b;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bd-delivery-card strong {
    display: block;
    font-size: 13px;
    line-height: 22px;
}
.bd-delivery-card span {
    display: flex;
    font-size: 11px;
    line-height: 1.4;
    color: #6b665e;
}

/* ==============================
   FULL SCREEN PROOF POPUP
============================== */

.bd-proof-modal {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: 9999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.68);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* Popup box */
.bd-proof-box {
    position: relative;

    width: 100%;
    max-width: 720px;
    max-height: 90vh;

    padding: 35px 24px 24px;

    background: #ffffff;

    border-radius: 24px;

    box-sizing: border-box;

    overflow-y: auto;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}


/* Verification */
.bd-proof-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 7px;

    color: #a46d18;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.bd-proof-label span {
    width: 24px;
    height: 1px;

    background: #c99735;
}


/* Main popup title */
.bd-proof-box > h3 {
    margin: 0 0 26px;

    color: #181818;

    font-size: 21px;
    font-weight: 700;
}


/* Close button */
.bd-proof-close {
    position: absolute;

    top: 24px;
    right: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid #e2d5c5;
    border-radius: 50%;

    background: #ffffff;

    color: #111;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;
}

.bd-proof-close:hover {
    background: #f8f3eb;
}


/* Report area */
.bd-proof-content {
    min-height: 460px;

    padding: 28px 30px;

    box-sizing: border-box;

    border: 1px solid #e2d3be;
    border-radius: 18px;

    background-color: #fff;

    background-image:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 28px,
            rgba(190, 165, 130, 0.15) 29px,
            rgba(190, 165, 130, 0.15) 30px
        );
}


.bd-proof-content h2 {
    margin: 0 0 10px;

    color: #1c1c1c;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    line-height: 1.2;
}


.bd-proof-content p {
    margin: 0 0 18px;

    color: #333;

    font-size: 16px;
    line-height: 1.6;
}


/* Information box */
.bd-proof-note {
    margin-top: 18px;

    padding: 16px;

    background: #fbf7ef;

    border: 1px solid #e2d1b5;
    border-radius: 13px;

    color: #686157;

    font-size: 13px;
    line-height: 1.6;
}


/* No page scroll while modal is open */
body.bd-modal-open {
    overflow: hidden;
}


/* Mobile */
@media (max-width: 767px) {

    .bd-proof-modal {
        padding: 12px;
    }

    .bd-proof-box {
        max-height: 92vh;

        padding: 25px 16px 16px;

        border-radius: 18px;
    }

    .bd-proof-close {
        top: 18px;
        right: 18px;

        width: 40px;
        height: 40px;
    }

    .bd-proof-box > h3 {
        font-size: 19px;
        padding-right: 50px;
    }

    .bd-proof-content {
        min-height: 400px;

        padding: 22px 18px;
    }

    .bd-proof-content h2 {
        font-size: 27px;
    }

    .bd-proof-content p {
        font-size: 14px;
    }
}









/* ==================================
   THUMBNAILS
================================== */
.flex-control-thumbs {
    width: 75px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0!important;
    padding: 0!important;
}
.flex-control-thumbs li {
    width: 75px!important;
    height: 75px!important;
    list-style: none;
    border-radius: 18px;
    overflow: hidden;
}
.flex-control-thumbs img {
    width: 75px!important;
    height: 75px!important;
    object-fit: cover!important;
    border-radius: 18px;
    padding: 5px;
    background: #fff;
    border: 1px solid #ddd2c0;
    transition: 0.35s ease;
}
.flex-control-thumbs img:hover {
    transform: scale(1.08);
    border-color: var(--gold);
}
.flex-control-thumbs .flex-active {
    border: 2px solid var(--gold);
}
/* ==================================
   RESPONSIVE
================================== */
@media (max-width: 900px) {
    .bd-grid {
        grid-template-columns: 1fr;
    }
    .bd-gallery {
        position: relative;
        top: 0;
    }
    .bd-cards,
    .bd-process {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .bd-brand-row {
        flex-direction: column;

        align-items: flex-start;
    }
    .woocommerce-product-gallery {
        display: block;
    }
    .woocommerce-product-gallery__wrapper {
        width: 100%;
    }
    .woocommerce-product-gallery__image {
        height: 100% !important;
    }
    .woocommerce-product-gallery__image:hover {
        transform: none;

        box-shadow: none;
    }
    .woocommerce-product-gallery__image:hover img {
        transform: scale(1.02);
    }
    .flex-control-thumbs {
        width: 100%;
        flex-direction: row;
        margin-top: 15px!important;
    }
    .flex-control-thumbs li,
    .flex-control-thumbs img {
        width: 65px!important;
        height: 65px!important;
    }
    .bd-delivery-cards {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .bd-container {
        width: calc(100% - 0px);
    }
    .bd-cards,
    .bd-process {
        grid-template-columns: 1fr;
    }
    .bd-info h1 {
        font-size: 40px;
    }
}

.trust-bar {
    background: #171713;
    padding: 36px 0;
    color: #fff;
}
.trust-container {
    max-width: 1440px;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}
.trust-intro {
    width: 25%;
    padding-right: 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-intro h2 {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    color: #fff;
}

.trust-intro p {
    margin: 0;
    color: #d0ccc3;
    font-size: 15px;
    line-height: 1.6;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 15px;
    min-height: 120px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 38px;
    height: 38px;
    border: 1px solid #8b6925;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d39b32;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.trust-item h4 {
    margin: 3px 0 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.trust-item p {
    margin: 0;
    color: #c9c4ba;
    font-size: 14px;
    line-height: 1.55;
}

/* Responsive */

@media (max-width: 900px) {
    .trust-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .trust-intro {
        width: 100%;
        padding: 0 0 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item {
        width: 100%;
        padding: 25px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item:last-child {
        border-bottom: none;
    }
}
.ghee-evaluate {
    padding: 90px 20px;
    background: #fff;
}
.ghee-container {
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    padding: 0px 20px;
    align-items: center;
}
/* LEFT */

.ghee-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #a66d14;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ghee-label span {
    width: 24px;
    height: 1px;
    background: #b9822b;
}

.ghee-content h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 500;
    color: #171713;
}

.intro {
    margin-top: 25px;
    max-width: 620px;
    font-size: 20px;
    line-height: 1.7;
    color: #4e4e4e;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #ddd5c8;
    font-size: 17px;
    font-weight: 600;
    color: #2c2c2c;
}

.check-list span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f4ede2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a6a25;
    font-size: 14px;
}

.ghee-content h3 {
    font-size: 23px;
    margin: 30px 0 10px;
    color: #191919;
}

.bottom-text {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

/* TABLE */

.ghee-table-wrap {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid #ded5c8;
}

.ghee-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.ghee-table th {
    background: #171713;
    color: #fff;
    padding: 20px 18px;
    text-align: left;
    font-size: 14px;
}

.ghee-table td {
    padding: 18px;
    border-bottom: 1px solid #ded5c8;
    border-right: 1px solid #ded5c8;
    color: #67605a;
    font-size: 14px;
    line-height: 1.5;
}

.ghee-table td:first-child {
    font-weight: 700;
    color: #171713;
}

.ghee-table th,
.ghee-table td {
    width: 33.33%;
}

.ghee-table .highlight {
    color: #c28014;
    font-weight: 800;
    font-size: 15px;
}
.ghee-table tr:last-child td {
    border-bottom: none;
}
.ghee-table td:last-child,
.ghee-table th:last-child {
    border-right: none;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .ghee-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0;
    }

    .ghee-content h2 {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .ghee-evaluate {
        padding: 60px 20px;
    }

    .ghee-content h2 {
        font-size: 34px;
    }

    .intro {
        font-size: 17px;
    }

    .check-list li {
        font-size: 15px;
    }

    .ghee-table-wrap {
        border-radius: 18px;
        overflow-x: auto;
    }

    .ghee-table {
        min-width: 650px;
    }
    .check-list span{
        width: 36px !important;
        font-size: 19px;
    }
}

/* ================= GLOBAL ================= */

.container {
    max-width: 1440px;
    margin: auto;
    padding: 0 20px;
}
.eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ad7623;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.eyebrow span {
    width: 25px;
    height: 1px;
    background: #ad7623;
}
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: #171713;
    letter-spacing: -1px;
}
p {
    font-family: Arial, sans-serif;
}

/* ================= FARM PROCESS ================= */

.farm-process {
    padding: 120px 0 100px;
    background: #fff;
    text-align: center;
}
.farm-process h2 {
    font-size: 56px;
    line-height: 1.05;
    margin: 18px 0 25px;
}
.section-desc {
    max-width: 650px;
    margin: auto;
    color: #5f5a54;
    font-size: 18px;
    line-height: 1.7;
}
.process-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    margin-top: 70px;
    text-align: left;
}
.process-card {
    position: relative;
}
.step-number {
    font-family: Georgia, serif;
    font-size: 34px;
    color: #c18a30;
    margin-bottom: 5px;
}
.process-card h3 {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
}
.process-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}
/* arrows */

.process-card:not(:last-child):after {
    content: "›";
    position: absolute;
    right: -20px;
    top: 15px;
    font-size: 25px;
    color: #c18a30;
}
/* ================= DELIVERY SECTION ================= */

.delivery-section {
    padding: 100px 0;
}
.delivery-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}
.product-card {
    background: #f2e7d9;
    border: 1px solid #e6d9c5;
    border-radius: 28px;
    padding: 25px;
}
.product-card .eyebrow {
    justify-content: flex-start;
    margin-bottom: 20px;
}
.product-card img {
    width: 100%;
    height: 380px;
    object-fit: contain;
}
.product-card p {
    border-top: 1px solid #ddd0bd;
    padding-top: 18px;
    margin: 15px 0 0;
    font-size: 12px;
    color: #555;
}
.delivery-content .eyebrow {
    justify-content: flex-start;
}
.delivery-content h2 {
    font-size: 54px;
    line-height: 1.05;
    margin: 15px 0;
}
.intro {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}
.delivery-step {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid #ddd4c8;
}
.delivery-step > div {
    font-family: Georgia, serif;
    font-size: 25px;
    color: #b47b25;
}
.delivery-step h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #111;
}
.delivery-step p {
    margin: 0;
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}
.info-box {
    margin-top: 25px;
    padding: 15px;
    border: 1px dashed #d4c4aa;
    border-radius: 14px;
    font-size: 14px;
    color: #555;
}
/* ================= PROOF SECTION ================= */

.proof-section {
    background: #faf4ea;
    padding: 100px 0;
}
.proof-heading {
    text-align: center;
    max-width: 700px;
    margin: auto;
}
.proof-heading h2 {
    font-size: 52px;
    margin: 20px 0;
}
.proof-heading p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}
.proof-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.proof-card {
    background: #fff;
    border: 1px solid #e3d8c8;
    border-radius: 22px;
    padding: 25px;
    display: flex;
    gap: 25px;
}
.document-box {
    flex: 0 0 170px;
    height: 210px;
    background: #f8f4ec;
    border: 1px solid #ded3c2;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}
.document-box h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}
.lines {
    margin-top: 30px;
}
.lines:before,
.lines:after {
    content: "";
    display: block;
    height: 4px;
    background: #d8d0c3;
    margin: 10px 0;
    border-radius: 5px;
}
.document-box button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: none;
    border: 2px solid #c38b2d;
    color: #b47b25;
    font-size: 12px;
}
.proof-content .small {
    justify-content: flex-start;
    font-size: 10px;
}
.proof-content h3 {
    font-size: 22px;
    margin: 10px 0;
}
.proof-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.proof-info {
    background: #faf7f0;
    padding: 15px;
    border-radius: 10px;
    font-size: 12px;
    color: #555;
    line-height: 1.8;
    margin: 15px 0;
}
.proof-content a {
    color: #ad7623;
    font-weight: 700;
    font-size: 15px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .process-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-card:nth-child(3):after {
        display: none;
    }
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .product-card {
        max-width: 600px;
        margin: auto;
    }
}
@media (max-width: 768px) {
    .farm-process,
    .delivery-section,
    .proof-section {
        padding: 70px 0;
    }
    .farm-process h2,
    .proof-heading h2 {
        font-size: 38px;
    }
    .delivery-content h2 {
        font-size: 38px;
    }
    .process-list {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .process-card:after {
        display: none !important;
    }
    .proof-grid {
        grid-template-columns: 1fr;
    }
    .proof-card {
        flex-direction: column;
    }
    .document-box {
        width: 100%;
    }
    .document-box button{
        bottom: 12px;
    }
    .lines {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .farm-process h2,
    .proof-heading h2,
    .delivery-content h2 {
        font-size: 32px;
    }

    .section-desc,
    .intro,
    .proof-heading p {
        font-size: 16px;
    }

    .product-card img {
        height: 300px;
    }
}

/* =====================================================
   BARAKAH REAL STORIES
===================================================== */

.bdv-stories {
    position: relative;
    width: 100%;
    padding: 80px 0 65px;

    background:
        radial-gradient(
            circle at 50% 10%,
            #fffaf0 0%,
            #fbf3e5 55%,
            #f8efdf 100%
        );

    color: #171612;
    overflow: hidden;
}
.bdv-container {
    position: relative;

    width: min(
        1440px,
        calc(100% - 60px)
    );

    margin: 0 auto;
}
/* =====================================================
   HEADING
===================================================== */

.bdv-heading {
    text-align: center;

    margin-bottom: 42px;
}


.bdv-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;
}


.bdv-heading-line > span {
    position: relative;

    width: 45px;
    height: 1px;

    background: #c69331;
}


.bdv-heading-line > span::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 8px;
    height: 8px;

    border: 1px solid #c69331;

    background: #fbf3e5;

    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


.bdv-heading h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #171612;

    font-size: clamp(
        45px,
        5vw,
        70px
    );

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}


.bdv-heading p {
    margin: 16px 0 0;

    color: #625d54;

    font-size: 18px;

    line-height: 1.5;
}


/* =====================================================
   SLIDER
===================================================== */

.bdv-slider-wrap {
    position: relative;
}


.bdv-slider {
    width: 100%;

    overflow: hidden;
}


.bdv-track {
    display: flex;

    gap: 22px;

    transition:
        transform 0.45s
        cubic-bezier(.22, 1, .36, 1);

    will-change: transform;
}


/* =====================================================
   VIDEO CARD
===================================================== */

.bdv-card {
    flex:
        0 0
        calc(25% - 16.5px);
    min-width: 0;
    background: #fffdf8;
    border:
        1px solid
        rgba(196, 145, 52, 0.55);
    border-radius: 19px;
    overflow: hidden;
    box-shadow:
        0 10px 28px
        rgba(64, 45, 19, 0.08);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

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

    box-shadow:
        0 18px 40px
        rgba(64, 45, 19, 0.13);
}


/* =====================================================
   PORTRAIT VIDEO
===================================================== */

.bdv-video {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    background: #eee5d8;
}


/*
 * Actual video fills complete portrait card
 */
.bdv-video video {
    position: absolute;

    inset: 0;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center;

    opacity: 1 !important;
    visibility: visible !important;

    background: transparent !important;

    cursor: pointer;
}


/* Small gradient over video */
.bdv-video::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            transparent 60%,
            rgba(0,0,0,.05)
        );

    pointer-events: none;
}


/* =====================================================
   PLAY BUTTON
===================================================== */

.bdv-play {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background:
        rgba(255,255,255,.95);

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.15);

    cursor: pointer;

    transform:
        translate(-50%, -50%);

    transition:
        transform .25s ease,
        opacity .2s ease,
        background .25s ease;
}


.bdv-play:hover {
    transform:
        translate(-50%, -50%)
        scale(1.08);

    background: #fff;
}


/* triangle */
.bdv-play span {
    display: block;

    width: 0;
    height: 0;

    margin-left: 6px;

    border-top:
        12px solid transparent;

    border-bottom:
        12px solid transparent;

    border-left:
        19px solid #c8942c;
}


/* Hide play while playing */
.bdv-card.is-playing .bdv-play {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* =====================================================
   CAPTION
===================================================== */

.bdv-caption {
    display: flex;
    align-items: center;

    gap: 12px;

    min-height: 66px;

    padding: 12px 18px;

    background: #fffdf8;
}


.bdv-caption-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    border-radius: 50%;

    background: #c99735;

    color: #fff;

    font-size: 11px;
}


.bdv-caption strong {
    color: #171612;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.3;
}


/* =====================================================
   SLIDER ARROWS
===================================================== */

.bdv-nav {
    position: absolute;

    top: 47%;

    z-index: 30;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: #c69331;

    font-size: 42px;

    font-family: Arial, sans-serif;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 8px 26px
        rgba(53,42,22,.14);

    transform:
        translateY(-50%);

    transition:
        transform .25s ease,
        background .25s ease;
}


.bdv-nav:hover {
    background: #fff9ef;

    transform:
        translateY(-50%)
        scale(1.07);
}


.bdv-prev {
    left: -80px;
}


.bdv-next {
    right: -80px;
}


/* =====================================================
   TRUST BAR
===================================================== */

.bdv-trust {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 55px;

    padding: 28px 20px;

    background:
        rgba(255,253,248,.78);

    border:
        1px solid
        rgba(208,181,135,.45);

    border-radius: 20px;

    box-shadow:
        0 7px 25px
        rgba(64,44,15,.04);
}


.bdv-trust-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 68px;

    padding: 5px 20px;
}


.bdv-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 8px;
    right: 0;

    width: 1px;
    height: calc(100% - 16px);

    background:
        rgba(189,139,50,.35);
}


.bdv-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    color: #c18b2d;

    font-size: 25px;
}


.bdv-trust-item strong {
    color: #181612;

    font-size: 17px;

    font-weight: 500;

    white-space: nowrap;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .bdv-container {
        width:
            calc(100% - 50px);
    }


    .bdv-card {
        flex:
            0 0
            calc(50% - 11px);
    }


    .bdv-prev {
        left: -15px;
    }


    .bdv-next {
        right: -15px;
    }


    .bdv-nav {
        width: 52px;
        height: 52px;

        font-size: 36px;
    }


    .bdv-trust {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .bdv-trust-item:nth-child(2)::after {
        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .bdv-stories {
        padding:
            50px 0 40px;
    }


    .bdv-container {
        width:
            calc(100% - 30px);
    }


    .bdv-heading {
        margin-bottom: 28px;
    }


    .bdv-heading-line {
        gap: 12px;
    }


    .bdv-heading-line > span {
        width: 25px;
    }


    .bdv-heading h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }


    .bdv-heading p {
        margin-top: 12px;

        font-size: 14px;
    }


    /*
     * Show most of one card,
     * small piece of next card visible.
     */
    .bdv-card {
        flex:
            0 0
            100%;
    }

    /* KEEP PORTRAIT ON MOBILE */
    .bdv-video {
        aspect-ratio: 9 / 14;
    }


    .bdv-play {
        width: 62px;
        height: 62px;
    }


    .bdv-play span {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 16px;
    }


    .bdv-caption {
        min-height: 58px;

        padding: 10px 14px;
    }


    .bdv-caption strong {
        font-size: 14px;
    }


    .bdv-nav {
        top: 46%;

        width: 44px;
        height: 44px;

        font-size: 30px;
    }


    .bdv-prev {
        left: -8px;
    }


    .bdv-next {
        right: -8px;
    }


    .bdv-trust {
        grid-template-columns: 1fr;

        margin-top: 35px;

        padding: 8px 18px;
    }


    .bdv-trust-item {
        justify-content: flex-start;

        min-height: 64px;

        border-bottom:
            1px solid
            rgba(189,139,50,.2);
    }


    .bdv-trust-item:last-child {
        border-bottom: none;
    }


    .bdv-trust-item::after {
        display: none !important;
    }


    .bdv-trust-item strong {
        font-size: 15px;
    }

}


/* =====================================================
   WHY PURE DESI GHEE COSTS MORE SECTION
===================================================== */

.cost-section {
    padding: 100px 0;
    background: #fff;
}
.cost-heading {
    max-width: 850px;
    margin: auto;
    text-align: center;
}
.cost-heading h2 {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #171713;
    margin: 18px 0 25px;
}
.cost-heading p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}
/* Cost Cards */
.cost-grid {
    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.cost-card {
    min-height: 220px;
    padding: 28px 25px;
    border: 1px solid #dfd5c5;
    border-radius: 22px;
    background: #fff;
    transition: 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
.cost-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d8b77a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b47b25;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 35px;
}

.cost-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
    color: #111;
}

.cost-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.cost-footer {
    max-width: 750px;
    margin: 45px auto 0;
    text-align: center;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.4;
    color: #171713;
}

/* =====================================================
   REAL CUSTOMER PROOF SECTION
===================================================== */

.customer-proof {
    background: #f8f1e6;

    padding: 100px 0;
}

.proof-layout {
    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 70px;

    align-items: start;
}

.proof-title h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1px;

    margin: 15px 0 25px;

    color: #171713;
}

.proof-title p {
    font-size: 18px;

    line-height: 1.7;

    color: #555;
}

/* Customer Cards */
.customer-card {
    background: #edf2e9;
    border: 1px solid #d8ddcf;
    border-radius: 25px;
    overflow: hidden;
    padding: 14px;
}
.customer-card img{
    border-radius: 7px;
}
.whatsapp-head {
    height: 55px;
    background: #176b5b;
    border-radius: 15px 15px 0 0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.whatsapp-head > div {
    width: 30px;
    height: 30px;
    background: #dcefe7;
    border-radius: 50%;
}
.whatsapp-head strong {
    display: block;
    font-size: 14px;
}
.whatsapp-head small {
    display: block;
    font-size: 10px;
    opacity: 0.8;
}
.message-box {
    height: 230px;
    margin-top: 20px;
    background: #d8ffcb;
    border-radius: 10px;
    padding: 20px;
}
.message-box h4 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #146053;
}
.message-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #28584f;
}
.customer-card > span {
    display: block;
    margin: 15px 5px 5px;
    font-size: 13px;
    font-weight: 700;
    color: #28584f;
}
.implementation-note {
    margin-top: 30px;
    padding: 18px;
    border: 1px dashed #cdbb9d;
    border-radius: 15px;
    font-size: 13px;
    color: #555;
}
/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1100px) {
    .cost-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proof-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }
    .customer-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .cost-section,
    .customer-proof {
        padding: 70px 0;
    }
    .cost-heading h2,
    .proof-title h2 {
        font-size: 38px;
    }
    .cost-grid {
        grid-template-columns: 1fr;
    }
    .cost-footer {
        font-size: 22px;
    }
    .customer-slider {
        grid-template-columns: 1fr;
    }
    .proof-layout {
        gap: 35px;
    }
}
@media (max-width: 480px) {
    .cost-heading h2,
    .proof-title h2 {
        font-size: 32px;
    }
    .cost-heading p,
    .proof-title p {
        font-size: 16px;
    }
    .cost-card {
        min-height: auto;
    }
}

/* =====================================================
   PREMIUM PRODUCT IMAGE + SECTION REVEAL ANIMATION
===================================================== */

.bd-premium-pdp .bd-gallery,
.bd-premium-pdp .bd-info,
.bd-premium-pdp .trust-bar,
.bd-premium-pdp .ghee-evaluate,
.bd-premium-pdp .farm-process,
.bd-premium-pdp .delivery-section,
.bd-premium-pdp .proof-section,
.bd-premium-pdp .cost-section,
.bd-premium-pdp .customer-proof{
    opacity:0;
    transform:translateY(35px);
    transition:opacity .8s ease, transform .8s ease;
}
.bd-premium-pdp .bd-reveal{
    opacity:1;
    transform:translateY(0);
}
/* Product image premium hover */
.bd-premium-pdp .product-card,
.bd-premium-pdp .woocommerce-product-gallery__image{
    overflow:hidden;
    transition:.4s ease;
}
.bd-premium-pdp .product-card img,
.bd-premium-pdp .woocommerce-product-gallery__image img{
    transition:transform .7s cubic-bezier(.22,1,.36,1),
               filter .4s ease;
}
.bd-premium-pdp .product-card:hover,
.bd-premium-pdp .woocommerce-product-gallery__image:hover{
    transform:translateY(-5px);
    border-color:#c79a43;
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}
.bd-premium-pdp .product-card:hover img,
.bd-premium-pdp .woocommerce-product-gallery__image:hover img{
    transform:scale(1.06);
    filter:brightness(1.04);
}
/* Cards hover */
.bd-premium-pdp .bd-delivery-card,
.bd-premium-pdp .cost-card,
.bd-premium-pdp .proof-card,
.bd-premium-pdp .customer-card{
    transition:transform .35s ease, box-shadow .35s ease;
}
.bd-premium-pdp .bd-delivery-card:hover,
.bd-premium-pdp .cost-card:hover,
.bd-premium-pdp .proof-card:hover,
.bd-premium-pdp .customer-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.bd-gallery.bd-reveal .woocommerce-product-gallery__image > .zoomImg{
    display: none !important;
}
.bd-gallery.bd-reveal .woocommerce-product-gallery__image > a{
    display: block;
    width: 100%;
}
.bd-gallery.bd-reveal .woocommerce-product-gallery__image > a > img{
    width: 100%;
}
.bd-gallery.bd-reveal .woocommerce-product-gallery{
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
}
.woocommerce-product-gallery__trigger{
    display: none;
}
/* WooCommerce gallery initial width fix */
.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery .flex-viewport {
    width: 100%;
    max-width: 100%;
}
.single-product .woocommerce-product-gallery__wrapper img:not(.zoomImg) {
    display: block;
    width: 100%;
    height: auto;
}
/* =====================================================
   CUSTOMER PROOF LOOP SLIDER
===================================================== */

.customer-slider-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}

.customer-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.customer-slider-track {
    display: flex;
    gap: 20px;

    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}

.customer-slider-track.no-transition {
    transition: none !important;
}

/* CARD */

.customer-slider .customer-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    overflow: hidden;
}

.customer-slider .customer-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* =====================================================
   ARROWS
===================================================== */

.customer-slider-nav {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(199, 154, 67, 0.3);
    border-radius: 50%;
    background: #fffdf8;
    color: #c79a43;
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 20, 8, 0.12);
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.customer-slider-nav:hover {
    background: #fff8e9;
    transform: translateY(-50%) scale(1.07);
}
.customer-slider-prev {
    left: -24px;
}
.customer-slider-next {
    right: -24px;
}
/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .customer-slider .customer-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
    .customer-slider-track {
        gap: 14px;
    }

    .customer-slider .customer-card {
        flex: 0 0 100%;
    }

    .customer-slider-nav {
        width: 42px;
        height: 42px;

        font-size: 30px;
    }

    .customer-slider-prev {
        left: 8px;
    }

    .customer-slider-next {
        right: 8px;
    }
}
