/* ================================
   MOHI PURE - MAIN STYLES
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: #fffaf0;
    color: #1c211b;
}


/* ================================
   TOP BAR
================================ */

.top-bar {
    background: #1d331f;
    color: #fff;
    text-align: center;
    padding: 9px;
    font-size: 13px;
    letter-spacing: 1px;
}


/* ================================
   NAVBAR
================================ */

header {
    height: 80px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fffaf0;

    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid #eadfca;
}

.logo {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: bold;
    color: #172217;
}

.logo span {
    color: #e69a00;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #1c211b;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #e69a00;
}

.cart {
    font-size: 20px;
    cursor: pointer;
}

#cart-count {
    background: #e69a00;
    color: white;
    font-size: 11px;
    padding: 4px 7px;
    border-radius: 50%;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 70px 9%;

    background:
        radial-gradient(
            circle at 80% 50%,
            #ffe9a6 0%,
            #fff4d2 30%,
            #fffaf0 65%
        );

    overflow: hidden;
}

.hero-text {
    width: 48%;
}

.small-title {
    color: #e69a00;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(55px, 7vw, 100px);
    line-height: 0.9;
    letter-spacing: -4px;
}

.hero h1 span {
    color: #e69a00;
}

.hero-description {
    margin-top: 30px;
    max-width: 500px;

    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 35px;

    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;

    padding: 15px 28px;

    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;

    transition: 0.3s;
}

.primary {
    background: #1d331f;
    color: white;
}

.primary:hover {
    background: #e69a00;
}

.secondary {
    border: 1px solid #1d331f;
    color: #1d331f;
}

.secondary:hover {
    background: #1d331f;
    color: white;
}


/* ================================
   HERO PRODUCT IMAGE
================================ */

.hero-image {
    width: 45%;
    height: 540px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: #e8a51b;

    opacity: 0.25;
}

.hero-image img {
    position: relative;

    width: 350px;
    height: 470px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 30px 60px rgba(80, 50, 0, 0.25);

    transition: transform 0.5s;
}

.hero-image img:hover {
    transform: scale(1.04) rotate(1deg);
}


/* ================================
   TRUST BAR
================================ */

.trust {
    background: #1d331f;
    color: white;

    padding: 30px 8%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    text-align: center;

    gap: 20px;
}

.trust div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.trust strong {
    color: #f0ad19;
    font-size: 22px;
}

.trust span {
    font-size: 13px;
    letter-spacing: 1px;
}


/* ================================
   PRODUCTS
================================ */

.products {
    padding: 110px 8%;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading p {
    color: #e69a00;
    font-weight: bold;
    letter-spacing: 4px;
    font-size: 13px;
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    margin-top: 15px;
}

.section-heading span {
    color: #e69a00;
}


/* PRODUCT GRID */

.product-grid{
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.13);
}

.product-image {
    height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1c7;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
}

.product-info > p:first-child {
    color: #e69a00;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;
}

.product-info h3 {
    font-family: Georgia, serif;

    font-size: 28px;

    margin-top: 8px;
}

.product-desc {
    margin-top: 10px;

    color: #777;

    line-height: 1.6;
}

.product-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 25px;
}

.product-bottom span {
    font-weight: bold;
}

.product-bottom button {
    background: #1d331f;

    color: white;

    border: none;

    padding: 12px 18px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s;
}

.product-bottom button:hover {
    background: #e69a00;
}


/* ================================
   STORY
================================ */

.story {
    min-height: 550px;

    display: flex;
    align-items: center;

    padding: 100px 10%;

    background:
        linear-gradient(
            90deg,
            #1d331f 0%,
            #263f28 100%
        );

    color: white;
}

.story-text {
    max-width: 700px;
}

.story-text > p:first-child {
    color: #f0ad19;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 4px;
}

.story h2 {
    font-family: Georgia, serif;

    font-size: clamp(45px, 6vw, 80px);

    line-height: 0.95;

    margin: 20px 0 30px;
}

.story h2 span {
    color: #f0ad19;
}

.story-text > p:not(:first-child) {
    max-width: 600px;

    color: #d7ddd5;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* ================================
   FOOTER
================================ */

footer {
    text-align: center;

    padding: 70px 20px;

    background: #111c12;

    color: white;
}

.footer-logo {
    font-family: Georgia, serif;

    font-size: 40px;

    font-weight: bold;
}

.footer-logo span {
    color: #e69a00;
}

footer p {
    margin-top: 12px;

    color: #bfc6bd;
}

.copyright {
    margin-top: 35px;

    color: #777;

    font-size: 12px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 800px) {

    header {
        padding: 0 5%;
    }

    nav {
        display: none;
    }

    .hero {
        flex-direction: column;

        padding: 60px 7%;

        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;

        height: 450px;

        margin-top: 30px;
    }

    .hero-image img {
        width: 280px;
        height: 400px;
    }

    .hero-image .circle {
        width: 330px;
        height: 330px;
    }

    .trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .products {
        padding: 80px 6%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 350px;
    }

    .story {
        padding: 80px 8%;
    }
}
/* ================================
   SHOP SECTION
================================ */

.shop-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    color: #777;
    line-height: 1.6;
    font-size: 15px;
}

.quantity-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.quantity-options button {
    background: #fffaf0;
    border: 1px solid #d8c9a8;
    color: #1d331f;
    padding: 10px 13px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: 0.25s;
}

.quantity-options button:hover,
.quantity-options button.selected {
    background: #e69a00;
    color: white;
    border-color: #e69a00;
}

.add-cart {
    width: 100%;
    margin-top: 18px;
    padding: 15px;
    border: none;
    background: #1d331f;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.add-cart:hover {
    background: #e69a00;
}

.delivery-note {
    margin: 50px auto 0;
    max-width: 600px;
    text-align: center;
    padding: 18px;
    background: #fff3cf;
    color: #4d493d;
    border-radius: 10px;
}

.oil-placeholder {
    width: 180px;
    height: 260px;
    border-radius: 15px;
    background: #e9a800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 45px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.oil-placeholder span {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 10px;
}
/* ========================================
   SHOPPING CART
======================================== */

#cart-window {
    position: fixed;

    top: 0;
    right: 0;

    width: 420px;
    max-width: 90vw;

    height: 100vh;

    background: #fffaf0;

    z-index: 9999;

    padding: 30px;

    box-shadow:
        -10px 0 40px rgba(0, 0, 0, 0.15);

    overflow-y: auto;

    animation: cartSlide 0.3s ease;
}


@keyframes cartSlide {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }

}


.cart-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid #ddd2bd;

    padding-bottom: 20px;

    margin-bottom: 25px;
}


.cart-header h2 {

    font-family: Georgia, serif;

    font-size: 32px;

}


.cart-header button {

    border: none;

    background: transparent;

    font-size: 32px;

    cursor: pointer;

    color: #1d331f;
}


.empty-cart {

    text-align: center;

    padding: 80px 10px;

    color: #777;

}


.empty-cart:first-letter {

    font-size: 50px;

}


.cart-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #e5dccb;

    font-size: 14px;

}


.cart-item strong {

    color: #1d331f;

}


.cart-item button {

    margin-left: 10px;

    border: none;

    background: #1d331f;

    color: white;

    border-radius: 50%;

    width: 25px;

    height: 25px;

    cursor: pointer;

}


.cart-total {

    margin-top: 30px;

}


.cart-total > div {

    display: flex;

    justify-content: space-between;

    font-size: 18px;

}


.cart-total p {

    margin-top: 15px;

    color: #777;

    font-size: 12px;

    line-height: 1.5;

}


.checkout-btn {

    width: 100%;

    margin-top: 25px;

    padding: 17px;

    border: none;

    background: #1d331f;

    color: white;

    font-weight: bold;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;

}


.checkout-btn:hover {

    background: #e69a00;

}


/* Mobile Cart */

@media (max-width: 500px) {

    #cart-window {

        width: 100%;

        max-width: 100%;

        padding: 25px;

    }

}
/* ========================================
   CART QUANTITY CONTROLS
======================================== */

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-width: 180px;
}

.cart-product-info span {
    color: #777;
    font-size: 12px;
}

.cart-product-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #d8c9a8;
    background: white;
}

.quantity-control button {
    width: 30px;
    height: 30px;
    border: none;
    background: #fffaf0;
    color: #1d331f;
    font-size: 18px;
    cursor: pointer;
}

.quantity-control span {
    width: 28px;
    text-align: center;
    font-weight: bold;
}

.remove-product {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: #1d331f;
    color: white;
    cursor: pointer;
}

.remove-product:hover,
.quantity-control button:hover {
    background: #e69a00;
}
/* ==============================
   CHECKOUT PAGE
================================ */

#checkout-window {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(20, 30, 20, 0.65);
    backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 40px 20px;
}

.checkout-box {
    max-width: 1050px;
    margin: auto;
    background: #fffaf0;
    padding: 45px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ded5c3;
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.checkout-header p {
    margin: 0 0 5px;
    color: #e69a00;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.checkout-header h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 38px;
    color: #1d331f;
}

.checkout-header button {
    border: none;
    background: transparent;
    font-size: 38px;
    cursor: pointer;
    color: #1d331f;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.checkout-label {
    color: #e69a00;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.customer-details h3,
.order-summary h3 {
    font-family: Georgia, serif;
    font-size: 25px;
    color: #1d331f;
    margin-bottom: 25px;
}

.customer-details input,
.customer-details textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    margin-bottom: 15px;
    border: 1px solid #d8c9a8;
    background: white;
    font-family: inherit;
    outline: none;
}

.customer-details textarea {
    height: 110px;
    resize: vertical;
}

.customer-details input:focus,
.customer-details textarea:focus {
    border-color: #e69a00;
}

.checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.order-summary {
    background: #f5edda;
    padding: 30px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #ddd2bd;
    font-size: 14px;
}

.checkout-item small {
    display: block;
    margin-top: 5px;
    color: #777;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.summary-line {
    color: #666;
    font-size: 14px;
}

.summary-total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #1d331f;
    font-size: 21px;
    color: #1d331f;
}

.payment-coming-soon {
    width: 100%;
    margin-top: 25px;
    padding: 17px;
    border: none;
    background: #aaa;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: not-allowed;
}

.secure-note {
    text-align: center;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 750px) {

    #checkout-window {
        padding: 15px;
    }

    .checkout-box {
        padding: 25px;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-header h2 {
        font-size: 30px;
    }

    .checkout-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* ==============================
   PREMIUM PRODUCT CARDS
================================ */

.product-card {
    position: relative;
    background: #fffdf7;
    border: 1px solid #eee3ce;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(29, 51, 31, 0.14);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f5ead2;
}

.product-image img {
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    padding: 25px;
}

.product-info > p:first-child {
    color: #e69a00;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

.product-info h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.25;
    color: #1d331f;
    margin: 10px 0;
}

.product-desc {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.quantity-options button {
    transition: all 0.25s ease;
}

.quantity-options button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(230, 154, 0, 0.2);
}

.add-cart {
    position: relative;
    overflow: hidden;
}

.add-cart::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.12);
    transition: left 0.4s ease;
}

.add-cart:hover::after {
    left: 100%;
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: #1d331f;
    color: white;
    padding: 8px 12px;
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.shop-tagline {
    max-width: 650px;
    margin: 18px auto 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}
/* =========================================
   NAVBAR FIX
========================================= */

.navbar {
    width: 100%;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 55px;
    box-sizing: border-box;
    background: #fffaf0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee2ca;
}

.logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: bold;
    color: #1d331f;
    white-space: nowrap;
}

.logo span {
    color: #e69a00;
}

.logo strong {
    color: #1d331f;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 45px;
}

.nav-links a {
    text-decoration: none;
    color: #1d331f;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #e69a00;
}

.cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    font-size: 22px;
    color: #1d331f;
}

#cart-count {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e69a00;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}


/* =========================================
   HERO BUTTON FIX
========================================= */

.hero-btn {
    display: inline-block;
    text-decoration: none;
    background: #1d331f;
    color: white !important;
    padding: 15px 25px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #e69a00;
}

.hero-link {
    display: inline-block;
    margin-left: 18px;
    text-decoration: none;
    color: #1d331f !important;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-link:hover {
    color: #e69a00 !important;
}


/* =========================================
   MOBILE NAVBAR
========================================= */

@media (max-width: 750px) {

    .navbar {
        height: auto;
        min-height: 70px;
        padding: 15px 20px;
    }

    .logo {
        font-size: 27px;
    }

    .nav-links {
        display: none;
    }

    .cart {
        margin-left: auto;
    }
}
/* =========================================
   PRODUCT DETAILS POPUP
========================================= */

#product-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(20, 30, 20, 0.72);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow-y: auto;
}

.product-modal-box {
    width: 100%;
    max-width: 950px;
    background: #fffaf0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: productModalIn 0.3s ease;
}

@keyframes productModalIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-modal-image {
    min-height: 520px;
    background: #f1e4c7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-modal-tag {
    color: #e69a00;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-modal-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.15;
    color: #1d331f;
    margin: 0 0 15px;
}

.product-modal-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    margin: 10px 0 25px;
    padding: 0;
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    color: #444;
    font-size: 13px;
}

.product-features li::before {
    content: "✓";
    color: #e69a00;
    font-weight: bold;
    margin-right: 10px;
}

.modal-price {
    font-size: 25px;
    font-weight: bold;
    color: #1d331f;
    margin: 10px 0 15px;
}

.modal-sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.modal-size {
    border: 1px solid #d8c9a8;
    background: #fff;
    padding: 11px 16px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.modal-size:hover,
.modal-size.selected {
    background: #e69a00;
    color: white;
    border-color: #e69a00;
}

.modal-add-cart {
    width: 100%;
    padding: 17px;
    border: none;
    background: #1d331f;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-add-cart:hover {
    background: #e69a00;
}

.close-product-modal {
    position: absolute;
    right: 18px;
    top: 15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #1d331f;
    font-size: 25px;
    cursor: pointer;
    z-index: 2;
}

.close-product-modal:hover {
    background: #e69a00;
    color: white;
}

.modal-delivery {
    margin-top: 15px;
    color: #777;
    font-size: 11px;
}


/* VIEW PRODUCT BUTTON */

.view-product {
    width: 100%;
    margin-top: 10px;
    padding: 13px;
    background: transparent;
    border: 1px solid #1d331f;
    color: #1d331f;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.view-product:hover {
    background: #1d331f;
    color: white;
}


/* MOBILE */

@media (max-width: 750px) {

    #product-modal {
        padding: 15px;
    }

    .product-modal-box {
        grid-template-columns: 1fr;
        max-height: 95vh;
        overflow-y: auto;
    }

    .product-modal-image {
        min-height: 280px;
        max-height: 320px;
    }

    .product-modal-content {
        padding: 30px;
    }

    .product-modal-content h2 {
        font-size: 29px;
    }
}
/* =========================================
   PRODUCT IMAGE SIZE + CLARITY FIX
========================================= */

.product-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #f5ead2;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Keep product cards balanced */
.product-card {
    overflow: hidden;
}

/* Mobile */
@media (max-width: 750px) {

    .product-image {
        height: 300px;
    }

}
/* =========================================
   FINAL PRODUCT CARD IMAGE STYLE
========================================= */

.product-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #f5ead2;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

@media (max-width: 750px) {
    .product-image {
        height: 300px;
    }
}
/* =========================================
   HINDI OUR STORY
========================================= */

.hindi-story {
    background: #1d331f;
    color: #fffaf0;
    padding: 110px 8%;
}

.hindi-story .story-content {
    max-width: 950px;
    margin: auto;
}

.hindi-story .story-small {
    color: #e69a00;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hindi-story h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 45px;
}

.hindi-story h2 span {
    color: #e69a00;
}

.story-intro,
.story-block {
    max-width: 800px;
}

.hindi-story p {
    font-size: 17px;
    line-height: 2;
    color: #eee8d9;
}

.story-block {
    margin-top: 55px;
}

.story-block h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    color: #fffaf0;
    margin-bottom: 15px;
}

.story-highlight {
    border-left: 3px solid #e69a00;
    padding: 25px 35px;
    background: rgba(255,255,255,0.04);
}

.story-quote {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px !important;
    line-height: 1.6 !important;
    color: #fffaf0 !important;
}

.story-final {
    margin-top: 80px;
    padding-top: 55px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.story-final h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.5;
    color: #fffaf0;
}

.story-final .story-quote {
    color: #e69a00 !important;
    font-size: 30px !important;
    margin-top: 40px;
}

.story-signature {
    margin-top: 30px;
    color: #fffaf0 !important;
    font-size: 18px !important;
}

.story-signature span {
    color: #bcb6a8;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 750px) {

    .hindi-story {
        padding: 75px 25px;
    }

    .hindi-story h2 {
        font-size: 35px;
    }

    .hindi-story p {
        font-size: 15px;
        line-height: 1.9;
    }

    .story-block {
        margin-top: 40px;
    }

    .story-block h3 {
        font-size: 25px;
    }

    .story-quote {
        font-size: 20px !important;
    }

    .story-final h3 {
        font-size: 24px;
    }

}
/* =========================================
   INSTAGRAM SECTION
========================================= */

.instagram-section {
    background: #f5ead2;
    padding: 100px 8%;
    text-align: center;
}

.instagram-inner {
    max-width: 750px;
    margin: auto;
}

.instagram-small {
    color: #e69a00;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.instagram-inner h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #1d331f;
    font-size: 48px;
    line-height: 1.15;
    margin: 0;
}

.instagram-inner h2 span {
    color: #e69a00;
}

.instagram-text {
    max-width: 600px;
    margin: 22px auto 30px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.instagram-btn {
    display: inline-block;
    padding: 15px 25px;
    background: #1d331f;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.instagram-btn:hover {
    background: #e69a00;
}

.instagram-handle {
    margin-top: 22px;
    color: #1d331f;
    font-size: 14px;
    font-weight: bold;
}


/* MOBILE */

@media (max-width: 750px) {

    .instagram-section {
        padding: 75px 25px;
    }

    .instagram-inner h2 {
        font-size: 35px;
    }

    .instagram-text {
        font-size: 14px;
    }

    .instagram-btn {
        width: 100%;
        box-sizing: border-box;
    }

}