/* =====================================================
   GOKRIPA DHAM — GHEE PAGE
   ===================================================== */

:root {

    --ghee-primary: #e17224;
    --ghee-primary-dark: #a56211;
    --ghee-primary-light: #fff2de;

    --ghee-cream: #fffaf1;
    --ghee-white: #ffffff;

    --ghee-green: #5f7443;
    --ghee-green-light: #edf3e8;

    --ghee-text: #302b24;
    --ghee-text-light: #70695f;

    --ghee-border: #e9e0d1;

    --ghee-shadow:
        0 14px 40px rgba(91, 70, 43, 0.09);

    --ghee-shadow-soft:
        0 8px 25px rgba(91, 70, 43, 0.06);

    --ghee-radius: 18px;

    --ghee-container-width: 1320px;
}


/* =====================================================
   RESET
   ===================================================== */

.ghee-page {
    margin: 0;
    padding: 0;

    background: var(--ghee-white);

    color: var(--ghee-text);

    font-family:
        "Space Grotesk",
        sans-serif;

    line-height: 1.6;
}


.ghee-page *,
.ghee-page *::before,
.ghee-page *::after {
    box-sizing: border-box;
}


.ghee-page img {
    max-width: 100%;
}


.ghee-page a {
    color: inherit;
}


.ghee-main {
    overflow: hidden;
    position: relative;
    padding: 234px 0 40px;
    /* background: #f6f3e7; */
}


/* =====================================================
   CONTAINER
   ===================================================== */

.ghee-container {
    width: min(
        calc(100% - 40px),
        var(--ghee-container-width)
    );

    margin: 0 auto;
}


/* =====================================================
   TYPOGRAPHY
   ===================================================== */

.ghee-eyebrow {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--ghee-green);

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.ghee-section-heading {
    max-width: 800px;

    margin: 0 auto 42px;

    text-align: center;
}


.ghee-section-heading h2 {
    margin: 0;

    color: var(--ghee-primary-dark);

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.15;

    font-weight: 700;
}


.ghee-section-heading p {
    max-width: 700px;

    margin: 16px auto 0;

    color: var(--ghee-text-light);

    font-size: 1rem;
}


.ghee-small-label {
    display: block;

    margin-bottom: 5px;

    color: var(--ghee-text-light);

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* =====================================================
   HERO
   ===================================================== */

.ghee-hero {
    padding: 72px 0 78px;

    background:
        linear-gradient(
            120deg,
            var(--ghee-cream),
            var(--ghee-primary-light)
        );
}


.ghee-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 70px;
}


.ghee-hero-image-wrap {
    display: flex;

    justify-content: center;
}


.ghee-hero-image-card {
    position: relative;

    width: min(100%, 550px);

    padding: 25px;

    background: var(--ghee-white);

    border: 1px solid rgba(95, 116, 67, 0.16);

    border-radius: 28px;

    box-shadow: var(--ghee-shadow);
}


.ghee-image-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    color: var(--ghee-green);

    background: var(--ghee-green-light);

    border-radius: 999px;

    font-size: 0.75rem;

    font-weight: 700;
}


.ghee-hero-image {
    display: block;

    width: 100%;

    height: auto;

    border-radius: 18px;

    object-fit: contain;
}


.ghee-hero-content h1 {
    max-width: 700px;

    margin: 0;

    color: var(--ghee-primary-dark);

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.03;

    font-weight: 700;
}


.ghee-hero-subtitle {
    margin: 18px 0 0;

    color: var(--ghee-primary);

    font-size: 1.05rem;

    font-weight: 600;
}


.ghee-hero-description {
    max-width: 680px;

    margin: 20px 0 0;

    color: var(--ghee-text-light);

    font-size: 1rem;

    line-height: 1.8;
}


.ghee-price-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(225, 114, 36, 0.14);

    border-radius: 16px;
}


.ghee-price-label {
    display: block;

    margin-bottom: 1px;

    color: var(--ghee-text-light);

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}


.ghee-price {
    display: block;

    color: var(--ghee-primary);

    font-size: 2rem;

    line-height: 1.1;
}


.ghee-quantity-display {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 2px;
}


.ghee-quantity-display span {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--ghee-text-light);

    font-size: 0.78rem;
}


.ghee-quantity-display strong {
    color: var(--ghee-green);

    font-size: 1.15rem;
}


.ghee-variant-area {
    margin-top: 24px;
}


.ghee-variants {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.ghee-variant-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 110px;

    padding: 11px 18px;

    color: var(--ghee-green);

    background: var(--ghee-white);

    border: 1px solid rgba(95, 116, 67, 0.28);

    border-radius: 10px;

    font-size: 0.88rem;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.ghee-variant-btn:hover {
    border-color: var(--ghee-primary);

    color: var(--ghee-primary);

    transform: translateY(-1px);
}


.ghee-variant-btn.active {
    color: var(--ghee-white);

    background: var(--ghee-green);

    border-color: var(--ghee-green);

    box-shadow: 0 7px 18px rgba(95, 116, 67, 0.2);
}


.ghee-hero-highlights {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    margin-top: 25px;
}


.ghee-hero-highlights div {
    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;

    padding: 12px;

    background: var(--ghee-green-light);

    border-radius: 11px;

    color: var(--ghee-green);

    font-size: 0.78rem;

    font-weight: 600;
}


.ghee-hero-highlights i {
    flex: 0 0 auto;

    color: var(--ghee-primary);
}


/* =====================================================
   TRUST STRIP
   ===================================================== */

.ghee-trust-strip {
    padding: 18px 0;

    background: var(--ghee-green);

    color: var(--ghee-white);
}


.ghee-trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.ghee-trust-item {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 0;
}


.ghee-trust-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    color: var(--ghee-primary-light);
}


.ghee-trust-item strong,
.ghee-trust-item span {
    display: block;
}


.ghee-trust-item strong {
    font-size: 0.88rem;
}


.ghee-trust-item span {
    margin-top: 2px;

    opacity: 0.78;

    font-size: 0.72rem;
}


/* =====================================================
   GENERAL SECTIONS
   ===================================================== */

.ghee-section {
    padding: 40px 0;
}


.ghee-section-cream {
    background: var(--ghee-cream);
}


.ghee-section-green {
    background: var(--ghee-green);

    color: var(--ghee-white);
}


.ghee-heading-light .ghee-eyebrow {
    color: var(--ghee-primary-light);
}


.ghee-heading-light h2 {
    color: var(--ghee-white);
}


/* =====================================================
   PRODUCT DETAILS
   ===================================================== */

.ghee-info-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.ghee-info-card {
    min-height: 190px;

    padding: 24px;

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: var(--ghee-radius);

    box-shadow: var(--ghee-shadow-soft);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.ghee-info-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--ghee-shadow);
}


.ghee-info-card h3 {
    margin: 20px 0 6px;

    color: var(--ghee-primary-dark);

    font-size: 1rem;
}


.ghee-info-card p {
    margin: 0;

    color: var(--ghee-text-light);

    font-size: 0.92rem;
}


.ghee-card-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    font-size: 1.1rem;
}


.ghee-card-icon.orange {
    background: var(--ghee-primary-light);

    color: var(--ghee-primary);
}


.ghee-card-icon.green {
    background: var(--ghee-green-light);

    color: var(--ghee-green);
}


/* =====================================================
   INGREDIENTS
   ===================================================== */

.ghee-ingredient-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.7fr);

    gap: 20px;
}


.ghee-ingredient-main {
    display: flex;

    align-items: center;

    gap: 22px;

    padding: 30px;

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: var(--ghee-radius);

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-large-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    border-radius: 20px;

    font-size: 1.5rem;
}


.ghee-large-icon.green {
    background: var(--ghee-green-light);

    color: var(--ghee-green);
}


.ghee-ingredient-main h3 {
    margin: 0;

    color: var(--ghee-primary-dark);

    font-size: 1.35rem;
}


.ghee-allergen-box {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 25px;

    background: var(--ghee-green-light);

    border: 1px solid rgba(95, 116, 67, 0.18);

    border-radius: var(--ghee-radius);

    color: var(--ghee-green);
}


.ghee-allergen-box > i {
    margin-top: 4px;

    font-size: 1.15rem;
}


.ghee-allergen-box strong {
    display: block;

    margin-bottom: 5px;
}


.ghee-allergen-box p {
    margin: 0;

    color: var(--ghee-text);

    font-size: 0.9rem;
}


/* =====================================================
   NUTRITION
   ===================================================== */

.ghee-nutrition-wrapper {
    overflow: hidden;

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: var(--ghee-radius);

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-nutrition-meta {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-bottom: 1px solid var(--ghee-border);
}


.ghee-nutrition-meta > div {
    padding: 22px 25px;
}


.ghee-nutrition-meta > div + div {
    border-left: 1px solid var(--ghee-border);
}


.ghee-nutrition-meta span,
.ghee-nutrition-meta strong {
    display: block;
}


.ghee-nutrition-meta span {
    color: var(--ghee-text-light);

    font-size: 0.78rem;
}


.ghee-nutrition-meta strong {
    margin-top: 3px;

    color: var(--ghee-green);

    font-size: 1.05rem;
}


.ghee-table-wrap {
    overflow-x: auto;
}


.ghee-nutrition-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 620px;
}


.ghee-nutrition-table th,
.ghee-nutrition-table td {
    padding: 15px 20px;

    border-bottom: 1px solid #eee7dc;

    text-align: left;
}


.ghee-nutrition-table th {
    color: var(--ghee-white);

    background: var(--ghee-green);

    font-size: 0.82rem;

    font-weight: 700;
}


.ghee-nutrition-table td {
    color: var(--ghee-text);

    font-size: 0.88rem;
}


.ghee-nutrition-table tbody tr:nth-child(even) {
    background: var(--ghee-cream);
}


.ghee-nutrition-table tbody tr:last-child td {
    border-bottom: 0;
}


.ghee-table-note {
    margin: 0;

    padding: 18px 20px;

    color: var(--ghee-text-light);

    background: var(--ghee-cream);

    font-size: 0.78rem;
}


/* =====================================================
   STORAGE
   ===================================================== */

.ghee-storage-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


.ghee-storage-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: 15px;

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-check-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    background: var(--ghee-green-light);

    border-radius: 50%;

    color: var(--ghee-green);

    font-size: 0.75rem;
}


.ghee-storage-item p {
    margin: 0;

    color: var(--ghee-text);

    font-size: 0.9rem;
}


/* =====================================================
   BATCH
   ===================================================== */

.ghee-batch-card {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    overflow: hidden;

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: var(--ghee-radius);

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-batch-item {
    padding: 26px 22px;
}


.ghee-batch-item + .ghee-batch-item {
    border-left: 1px solid var(--ghee-border);
}


.ghee-batch-item span,
.ghee-batch-item strong {
    display: block;
}


.ghee-batch-item span {
    margin-bottom: 8px;

    color: var(--ghee-text-light);

    font-size: 0.75rem;

    line-height: 1.4;
}


.ghee-batch-item strong {
    color: var(--ghee-primary-dark);

    font-size: 0.95rem;
}


.ghee-pack-note {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 15px;

    padding: 15px 18px;

    background: var(--ghee-primary-light);

    border-radius: 12px;

    color: var(--ghee-primary-dark);

    font-size: 0.82rem;
}


.ghee-pack-note p {
    margin: 0;
}


/* =====================================================
   QUALITY / LAB
   ===================================================== */

.ghee-quality-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.75fr)
        minmax(0, 1.25fr);

    gap: 22px;

    align-items: stretch;
}


.ghee-quality-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: var(--ghee-radius);
}


.ghee-quality-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 62px;
    height: 62px;

    margin-bottom: 22px;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 17px;

    color: var(--ghee-primary-light);

    font-size: 1.35rem;
}


.ghee-quality-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.86);

    line-height: 1.8;
}


.ghee-lab-card {
    padding: 30px;

    background: var(--ghee-white);

    border-radius: var(--ghee-radius);

    color: var(--ghee-text);

    box-shadow: var(--ghee-shadow);
}


.ghee-lab-card-header {
    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--ghee-border);
}


.ghee-lab-card-header h3 {
    margin: 0;

    color: var(--ghee-primary-dark);

    font-size: 1.25rem;
}


.ghee-lab-details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;

    margin-top: 4px;
}


.ghee-lab-details > div {
    padding: 18px 10px 18px 0;
}


.ghee-lab-details > div:nth-child(even) {
    padding-left: 15px;

    border-left: 1px solid var(--ghee-border);
}


.ghee-lab-details span,
.ghee-lab-details strong {
    display: block;
}


.ghee-lab-details span {
    margin-bottom: 4px;

    color: var(--ghee-text-light);

    font-size: 0.72rem;
}


.ghee-lab-details strong {
    color: var(--ghee-green);

    font-size: 0.85rem;

    word-break: break-word;
}


.ghee-report-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;

    margin-top: 10px;

    padding: 13px 18px;

    color: var(--ghee-white);

    background: var(--ghee-primary);

    border-radius: 11px;

    font-size: 0.86rem;

    font-weight: 700;

    text-decoration: none;

    transition: background 0.2s ease;
}


.ghee-report-btn:hover {
    background: var(--ghee-primary-dark);
}


.ghee-report-unavailable {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 10px;

    padding: 13px 15px;

    background: var(--ghee-primary-light);

    border-radius: 11px;

    color: var(--ghee-primary-dark);

    font-size: 0.78rem;
}


/* =====================================================
   FSSAI / MANUFACTURER
   ===================================================== */

.ghee-manufacturer-layout {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.ghee-manufacturer-card,
.ghee-address-card,
.ghee-fssai-card,
.ghee-country-card {
    min-height: 150px;

    padding: 25px;

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: var(--ghee-radius);

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-manufacturer-card,
.ghee-address-card {
    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.ghee-manufacturer-icon,
.ghee-address-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    background: var(--ghee-green-light);

    border-radius: 14px;

    color: var(--ghee-green);
}


.ghee-manufacturer-card h3 {
    margin: 0;

    color: var(--ghee-primary-dark);

    font-size: 1.15rem;
}


.ghee-address-card p {
    margin: 0;

    color: var(--ghee-text);

    font-size: 0.9rem;

    line-height: 1.7;
}


.ghee-fssai-card {
    display: flex;

    align-items: center;

    gap: 18px;

    background: var(--ghee-primary);

    border-color: var(--ghee-primary);

    color: var(--ghee-white);
}


.ghee-fssai-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    background: rgba(255, 255, 255, 0.15);

    border-radius: 15px;

    font-size: 1.25rem;
}


.ghee-fssai-card span,
.ghee-fssai-card strong {
    display: block;
}


.ghee-fssai-card span {
    margin-bottom: 3px;

    opacity: 0.8;

    font-size: 0.74rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.ghee-fssai-card strong {
    font-size: 1rem;

    letter-spacing: 0.03em;
}


.ghee-country-card {
    display: flex;

    align-items: center;

    gap: 15px;

    background: var(--ghee-green-light);

    border-color: rgba(95, 116, 67, 0.18);

    color: var(--ghee-green);
}


.ghee-country-card > i {
    font-size: 1.3rem;
}


.ghee-country-card span,
.ghee-country-card strong {
    display: block;
}


.ghee-country-card span {
    color: var(--ghee-text-light);

    font-size: 0.74rem;
}


.ghee-country-card strong {
    font-size: 1rem;
}


/* =====================================================
   A+ SECTION
   ===================================================== */

.ghee-aplus-section {
    padding: 82px 0;

    background: var(--ghee-cream);
}


.ghee-aplus-images {
    display: flex;

    flex-direction: column;

    gap: 24px;

    width: 100%;
}


.ghee-aplus-image {
    width: 100%;

    overflow: hidden;

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: 16px;

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-aplus-image img {
    display: block;

    width: 100%;

    height: auto;

    margin: 0;

    object-fit: contain;
}


/* =====================================================
   CUSTOMER FEEDBACK
   ===================================================== */

.ghee-feedback-card {
    padding: 35px;

    background:
        linear-gradient(
            135deg,
            var(--ghee-green-light),
            var(--ghee-cream)
        );

    border: 1px solid rgba(95, 116, 67, 0.15);

    border-radius: 22px;

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-feedback-intro {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;
}


.ghee-feedback-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 54px;
    height: 54px;

    background: var(--ghee-white);

    border-radius: 15px;

    color: var(--ghee-primary);

    box-shadow: var(--ghee-shadow-soft);
}


.ghee-feedback-intro h3 {
    margin: 0;

    color: var(--ghee-primary-dark);

    font-size: 1.3rem;
}


.ghee-feedback-form {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.ghee-form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.ghee-form-group label {
    color: var(--ghee-green);

    font-size: 0.78rem;

    font-weight: 700;
}


.ghee-form-group input,
.ghee-form-group select,
.ghee-form-group textarea {
    width: 100%;

    padding: 13px 15px;

    color: var(--ghee-text);

    background: var(--ghee-white);

    border: 1px solid var(--ghee-border);

    border-radius: 10px;

    outline: none;

    font: inherit;

    font-size: 0.88rem;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}


.ghee-form-group textarea {
    resize: vertical;

    min-height: 125px;
}


.ghee-form-group input:focus,
.ghee-form-group select:focus,
.ghee-form-group textarea:focus {
    border-color: var(--ghee-primary);

    box-shadow:
        0 0 0 3px rgba(225, 114, 36, 0.1);
}


.ghee-form-full {
    grid-column: 1 / -1;
}


.ghee-form-submit {
    display: flex;

    align-items: center;

    gap: 15px;
}


.ghee-submit-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 13px 20px;

    color: var(--ghee-white);

    background: var(--ghee-primary);

    border: 0;

    border-radius: 10px;

    cursor: pointer;

    font: inherit;

    font-size: 0.85rem;

    font-weight: 700;

    transition: background 0.2s ease;
}


.ghee-submit-btn:hover {
    background: var(--ghee-primary-dark);
}


.ghee-form-submit > span {
    color: var(--ghee-text-light);

    font-size: 0.72rem;
}


/* =====================================================
   CONTACT
   ===================================================== */

.ghee-contact-section {
    padding: 75px 0;

    background: var(--ghee-primary-light);
}


.ghee-contact-card {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 45px;

    padding: 42px;

    background: var(--ghee-green);

    border-radius: 24px;

    color: var(--ghee-white);

    box-shadow: var(--ghee-shadow);
}


.ghee-contact-content .ghee-eyebrow {
    color: var(--ghee-primary-light);
}


.ghee-contact-content h2 {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.1;
}


.ghee-contact-content p {
    margin: 16px 0 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.9rem;

    line-height: 1.75;
}


.ghee-contact-items {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


.ghee-contact-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;

    padding: 17px;

    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 14px;

    color: var(--ghee-white);

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.ghee-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);

    transform: translateY(-2px);
}


.ghee-contact-item > i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    background: var(--ghee-primary);

    border-radius: 10px;

    font-size: 0.9rem;
}


.ghee-contact-item span {
    min-width: 0;
}


.ghee-contact-item small,
.ghee-contact-item strong {
    display: block;
}


.ghee-contact-item small {
    margin-bottom: 2px;

    opacity: 0.68;

    font-size: 0.68rem;
}


.ghee-contact-item strong {
    overflow-wrap: anywhere;

    font-size: 0.8rem;
}


/* =====================================================
   FINAL NOTICE
   ===================================================== */

.ghee-final-notice {
    padding: 28px 0;

    background: var(--ghee-cream);

    border-top: 1px solid var(--ghee-border);
}


.ghee-notice-inner {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}


.ghee-notice-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    background: var(--ghee-primary-light);

    border-radius: 13px;

    color: var(--ghee-primary);
}


.ghee-notice-inner h3 {
    margin: 0;

    color: var(--ghee-primary-dark);

    font-size: 1rem;
}


.ghee-notice-inner p {
    margin: 2px 0 5px;

    color: var(--ghee-green);

    font-size: 0.82rem;

    font-weight: 600;
}


.ghee-notice-inner small {
    display: block;

    color: var(--ghee-text-light);

    font-size: 0.7rem;

    line-height: 1.6;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {

    .ghee-hero-grid {
        gap: 40px;
    }


    .ghee-info-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .ghee-trust-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .ghee-batch-card {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .ghee-batch-item:nth-child(3) {
        border-left: 0;

        border-top: 1px solid var(--ghee-border);
    }


    .ghee-batch-item:nth-child(4) {
        border-top: 1px solid var(--ghee-border);
    }
}


@media (max-width: 850px) {

    .ghee-hero {
        padding: 50px 0 60px;
    }


    .ghee-hero-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .ghee-hero-image-card {
        width: min(100%, 500px);
    }


    .ghee-hero-content {
        text-align: center;
    }


    .ghee-hero-content h1,
    .ghee-hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .ghee-hero-highlights {
        text-align: left;
    }


    .ghee-variant-area {
        text-align: left;
    }


    .ghee-price-row {
        text-align: left;
    }


    .ghee-ingredient-layout,
    .ghee-quality-layout,
    .ghee-contact-card {
        grid-template-columns: 1fr;
    }


    .ghee-manufacturer-layout {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 650px) {

    .ghee-container {
        width: min(
            calc(100% - 28px),
            var(--ghee-container-width)
        );
    }


    .ghee-section,
    .ghee-aplus-section {
        padding: 60px 0;
    }


    .ghee-section-heading {
        margin-bottom: 30px;
    }


    .ghee-info-grid {
        grid-template-columns: 1fr;
    }


    .ghee-trust-grid {
        grid-template-columns: 1fr;
    }


    .ghee-trust-item {
        padding: 3px 0;
    }


    .ghee-hero-highlights {
        grid-template-columns: 1fr;
    }


    .ghee-price-row {
        flex-direction: column;

        align-items: flex-start;
    }


    .ghee-quantity-display {
        align-items: flex-start;
    }


    .ghee-storage-grid {
        grid-template-columns: 1fr;
    }


    .ghee-batch-card {
        grid-template-columns: 1fr;
    }


    .ghee-batch-item,
    .ghee-batch-item:nth-child(3),
    .ghee-batch-item:nth-child(4) {
        border-left: 0;

        border-top: 1px solid var(--ghee-border);
    }


    .ghee-batch-item:first-child {
        border-top: 0;
    }


    .ghee-nutrition-meta {
        grid-template-columns: 1fr;
    }


    .ghee-nutrition-meta > div + div {
        border-top: 1px solid var(--ghee-border);

        border-left: 0;
    }


    .ghee-lab-details {
        grid-template-columns: 1fr;
    }


    .ghee-lab-details > div:nth-child(even) {
        padding-left: 0;

        border-left: 0;
    }


    .ghee-lab-details > div + div {
        border-top: 1px solid var(--ghee-border);
    }


    .ghee-contact-card {
        padding: 28px 22px;
    }


    .ghee-contact-items {
        grid-template-columns: 1fr;
    }


    .ghee-feedback-card {
        padding: 25px 20px;
    }


    .ghee-feedback-form {
        grid-template-columns: 1fr;
    }


    .ghee-form-full {
        grid-column: auto;
    }


    .ghee-form-submit {
        flex-direction: column;

        align-items: flex-start;
    }


    .ghee-notice-inner {
        flex-direction: column;

        align-items: center;
    }


    .ghee-notice-inner > div:last-child {
        text-align: center;
    }
}


@media (max-width: 565px) {

    .ghee-hero {
        padding: 35px 0 45px;
    }

    .ghee-price-row {
    margin-top: 24px;
    }

    .ghee-price-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .ghee-hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ghee-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ghee-section, .ghee-aplus-section {
        padding: 30px 0;
    }

        .ghee-section-heading {
        margin-bottom: 20px;
    }

        .ghee-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ghee-info-card {
    min-height: auto;
    padding: 20px;
    }

    .ghee-nutrition-meta {
    grid-template-columns: repeat(2, 1fr);
    }

    .ghee-nutrition-table {
    min-width: auto;
    }

    .ghee-storage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ghee-lab-card, .ghee-quality-content {
    padding: 24px;
    }

    .ghee-manufacturer-card, .ghee-address-card, .ghee-fssai-card, .ghee-country-card {
    min-height: auto;
    }


    /* new */

    .ghee-hero-image-card {
        padding: 14px;

        border-radius: 20px;
    }


    .ghee-image-badge {
        top: 12px;
        left: 12px;

        padding: 7px 9px;

        font-size: 0.65rem;
    }


    .ghee-hero-content h1 {
        font-size: 2.2rem;
    }


    .ghee-hero-subtitle {
        font-size: 0.9rem;
    }


    .ghee-price {
        font-size: 1.7rem;
    }


    .ghee-variants {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);
    }


    .ghee-variant-btn {
        min-width: 0;

        padding: 10px 7px;

        font-size: 0.75rem;
    }


    .ghee-section-heading h2 {
        font-size: 2rem;
    }


    .ghee-ingredient-main {
        flex-direction: column;

        align-items: flex-start;

        padding: 24px;
    }


    .ghee-manufacturer-card,
    .ghee-address-card {
        padding: 21px;
    }


    .ghee-contact-card {
        border-radius: 18px;
    }


    .ghee-aplus-images {
        gap: 14px;
    }
}
@media (max-width: 450px) {

    .ghee-hero {
        padding: 35px 0 45px;
    }


    .ghee-hero-image-card {
        padding: 14px;

        border-radius: 20px;
    }


    .ghee-image-badge {
        top: 12px;
        left: 12px;

        padding: 7px 9px;

        font-size: 0.65rem;
    }


    .ghee-hero-content h1 {
        font-size: 2.2rem;
    }


    .ghee-hero-subtitle {
        font-size: 0.9rem;
    }


    .ghee-price {
        font-size: 1.7rem;
    }


    .ghee-variants {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);
    }


    .ghee-variant-btn {
        min-width: 0;

        padding: 10px 7px;

        font-size: 0.75rem;
    }


    .ghee-section-heading h2 {
        font-size: 2rem;
    }


    .ghee-ingredient-main {
        flex-direction: column;

        align-items: flex-start;

        padding: 24px;
    }


    .ghee-manufacturer-card,
    .ghee-address-card {
        padding: 21px;
    }


    .ghee-contact-card {
        border-radius: 18px;
    }


    .ghee-aplus-images {
        gap: 14px;
    }
}


@media (max-width: 991px) {

    .ghee-main {

        min-height: auto;

        padding: 233px 0 90px;
    }}
    @media (max-width: 767px) {

    .ghee-main {

        padding: 110px 0 20px;
    }}
    @media (max-width: 480px) {

    .ghee-main {

        padding: 106px 0 20px;
    }}
