@font-face {
    font-family: 'Networkand';
    src: url('./fonts/Networkand.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #292929;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}



/* =====================================================
   NAVBAR
===================================================== */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar {
    width: 100%;
    min-height: 82px;
    padding: 10px 6%;
    background: rgba(255, 255, 255, 0.97);

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

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}



/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 260px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
}   

.logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    line-height: 1;
    color: #292929;
}

.logo-text h2 span {
    color: #b88b4a;
}

.logo-text small {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #777;
}



/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #b88b4a;
}



/* WHATSAPP */

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #25D366;
    color: white;

    padding: 12px 20px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.nav-whatsapp i {
    font-size: 20px;
}

.nav-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}



/* =====================================================
   HERO
===================================================== */

.hero {
    width: 100%;
    min-height: 90vh;

    background-image: url("img/image.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    position: relative;

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

    text-align: center;
}

.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.48);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    color: white;

    padding: 100px 20px 50px;
}

.hero-small {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: 58px;
    line-height: 1.15;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #e0b878;
}

.hero-content > p:not(.hero-small) {
    max-width: 650px;
    margin: auto;

    font-size: 16px;
    line-height: 1.8;

    color: #f2f2f2;
}

.hero-buttons {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn,
.whatsapp-btn {
    padding: 14px 25px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.primary-btn {
    background: #b88b4a;
    color: white;
}

.primary-btn:hover {
    background: #9d7339;
    transform: translateY(-2px);
}

.primary-btn i {
    margin-left: 8px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 7px;
}



/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading > p:first-child {
    font-size: 12px;

    color: #b88b4a;

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;

    font-size: 40px;

    color: #282828;
}

.section-heading h2 span {
    color: #b88b4a;
}

.heading-line {
    width: 55px;
    height: 2px;

    background: #b88b4a;

    margin: 15px auto;
}

.section-description {
    max-width: 650px;
    margin: auto;

    color: #777;

    line-height: 1.8;

    font-size: 14px;
}



/* =====================================================
   CATEGORY
===================================================== */

.categories {
    padding: 90px 6%;
    background: #faf9f6;
}

.category-container {
    display: grid;

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

    gap: 20px;

    max-width: 1200px;

    margin: auto;
}

.category-card {
    background: white;

    text-align: center;

    padding: 35px 15px;

    border: 1px solid #eee;

    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);

    border-color: #b88b4a;
}

.category-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    margin: 0 auto 18px;

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

    background: #f7efe4;

    color: #b88b4a;

    font-size: 25px;
}

.category-card h3 {
    font-family: 'Playfair Display', serif;

    font-size: 19px;

    margin-bottom: 7px;
}

.category-card p {
    font-size: 12px;

    color: #888;
}



/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    padding: 100px 6%;
    background: white;
}

.product-filter {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}

.filter-btn {
    background: transparent;

    border: 1px solid #ddd;

    color: #555;

    padding: 10px 22px;

    border-radius: 25px;

    cursor: pointer;

    font-size: 13px;

    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #b88b4a;

    border-color: #b88b4a;

    color: white;
}



/* PRODUCT GRID */

.product-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

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

    gap: 25px;
}



/* PRODUCT CARD */

.product-card {
    background: white;

    border: 1px solid #eee;

    overflow: hidden;

    position: relative;

    transition: 0.35s;

    border-radius: 4px;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}



/* PRODUCT IMAGE */

.product-image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #f4f4f4;

    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}



/* PRODUCT BADGE */

.product-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    background: #b88b4a;

    color: white;

    padding: 5px 10px;

    font-size: 10px;

    letter-spacing: 1px;
}



/* PRODUCT INFO */

.product-info {
    padding: 20px;
}

.product-category {
    color: #b88b4a;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 7px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;

    font-size: 21px;

    margin-bottom: 9px;

    color: #292929;
}

.product-description {
    color: #777;

    font-size: 12px;

    line-height: 1.7;

    min-height: 42px;

    margin-bottom: 15px;
}



/* PRICE */

.product-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;
}

.price {
    font-size: 20px;

    font-weight: 600;

    color: #292929;
}

.old-price {
    color: #aaa;

    text-decoration: line-through;

    font-size: 12px;

    margin-left: 5px;
}



/* BUY BUTTON */

.buy-btn {
    border: none;

    background: #25D366;

    color: white;

    padding: 10px 13px;

    border-radius: 4px;

    cursor: pointer;

    font-size: 12px;

    display: flex;

    align-items: center;

    gap: 6px;

    transition: 0.3s;
}

.buy-btn:hover {
    background: #1da851;

    transform: translateY(-2px);
}



/* =====================================================
   ABOUT
===================================================== */

.about-section {
    padding: 100px 8%;

    background: #faf9f6;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    height: 500px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-content {
    max-width: 600px;
}

.about-small {
    color: #b88b4a;

    letter-spacing: 3px;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 12px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.about-content h2 span {
    color: #b88b4a;
}

.about-content > p {
    color: #777;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 15px;
}



/* FEATURES */

.about-features {
    margin: 25px 0;
}

.about-features > div {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;
}

.about-features i {
    width: 40px;
    height: 40px;

    border-radius: 50%;

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

    background: #f1e4d1;

    color: #b88b4a;
}

.about-features h4 {
    font-size: 14px;

    margin-bottom: 3px;
}

.about-features p {
    font-size: 11px;

    color: #888;
}

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #25D366;

    color: white;

    padding: 13px 22px;

    font-size: 13px;

    border-radius: 4px;

    transition: 0.3s;
}

.about-btn:hover {
    background: #1da851;
}



/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section {
    padding: 100px 6%;

    background: white;
}

.why-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

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

    gap: 25px;
}

.why-card {
    text-align: center;

    padding: 35px 20px;

    border: 1px solid #eee;

    transition: 0.3s;
}

.why-card:hover {
    border-color: #b88b4a;

    transform: translateY(-5px);
}

.why-card > i {
    font-size: 30px;

    color: #b88b4a;

    margin-bottom: 18px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;

    font-size: 20px;

    margin-bottom: 10px;
}

.why-card p {
    color: #777;

    font-size: 12px;

    line-height: 1.7;
}



/* =====================================================
   WHATSAPP CTA
===================================================== */

.whatsapp-section {
    padding: 60px 8%;

    background: #25D366;

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.whatsapp-section > div {
    display: grid;

    grid-template-columns: auto 1fr;

    column-gap: 18px;
}

.whatsapp-section > div > i {
    grid-row: span 2;

    font-size: 55px;
}

.whatsapp-section h2 {
    font-family: 'Playfair Display', serif;

    font-size: 30px;
}

.whatsapp-section p {
    margin-top: 5px;

    font-size: 13px;

    opacity: 0.9;
}

.whatsapp-section > a {
    background: white;

    color: #168c42;

    padding: 14px 23px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;
}



/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #202020;

    color: white;

    padding: 70px 7% 0;
}

.footer-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 50px;
}



/* FOOTER LOGO */

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;

    object-fit: contain;
}

.footer-logo h2 {
    font-family: 'Playfair Display', serif;

    font-size: 23px;
}

.footer-logo h2 span {
    color: #b88b4a;
}

.footer-logo small {
    color: #999;

    font-size: px;

    letter-spacing: 1px;
}

.footer-about > p {
    color: #999;

    font-size: 12px;

    line-height: 1.8;

    max-width: 350px;
}



/* FOOTER COLUMNS */

.footer-column h3 {
    font-family: 'Playfair Display', serif;

    font-size: 19px;

    margin-bottom: 20px;
}

.footer-column > a {
    display: block;

    color: #999;

    font-size: 12px;

    margin-bottom: 12px;

    transition: 0.3s;
}

.footer-column > a:hover {
    color: #b88b4a;

    padding-left: 4px;
}



/* SOCIAL */

.social-icons {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;

    display: flex;

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

    background: #303030;

    border-radius: 50%;

    color: white;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #b88b4a;
}



/* CONTACT */

.contact-item {
    color: #999;

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 15px;

    display: flex;

    align-items: flex-start;

    gap: 10px;
}

.contact-item i {
    color: #b88b4a;

    margin-top: 3px;
}



/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #333;

    min-height: 65px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #777;

    font-size: 11px;
}



/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp {
    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;
    height: 58px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

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

    font-size: 29px;

    z-index: 999;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.2);

    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}



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

@media (max-width: 1000px) {

    .nav-menu {
        gap: 15px;
    }

    .product-container {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .category-container {
        grid-template-columns:
            repeat(3, 1fr);
    }

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

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

}



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

@media (max-width: 700px) {

    .navbar {
        padding: 10px 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-whatsapp span {
        display: none;
    }

    .nav-whatsapp {
        width: 42px;
        height: 42px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }

    .hero {
        min-height: 80vh;

        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-content > p:not(.hero-small) {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .categories,
    .products-section,
    .about-section,
    .why-section {
        padding: 70px 20px;
    }

    .category-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .category-card {
        padding: 25px 10px;
    }

    .product-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .product-image {
        height: 230px;
    }

    .product-info {
        padding: 14px;
    }

    .product-info h3 {
        font-size: 17px;
    }

    .product-description {
        font-size: 11px;
    }

    .product-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .buy-btn {
        width: 100%;

        justify-content: center;
    }

    .about-section {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        height: 350px;
    }

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

    .why-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .why-card {
        padding: 25px 12px;
    }

    .whatsapp-section {
        flex-direction: column;

        text-align: center;

        padding: 50px 20px;
    }

    .whatsapp-section > div {
        display: block;
    }

    .whatsapp-section > div > i {
        display: block;

        margin-bottom: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        gap: 7px;

        padding: 15px 0;
    }

}



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

@media (max-width: 450px) {

    .logo-text h2 {
        font-size: 21px;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-small {
        font-size: 10px;
    }

    .category-container {
        grid-template-columns: 1fr 1fr;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
    }

}


/* =========================================
   OPEN BUTTON
========================================= */

.open-btn{

    background: #e74c3c;

    color: white;

    border: none;

    padding: 13px 28px;

    border-radius: 6px;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;

}


.open-btn:hover{

    background: #c0392b;

    transform: translateY(-2px);

}



/* =========================================
   PRODUCT CARD CLICK EFFECT
========================================= */

.product-card{

    cursor: pointer;

    transition: 0.3s ease;

}


.product-card:hover{

    transform: translateY(-8px);

    box-shadow: 0px 15px 35px rgba(0,0,0,0.15);

}



/* =========================================
   PRODUCT MODAL BACKGROUND
========================================= */

.product-modal{

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

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

    z-index: 9999;

    justify-content: center;

    align-items: center;

    padding: 20px;

}



/* =========================================
   MODAL CONTENT
========================================= */

.modal-content{

    width: 100%;

    max-width: 1000px;

    max-height: 90vh;

    overflow-y: auto;

    background: white;

    display: grid;

    grid-template-columns: 1fr 1fr;

    position: relative;

    border-radius: 15px;

    overflow: hidden;

    animation: popup 0.3s ease;

}


@keyframes popup{

    from{

        transform: scale(0.8);

        opacity: 0;

    }


    to{

        transform: scale(1);

        opacity: 1;

    }

}



/* =========================================
   CLOSE BUTTON
========================================= */

.close-modal{

    position: absolute;

    top: 15px;

    right: 20px;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border: none;

    background: #e74c3c;

    color: white;

    font-size: 32px;

    cursor: pointer;

    z-index: 10;

}



/* =========================================
   MODAL IMAGE
========================================= */

.modal-image{

    position: relative;

    background: #f5f5f5;

}


.modal-image img{

    width: 100%;

    height: 100%;

    min-height: 500px;

    object-fit: cover;

    display: block;

}


.modal-badge{

    position: absolute;

    top: 20px;

    left: 20px;

    background: #e74c3c;

    color: white;

    padding: 10px 20px;

    font-size: 14px;

    letter-spacing: 1px;

    z-index: 2;

}



/* =========================================
   MODAL INFORMATION
========================================= */

.modal-info{

    padding: 60px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.modal-category{

    color: #e74c3c;

    font-size: 14px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 15px;

}


.modal-info h2{

    font-size: 38px;

    margin-bottom: 25px;

    color: #262626;

}


.modal-description{

    font-size: 18px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 30px;

}



/* =========================================
   PRICE
========================================= */

.modal-price-box{

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

}


.modal-price{

    font-size: 32px;

    font-weight: bold;

    color: #e74c3c;

}


.modal-old-price{

    font-size: 18px;

    color: gray;

    text-decoration: line-through;

}



/* =========================================
   WHATSAPP BUY BUTTON
========================================= */

.modal-buy-btn{

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 8px;

    background: #25D366;

    color: white;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}


.modal-buy-btn:hover{

    transform: translateY(-3px);

    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);

}


.modal-buy-btn i{

    margin-right: 10px;

}



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

@media(max-width: 768px){

    .modal-content{

        grid-template-columns: 1fr;

        max-width: 500px;

    }


    .modal-image img{

        min-height: 300px;

        max-height: 400px;

    }


    .modal-info{

        padding: 35px 25px;

    }


    .modal-info h2{

        font-size: 28px;

    }

}


/* =========================================
   RESPONSIVE NAVBAR
========================================= */

nav {
    width: 100%;
    height: 90px;
    background: white;

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

    padding: 0 55px;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 999;

    border-bottom: 1px solid rgba(0,0,0,0.08);
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 210px;
    height: auto;
    display: block;
}


/* =========================================
   DESKTOP MENU
========================================= */

.menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu a {
    text-decoration: none;
    color: #333;

    font-size: 18px;
    font-weight: 500;

    padding: 12px 18px;

    transition: 0.3s;
}

.menu a:hover {
    color: #b88a45;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.nav-whatsapp a {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #25D366;
    color: white;

    padding: 8px 16px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    transition: 0.3s;
}

.nav-whatsapp a:hover {
    transform: translateY(-2px);
}


/* =========================================
   HAMBURGER
========================================= */

.hamburger {
    display: none;

    width: 45px;
    height: 45px;

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

    font-size: 25px;

    cursor: pointer;
}


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

@media screen and (max-width: 768px) {

    nav {
        height: 75px;

        padding: 0 18px;

        position: fixed;
    }


    /* LOGO मोठा आणि clear */

    .logo img {
        width: 135px;
        max-width: 45vw;
    }


    /* Desktop menu hide */

    .menu {

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        background: white;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 10px 0 20px;

        box-shadow: 0 10px 20px rgba(0,0,0,0.12);

        display: none;
    }


    /* Menu open झाल्यावर */

    .menu.active {
        display: flex;
    }


    .menu a {

        width: 100%;

        padding: 16px 25px;

        font-size: 17px;

        border-bottom: 1px solid rgba(0,0,0,0.05);
    }


    /* WhatsApp button mobile menu मध्ये ठेवण्यासाठी */

    .nav-whatsapp {

        display: none;
    }


    /* Hamburger show */

    .hamburger {

        display: flex;
    }


    /* Hero Section */



    .h-text {

        width: 90%;

        max-width: 100%;
    }


    .h-text h1 {

        font-size: 2.4em;

        line-height: 1.25;
    }

}

/* =========================================
   PRODUCT DETAILS PAGE
========================================= */

.product-details-page {

    min-height: 100vh;

    padding: 130px 8% 80px;

    background: #faf9f6;

}


/* BACK BUTTON */

.back-products {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    color: #555;

    font-size: 15px;

    margin-bottom: 30px;

}


.back-products:hover {

    color: #b88b4a;

}


/* MAIN CONTAINER */

.product-details-container {

    width: 100%;

    max-width: 1150px;

    margin: auto;

    background: white;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.10);

}


/* =========================================
   IMAGE
========================================= */

.product-details-image {

    position: relative;

    background: #f3f3f3;

    min-height: 600px;

}


.product-details-image img {

    width: 100%;

    height: 100%;

    min-height: 600px;

    object-fit: cover;

    display: block;

}


/* BADGE */

.details-badge {

    position: absolute;

    top: 25px;

    left: 25px;

    z-index: 2;

    background: #b88b4a;

    color: white;

    padding: 9px 18px;

    font-size: 13px;

    letter-spacing: 1px;

}


/* =========================================
   INFORMATION
========================================= */

.product-details-info {

    padding: 70px 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.details-category {

    color: #b88b4a;

    font-size: 14px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 15px;

}


.product-details-info h1 {

    font-family: 'Playfair Display', serif;

    font-size: 42px;

    line-height: 1.2;

    color: #222;

    margin-bottom: 25px;

}


.details-description {

    color: #666;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 30px;

}


/* =========================================
   PRICE
========================================= */

.details-price {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

}


.details-current-price {

    font-size: 30px;

    font-weight: 700;

    color: #222;

}


.details-old-price {

    font-size: 17px;

    color: #999;

    text-decoration: line-through;

}


/* =========================================
   PRODUCT NOTES
========================================= */

.product-note {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #666;

    font-size: 14px;

    margin-bottom: 12px;

}


.product-note i {

    color: #b88b4a;

}


/* =========================================
   BUY BUTTON
========================================= */

.details-buy-btn {

    margin-top: 25px;

    width: 100%;

    padding: 17px 25px;

    border: none;

    border-radius: 7px;

    background: #25D366;

    color: white;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

}


.details-buy-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(37,211,102,0.25);

}


.details-buy-btn i {

    margin-right: 8px;

    font-size: 20px;

}


/* =========================================
   PRODUCT NOT FOUND
========================================= */

.product-not-found {

    grid-column: 1 / -1;

    text-align: center;

    padding: 100px 30px;

}


.product-not-found h2 {

    font-family: 'Playfair Display', serif;

    font-size: 35px;

    margin-bottom: 15px;

}


.product-not-found p {

    color: #777;

    margin-bottom: 25px;

}


.product-not-found a {

    display: inline-block;

    padding: 12px 25px;

    background: #b88b4a;

    color: white;

    text-decoration: none;

    border-radius: 5px;

}


/* =========================================
   MOBILE PRODUCT DETAILS
========================================= */

/* =========================================
   SMALL MOBILE PRODUCT CARDS
========================================= */

@media (max-width: 450px) {

    /* 2 PRODUCTS IN ONE ROW */

    .product-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }


    /* SMALL PRODUCT IMAGE */

    .product-image {
        height: 160px;
    }


    /* CARD INFORMATION */

    .product-info {
        padding: 10px;
    }


    /* CATEGORY */

    .product-category {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }


    /* PRODUCT NAME */

    .product-info h3 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 6px;
    }


    /* DESCRIPTION */

    .product-description {
        font-size: 10px;
        line-height: 1.5;
        min-height: 30px;
        margin-bottom: 8px;
    }


    /* PRICE + OPEN BUTTON */

    .product-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }


    .price {
        font-size: 17px;
    }


    .old-price {
        font-size: 10px;
    }


    /* OPEN BUTTON */

    .open-btn {
        width: 100%;
        padding: 8px 10px;
        font-size: 13px;
        border-radius: 5px;
    }


    /* BADGE */

    .product-badge {
        top: 8px;
        left: 8px;
        padding: 4px 7px;
        font-size: 8px;
    }

}


/* =========================================
   PRODUCT DETAILS PAGE
========================================= */

.product-details-page {

    min-height: 100vh;

    padding: 130px 7% 80px;

    background: #faf9f6;

}


/* BACK */

.back-products {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 30px;

    text-decoration: none;

    color: #555;

    font-size: 15px;

}


.back-products:hover {

    color: #b88b4a;

}


/* CONTAINER */

.product-details-container {

    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.10);

}


/* IMAGE */

.product-details-image {

    position: relative;

    min-height: 600px;

    background: #f5f5f5;

}


.product-details-image img {

    width: 100%;

    height: 600px;

    object-fit: cover;

    display: block;

}


/* BADGE */

.details-badge {

    position: absolute;

    top: 25px;

    left: 25px;

    z-index: 2;

    background: #b88b4a;

    color: white;

    padding: 9px 18px;

    font-size: 12px;

    letter-spacing: 1px;

}


/* INFORMATION */

.product-details-info {

    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.details-category {

    color: #b88b4a;

    font-size: 13px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 15px;

}


.product-details-info h1 {

    font-family:
        'Playfair Display',
        serif;

    font-size: 42px;

    line-height: 1.2;

    color: #222;

    margin-bottom: 22px;

}


.details-description {

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 25px;

}


/* PRICE */

.details-price {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}


.details-current-price {

    font-size: 30px;

    font-weight: 700;

}


.details-old-price {

    color: #999;

    font-size: 16px;

    text-decoration: line-through;

}


/* NOTES */

.product-note {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #666;

    font-size: 14px;

    margin-bottom: 10px;

}


.product-note i {

    color: #b88b4a;

}


/* BUY */

.details-buy-btn {

    width: 100%;

    margin-top: 25px;

    padding: 16px;

    border: none;

    border-radius: 6px;

    background: #25D366;

    color: white;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

}


.details-buy-btn:hover {

    opacity: 0.9;

}


/* NOT FOUND */

.product-not-found {

    grid-column: 1 / -1;

    text-align: center;

    padding: 100px 20px;

}


.product-not-found h2 {

    font-family:
        'Playfair Display',
        serif;

    margin-bottom: 15px;

}


.product-not-found a {

    display: inline-block;

    background: #b88b4a;

    color: white;

    padding: 12px 25px;

    text-decoration: none;

    border-radius: 5px;

}


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

@media (max-width: 768px) {


    .product-details-page {

        padding: 100px 15px 50px;

    }


    .product-details-container {

        grid-template-columns: 1fr;

    }


    .product-details-image {

        min-height: 330px;

        height: 330px;

    }


    .product-details-image img {

        height: 330px;

    }


    .product-details-info {

        padding: 30px 22px 35px;

    }


    .product-details-info h1 {

        font-size: 28px;

    }


    .details-description {

        font-size: 14px;

    }


    .details-current-price {

        font-size: 25px;

    }

}


/* =========================================
   WHY CHOOSE US - MOBILE
   2 CARDS IN ONE ROW
========================================= */

@media (max-width: 768px) {

    .why-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }

    .why-card {
        width: 100%;
        min-width: 0;
        padding: 25px 12px;
        min-height: 190px;
    }

    .why-card i {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .why-card h3 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 11px;
        line-height: 1.5;
        margin: 0;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .why-container {
        gap: 8px;
    }

    .why-card {
        padding: 20px 8px;
        min-height: 175px;
    }

    .why-card i {
        font-size: 24px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 10px;
    }

}
/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
        align-items: start;
    }

    /* ABOUT - FULL WIDTH */

    .footer-about {
        grid-column: 1 / -1;
    }


    /* QUICK LINKS */

    .footer-container > .footer-column:nth-child(2) {
        grid-column: 1;
    }


    /* PRODUCTS */

    .footer-container > .footer-column:nth-child(3) {
        grid-column: 2;
    }


    /* CONTACT - FULL WIDTH */

    .footer-container > .footer-column:nth-child(4) {
        grid-column: 1 / -1;
    }


    /* FOOTER TEXT */

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .footer-column > a {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-column p {
        font-size: 13px;
        line-height: 1.7;
    }

}


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

@media (max-width: 400px) {

    .footer-container {
        gap: 28px 12px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column > a {
        font-size: 13px;
    }

    .footer-column p {
        font-size: 12px;
    }

}
/* =========================================
   FOOTER - CREATED BY FEMOSYS
========================================= */

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.created-by {
    display: flex !important;
    align-items: center;
    gap: 7px;

    margin: 0;
    color: #aaa;

    font-family: Arial, sans-serif;
    font-size: 13px;
}

.created-by a {
    display: inline-block;

    color: #1769c2 !important;
    text-decoration: none;

    /*
       Brush / Handwritten style
    */
   

    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;

    line-height: 1;

    cursor: pointer;

    transition: 0.3s ease;
}

.created-by a:hover {
    color: #0b55a5 !important;
    transform: scale(1.05);
}


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

@media (max-width: 768px) {

    .footer-bottom {
        justify-content: center;
        padding-top: 18px;
    }

    .created-by {
        font-size: 11px;
        gap: 5px;
    }

    .created-by a {
        font-size: 21px;
        letter-spacing: 0.8px;
    }

}

.product-description {
    white-space: pre-line;
}


.footer-logo {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 240px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}


@media (max-width: 768px) {

    .footer-logo img {
        width: 190px;
    }

    .created-by {
        font-size: 13px;
        gap: 5px;
    }


}

/* =====================================================
   FINAL MOBILE NAVIGATION FIX
===================================================== */

@media screen and (max-width: 768px) {

    /* HEADER */
    header {
        position: relative;
        z-index: 1000;
    }

    /* NAVBAR */
    nav {
        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 75px;

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

        padding: 0 18px;

        background: #ffffff;

        z-index: 9999;
    }

    /* LOGO */
    .logo {
        display: flex;
        align-items: center;

        z-index: 10001;
    }

    .logo img {
        width: 135px;
        height: auto;

        max-width: 45vw;

        display: block;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex !important;

        width: 45px;
        height: 45px;

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

        font-size: 25px;

        cursor: pointer;

        position: relative;

        z-index: 10002;

        color: #222;

        pointer-events: auto;
    }

    /* MOBILE MENU */
    .menu {
        position: fixed !important;

        top: 75px;
        left: 0;

        width: 100%;

        background: #ffffff;

        display: none !important;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 0;

        margin: 0;

        z-index: 10000;

        box-shadow: 0 10px 25px rgba(0,0,0,0.15);

        pointer-events: auto;
    }

    /* MENU OPEN */
    .menu.active {
        display: flex !important;
    }

    /* MENU LINKS */
    .menu a {
        display: block !important;

        width: 100%;

        padding: 18px 25px;

        margin: 0;

        color: #333;

        background: #ffffff;

        text-decoration: none;

        font-size: 17px;

        font-weight: 500;

        border-bottom: 1px solid #eeeeee;

        cursor: pointer;

        pointer-events: auto;
    }

    .menu a:hover {
        color: #b88a45;
        background: #fafafa;
    }

    /* WHATSAPP HEADER */
    .nav-whatsapp {
        display: none !important;
    }

}

/* =========================================
   MOBILE TOUCH FIX
========================================= */

@media (max-width: 768px) {

    .product-filter {
        position: relative;
        z-index: 20;
    }

    .filter-btn {
        position: relative;
        z-index: 21;

        pointer-events: auto;
        touch-action: manipulation;

        cursor: pointer;
    }

    .product-container {
        position: relative;
        z-index: 1;
    }

    .product-card {
        position: relative;
        z-index: 2;

        pointer-events: auto;
        touch-action: manipulation;

        cursor: pointer;
    }

    .open-btn {
        position: relative;
        z-index: 3;

        pointer-events: auto;
        touch-action: manipulation;
    }

}


/* =========================================
   PRODUCT DETAILS IMAGE - MOBILE
========================================= */

@media (max-width: 768px) {

    .product-details-image {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .product-details-image img {
        width: 100%;
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
        object-fit: cover;
    }

}