﻿

    .jhula-theme a {
        text-decoration: none;
    }

    /* TOP HEADER */

    .jhula-theme .top-header {
        background: #1f2d2a;
        color: white;
        padding: 10px 0;
        font-size: 14px;
    }

    /* HEADER */

    .jhula-theme .main-header {
        background: white;
        padding: 18px 0;
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }

    .jhula-theme .logo {
        font-size: 32px;
        font-weight: 700;
        color: #1f2d2a;
    }

        .jhula-theme .logo span {
            color: #c39b6a;
        }

    .jhula-theme .menu a {
        color: #1f1f1f;
        margin: 0 16px;
        font-weight: 500;
        transition: 0.3s;
    }

        .jhula-theme .menu a:hover {
            color: #c39b6a;
        }

    .jhula-theme .header-icons a {
        color: #1f1f1f;
        margin-left: 18px;
        font-size: 20px;
        position: relative;
    }

    .jhula-theme .cart-badge {
        position: absolute;
        top: -8px;
        right: -12px;
        background: #c39b6a;
        color: white;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* HERO SECTION */

    .jhula-theme .hero-section {
        padding: 100px 0;
        background: linear-gradient(to right, rgba(31,45,42,0.92), rgba(31,45,42,0.72)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop') center/cover;
        color: white;
    }

    .jhula-theme .hero-badge {
        display: inline-block;
        background: rgba(255,255,255,0.12);
        padding: 8px 18px;
        border-radius: 50px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .jhula-theme .hero-title {
        font-size: 64px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 25px;
    }

        .jhula-theme .hero-title span {
            color: #d4b084;
        }

    .jhula-theme .hero-desc {
        font-size: 18px;
        max-width: 600px;
        color: rgba(255,255,255,0.85);
        margin-bottom: 35px;
    }

    /* BUTTON */

    .jhula-theme .btn-theme {
        background: #c39b6a;
        color: white;
        padding: 14px 35px;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
        border: none;
    }

        .jhula-theme .btn-theme:hover {
            background: #ab8250;
            color: white;
            transform: translateY(-2px);
        }

    /* SECTION */

    .jhula-theme .section-padding {
        padding: 90px 0;
    }

    .jhula-theme .section-subtitle {
        color: #c39b6a;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .jhula-theme .section-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1f2d2a;
    }

    .jhula-theme .section-desc {
        color: #666;
        max-width: 700px;
        margin: auto;
    }

    /* CATEGORY */

    .jhula-theme .category-card {
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        height: 420px;
        cursor: pointer;
    }

        .jhula-theme .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .jhula-theme .category-card:hover img {
            transform: scale(1.08);
        }

    .jhula-theme .category-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        display: flex;
        align-items: end;
        padding: 35px;
    }

    .jhula-theme .category-content h3 {
        color: white;
        font-size: 34px;
        font-weight: 700;
    }

    .jhula-theme .category-content p {
        color: rgba(255,255,255,0.85);
        margin-top: 8px;
    }

    /* PRODUCT CARD */

    .jhula-theme .product-card {
        background: white;
        border-radius: 22px;
        overflow: hidden;
        transition: 0.3s;
        height: 100%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    }

        .jhula-theme .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

    .jhula-theme .product-image {
        position: relative;
        overflow: hidden;
        background: #f5f5f5;
    }

        .jhula-theme .product-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: 0.4s;
        }

    .jhula-theme .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    .jhula-theme .product-tag {
        position: absolute;
        top: 18px;
        left: 18px;
        background: #1f2d2a;
        color: white;
        padding: 7px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
    }

    .jhula-theme .wishlist-btn {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1f2d2a;
    }

    .jhula-theme .product-content {
        padding: 24px;
    }

    .jhula-theme .product-category {
        color: #999;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .jhula-theme .product-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #1f2d2a;
    }

    .jhula-theme .product-price {
        font-size: 24px;
        font-weight: 700;
        color: #c39b6a;
    }

    .jhula-theme .old-price {
        color: #999;
        text-decoration: line-through;
        margin-left: 8px;
        font-size: 16px;
    }

    .jhula-theme .btn-cart {
        width: 100%;
        margin-top: 20px;
        border-radius: 14px;
        background: #1f2d2a;
        color: white;
        padding: 14px;
        border: none;
        font-weight: 600;
        transition: 0.3s;
    }

        .jhula-theme .btn-cart:hover {
            background: #c39b6a;
        }

    /* FEATURES */

    .jhula-theme .feature-box {
        background: white;
        border-radius: 22px;
        padding: 35px;
        text-align: center;
        height: 100%;
        transition: 0.3s;
    }

        .jhula-theme .feature-box:hover {
            transform: translateY(-5px);
        }

        .jhula-theme .feature-box i {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background: #f7f2eb;
            color: #c39b6a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 20px;
        }

        .jhula-theme .feature-box h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }

    /* FOOTER */

    .jhula-theme .footer {
        background: #1b2523;
        color: rgba(255,255,255,0.8);
        padding: 70px 0 25px;
    }

    .jhula-theme .footer-logo {
        font-size: 34px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

        .jhula-theme .footer-logo span {
            color: #c39b6a;
        }

    .jhula-theme .footer h5 {
        color: white;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .jhula-theme .footer ul {
        list-style: none;
        padding: 0;
    }

        .jhula-theme .footer ul li {
            margin-bottom: 12px;
        }

            .jhula-theme .footer ul li a {
                color: rgba(255,255,255,0.8);
                transition: 0.3s;
            }

                .jhula-theme .footer ul li a:hover {
                    color: #c39b6a;
                }

    .jhula-theme .copyright {
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 50px;
        padding-top: 20px;
        text-align: center;
    }

    /* MOBILE NAV */

    .jhula-theme .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 12px 0;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
        z-index: 999;
    }

        .jhula-theme .mobile-bottom-nav a {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #555;
            font-size: 13px;
        }

        .jhula-theme .mobile-bottom-nav i {
            font-size: 18px;
            margin-bottom: 4px;
        }

    /* LISTING HERO */

    .jhula-theme .listing-hero-section {
        position: relative;
        padding: 120px 0;
        overflow: hidden;
        background: linear-gradient(rgba(15,25,22,0.75), rgba(15,25,22,0.75)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
    }

    .jhula-theme .listing-hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.15);
    }

    .jhula-theme .listing-hero-content {
        position: relative;
        z-index: 2;
        max-width: 760px;
    }

    .jhula-theme .listing-mini-badge {
        display: inline-block;
        padding: 10px 24px;
        border-radius: 50px;
        background: rgba(255,255,255,0.12);
        color: white;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 28px;
        backdrop-filter: blur(10px);
    }

    .jhula-theme .listing-hero-title {
        font-size: 68px;
        line-height: 1.1;
        font-weight: 700;
        color: white;
        margin-bottom: 25px;
    }
.jhula-theme .thankyou-hero-section .listing-hero-title {
    font-size: 56px;
    margin-bottom: 18px;
}
        .jhula-theme .listing-hero-title span {
            color: #d4b084;
        }

    .jhula-theme .listing-hero-desc {
        font-size: 20px;
        line-height: 1.8;
        color: rgba(255,255,255,0.88);
        max-width: 700px;
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .jhula-theme .hero-title {
        font-size: 44px;
    }

    .jhula-theme .section-title {
        font-size: 34px;
    }

    .jhula-theme .menu {
        display: none;
    }

    .jhula-theme .listing-hero-section {
        padding: 90px 0;
    }

    .jhula-theme .listing-hero-title {
        font-size: 48px;
    }
}

@media(max-width:576px) {

    .jhula-theme {
        padding-bottom: 70px;
    }

        .jhula-theme .hero-section {
            padding: 70px 0;
        }

        .jhula-theme .hero-title {
            font-size: 34px;
        }

        .jhula-theme .hero-desc {
            font-size: 16px;
        }

        .jhula-theme .section-title {
            font-size: 28px;
        }

        .jhula-theme .category-card {
            height: 300px;
        }

        .jhula-theme .logo {
            font-size: 24px;
        }

        .jhula-theme .header-icons a {
            margin-left: 12px;
            font-size: 18px;
        }

        .jhula-theme .top-header {
            font-size: 12px;
        }

        .jhula-theme .listing-hero-section {
            padding: 70px 0;
        }

        .jhula-theme .listing-hero-title {
            font-size: 34px;
            line-height: 1.25;
        }

        .jhula-theme .listing-hero-desc {
            font-size: 15px;
            line-height: 1.7;
        }

        .jhula-theme .listing-mini-badge {
            font-size: 11px;
            padding: 8px 18px;
        }
}
.jhula-theme .modern-listing-header {
    text-align: center;
    padding: 50px 0 60px;
}

.jhula-theme .listing-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f2ece4;
    color: #1f2d2a;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 14px;
}

    .jhula-theme .listing-badge i {
        color: #c39b6a;
    }

.jhula-theme .listing-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2d2a;
    margin-bottom: 20px;
}

    .jhula-theme .listing-title span {
        color: #c39b6a;
    }

.jhula-theme .listing-desc {
    max-width: 750px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* MOBILE */

@media(max-width:768px) {

    .jhula-theme .modern-listing-header {
        padding: 35px 0 40px;
    }

    .jhula-theme .listing-title {
        font-size: 34px;
    }

    .jhula-theme .listing-desc {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 10px;
    }

    .jhula-theme .listing-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
}
/* =========================
   MODERN CART
========================= */

.jhula-theme .cart-hero-section {
    padding: 110px 0;
    background: linear-gradient(rgba(15,25,22,0.82), rgba(15,25,22,0.82)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.jhula-theme .modern-cart-card,
.jhula-theme .modern-summary-card {
    background: white;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.jhula-theme .modern-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .jhula-theme .modern-cart-header h3,
    .jhula-theme .modern-summary-title {
        font-size: 30px;
        font-weight: 700;
        color: #1f2d2a;
    }

.jhula-theme .modern-cart-item {
    display: flex;
    gap: 24px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.jhula-theme .modern-cart-image img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 18px;
}

.jhula-theme .modern-cart-content {
    flex: 1;
}

.jhula-theme .modern-cart-brand {
    color: #999;
    margin-bottom: 8px;
}

.jhula-theme .modern-cart-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.jhula-theme .modern-cart-price {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

    .jhula-theme .modern-cart-price span {
        color: #c39b6a;
        font-weight: 700;
    }

.jhula-theme .modern-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.jhula-theme .modern-qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #f3f3f3;
    font-size: 20px;
    font-weight: 700;
}

.jhula-theme .modern-qty-input {
    width: 70px;
    height: 42px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-weight: 700;
}

.jhula-theme .modern-remove-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: #fff0f0;
    color: #e53935;
}

.jhula-theme .modern-summary-row,
.jhula-theme .modern-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
}

.jhula-theme .modern-summary-total {
    border-top: 1px solid #eee;
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
}

.jhula-theme .modern-address-card {
    margin-top: 30px;
    padding: 24px;
    border-radius: 20px;
    background: #f7f7f7;
}

    .jhula-theme .modern-address-card h5 {
        margin-bottom: 15px;
        font-weight: 700;
    }

.jhula-theme .modern-warning-box {
    margin-top: 25px;
    background: #fff8e7;
    border: 1px solid #f6d58c;
    color: #8a6d3b;
    border-radius: 16px;
    padding: 18px;
}

.jhula-theme .modern-place-order-btn,
.jhula-theme .modern-continue-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.jhula-theme .modern-place-order-btn {
    background: #1f2d2a;
    color: white;
}

    .jhula-theme .modern-place-order-btn:hover {
        background: #c39b6a;
        color: white;
    }

.jhula-theme .modern-continue-btn {
    background: #f5f5f5;
    color: #1f2d2a;
}

    .jhula-theme .modern-continue-btn:hover {
        background: #e9e9e9;
    }

.jhula-theme .modern-secure-text {
    margin-top: 22px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.jhula-theme .modern-empty-cart {
    background: white;
    padding: 90px 30px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

    .jhula-theme .modern-empty-cart i {
        font-size: 80px;
        color: #c39b6a;
        margin-bottom: 25px;
    }

    .jhula-theme .modern-empty-cart h3 {
        font-size: 36px;
        margin-bottom: 15px;
    }

@media(max-width:768px) {

    .jhula-theme .modern-cart-item {
        flex-direction: column;
    }

    .jhula-theme .modern-cart-image img {
        width: 100%;
        height: auto;
    }

    .jhula-theme .modern-cart-title {
        font-size: 20px;
    }

    .jhula-theme .modern-summary-card {
        margin-top: 20px;
    }

    .jhula-theme .modern-cart-header h3,
    .jhula-theme .modern-summary-title {
        font-size: 24px;
    }
}
/* =========================
   THANK YOU PAGE
========================= */

.jhula-theme .thankyou-hero-section {
    padding: 55px 0 70px;
    background: linear-gradient(rgba(15,25,22,0.82), rgba(15,25,22,0.82)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.jhula-theme .thankyou-success-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
    font-size: 34px;
    backdrop-filter: blur(10px);
}

.jhula-theme .modern-order-top-card,
.jhula-theme .modern-order-card,
.jhula-theme .modern-order-summary-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.jhula-theme .modern-order-info span {
    display: block;
    color: #888;
    margin-bottom: 8px;
    font-size: 14px;
}

.jhula-theme .modern-order-info h5 {
    font-weight: 700;
    margin: 0;
    color: #1f2d2a;
}

.jhula-theme .modern-order-total {
    font-size: 32px;
    color: #c39b6a;
    font-weight: 700;
}

.jhula-theme .modern-order-card-header {
    margin-bottom: 25px;
}

    .jhula-theme .modern-order-card-header h3 {
        font-size: 32px;
        font-weight: 700;
        color: #1f2d2a;
    }

.jhula-theme .modern-order-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
}

    .jhula-theme .modern-order-product h4 {
        font-size: 20px;
        margin-bottom: 8px;
        color: #1f2d2a;
    }

.jhula-theme .modern-order-product-meta {
    color: #888;
}

.jhula-theme .modern-order-product-price {
    font-size: 22px;
    font-weight: 700;
    color: #c39b6a;
}

@media(max-width:768px) {

    .jhula-theme .modern-order-product {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .jhula-theme .modern-order-total {
        font-size: 26px;
    }

    .jhula-theme .modern-order-card-header h3 {
        font-size: 26px;
    }
    .jhula-theme .thankyou-hero-section .listing-hero-title {
        font-size: 34px;
    }

    .jhula-theme .thankyou-hero-section {
        padding: 45px 0 55px;
    }
}
.jhula-theme .thankyou-hero-section .listing-hero-desc {
    font-size: 18px;
    max-width: 760px;
    margin: auto;
}

.jhula-theme .thankyou-hero-section .listing-mini-badge {
    margin-bottom: 20px;
}

/* =========================
   CONTACT PAGE
========================= */

.jhula-theme .contact-hero-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(rgba(15,25,22,0.80), rgba(15,25,22,0.80)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.jhula-theme .contact-hero-overlay {
    position: absolute;
    inset: 0;
}

.jhula-theme .modern-contact-info-card,
.jhula-theme .modern-contact-form-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    height: 100%;
}

.jhula-theme .contact-info-desc {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.jhula-theme .modern-contact-box {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: center;
}

.jhula-theme .contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #f7f2eb;
    color: #c39b6a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.jhula-theme .contact-label {
    display: block;
    color: #888;
    margin-bottom: 5px;
}

.jhula-theme .modern-contact-box h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #1f2d2a;
}

.jhula-theme .contact-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 40px;
}

.jhula-theme .contact-feature-item {
    background: #f8f6f2;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

    .jhula-theme .contact-feature-item i {
        color: #c39b6a;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .jhula-theme .contact-feature-item span {
        display: block;
        font-weight: 600;
        color: #1f2d2a;
    }

.jhula-theme .modern-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1f2d2a;
}

.jhula-theme .modern-form-control {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 15px;
    background: #fafafa;
    transition: 0.3s;
}

    .jhula-theme .modern-form-control:focus {
        border-color: #c39b6a;
        background: white;
        outline: none;
        box-shadow: none;
    }

.jhula-theme .modern-textarea {
    height: 160px;
    resize: none;
}

.jhula-theme .modern-contact-btn {
    border: none;
    background: #1f2d2a;
    color: white;
    padding: 16px 35px;
    border-radius: 18px;
    font-weight: 600;
    transition: 0.3s;
}

    .jhula-theme .modern-contact-btn:hover {
        background: #c39b6a;
    }

.jhula-theme .modern-map-section {
    margin-top: 70px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

    .jhula-theme .modern-map-section iframe {
        width: 100%;
        height: 450px;
        border: 0;
    }

/* MOBILE */

@media(max-width:768px) {

    .jhula-theme .contact-hero-section {
        padding: 70px 0;
    }

    .jhula-theme .modern-contact-info-card,
    .jhula-theme .modern-contact-form-card {
        padding: 25px;
    }

    .jhula-theme .contact-feature-grid {
        grid-template-columns: 1fr;
    }

    .jhula-theme .modern-contact-box h5 {
        font-size: 16px;
    }

    .jhula-theme .modern-map-section iframe {
        height: 300px;
    }
}
/* =========================
   ABOUT PAGE
========================= */

.jhula-theme .about-hero-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(rgba(15,25,22,0.80), rgba(15,25,22,0.80)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.jhula-theme .about-hero-overlay {
    position: absolute;
    inset: 0;
}

.jhula-theme .about-image-wrapper {
    position: relative;
}

    .jhula-theme .about-image-wrapper img {
        border-radius: 30px;
        width: 100%;
        object-fit: cover;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

.jhula-theme .about-floating-card {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    text-align: center;
}

    .jhula-theme .about-floating-card h3 {
        font-size: 42px;
        color: #c39b6a;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .jhula-theme .about-floating-card p {
        margin: 0;
        font-weight: 600;
        color: #1f2d2a;
    }

.jhula-theme .about-main-desc,
.jhula-theme .about-sub-desc {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.jhula-theme .about-feature-list {
    margin-top: 30px;
}

.jhula-theme .about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 500;
    color: #1f2d2a;
}

    .jhula-theme .about-feature-item i {
        color: #c39b6a;
        font-size: 20px;
    }

.jhula-theme .about-why-section {
    background: #f8f6f2;
    padding: 100px 0;
}

.jhula-theme .about-feature-card {
    background: white;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.04);
}

    .jhula-theme .about-feature-card:hover {
        transform: translateY(-8px);
    }

.jhula-theme .about-feature-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #f7f2eb;
    color: #c39b6a;
    margin: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.jhula-theme .about-feature-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1f2d2a;
}

.jhula-theme .about-feature-card p {
    color: #666;
    line-height: 1.8;
}

.jhula-theme .modern-stats-wrapper {
    background: #1f2d2a;
    border-radius: 35px;
    padding: 70px 40px;
}

.jhula-theme .modern-stat-box h2 {
    color: #d4b084;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.jhula-theme .modern-stat-box p {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    margin: 0;
}

/* MOBILE */

@media(max-width:768px) {

    .jhula-theme .about-hero-section {
        padding: 70px 0;
    }

    .jhula-theme .about-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .jhula-theme .about-feature-card {
        padding: 30px 20px;
    }

    .jhula-theme .modern-stats-wrapper {
        padding: 45px 20px;
    }

    .jhula-theme .modern-stat-box h2 {
        font-size: 36px;
    }

    .jhula-theme .modern-stat-box {
        margin-bottom: 25px;
    }
}
.jhula-theme .about-hero-content,
.jhula-theme .contact-hero-content {
    max-width: 900px;
    margin: auto;
}

    .jhula-theme .about-hero-content .listing-hero-desc,
    .jhula-theme .contact-hero-content .listing-hero-desc {
        max-width: 850px;
        margin: auto;
        text-align: center;
    }
/* =========================
   PRODUCT DETAILS PAGE
========================= */

.jhula-theme .product-details-hero {
    padding: 80px 0;
    background: #f8f6f2;
}

.jhula-theme .modern-product-gallery {
    position: relative;
    background: white;
    border-radius: 35px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.jhula-theme .modern-product-main-image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.jhula-theme .modern-product-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #1f2d2a;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
}

.jhula-theme .modern-product-details-content {
    padding-left: 20px;
}

.jhula-theme .modern-product-category {
    color: #c39b6a;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.jhula-theme .modern-product-title {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f2d2a;
    margin-bottom: 25px;
}

.jhula-theme .modern-product-price-wrapper {
    margin-bottom: 25px;
}

.jhula-theme .modern-product-price {
    font-size: 42px;
    color: #c39b6a;
    font-weight: 700;
}

.jhula-theme .modern-product-old-price {
    font-size: 24px;
    margin-left: 14px;
    color: #999;
    text-decoration: line-through;
}

.jhula-theme .modern-product-short-desc {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 35px;
}

.jhula-theme .modern-product-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.jhula-theme .modern-product-feature-item {
    background: white;
    border-radius: 18px;
    padding: 16px;
    font-weight: 500;
    color: #1f2d2a;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

    .jhula-theme .modern-product-feature-item i {
        color: #c39b6a;
        margin-right: 10px;
    }

.jhula-theme .modern-min-order-box {
    background: #fff5e8;
    border: 1px solid #f3d19c;
    border-radius: 18px;
    padding: 18px 22px;
    margin-bottom: 30px;
    color: #7a5b2f;
}

.jhula-theme .modern-product-action-wrapper {
    margin-bottom: 35px;
}

.jhula-theme .modern-product-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 18px;
    background: #1f2d2a;
    color: white;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s;
}

    .jhula-theme .modern-product-cart-btn:hover {
        background: #c39b6a;
        color: white;
        transform: translateY(-2px);
    }

.jhula-theme .modern-product-extra-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #666;
    font-size: 15px;
}

    .jhula-theme .modern-product-extra-info i {
        color: #c39b6a;
        margin-right: 8px;
    }

.jhula-theme .modern-product-description-card {
    background: white;
    border-radius: 35px;
    padding: 55px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.jhula-theme .modern-description-content {
    line-height: 2;
    color: #555;
    font-size: 16px;
}

/* =========================
   CART POPUP
========================= */

.jhula-theme .modern-cart-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.jhula-theme .modern-cart-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.jhula-theme .modern-cart-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 92%;
    max-width: 480px;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.jhula-theme .modern-cart-popup-success {
    text-align: center;
    margin-bottom: 30px;
}

.jhula-theme .modern-popup-check {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #e9fbf1;
    color: #18cb96;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.jhula-theme .modern-cart-popup-success h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2d2a;
    margin-bottom: 10px;
}

.jhula-theme .modern-cart-popup-success p {
    color: #666;
}

.jhula-theme .modern-popup-product {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #f8f6f2;
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 25px;
}

    .jhula-theme .modern-popup-product img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 16px;
    }

    .jhula-theme .modern-popup-product h5 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #1f2d2a;
    }

    .jhula-theme .modern-popup-product span {
        color: #c39b6a;
        font-weight: 700;
    }

.jhula-theme .modern-popup-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 20px;
}

    .jhula-theme .modern-popup-total strong {
        color: #1f2d2a;
    }

.jhula-theme .modern-popup-buttons {
    display: flex;
    gap: 15px;
}

.jhula-theme .modern-popup-continue-btn,
.jhula-theme .modern-popup-cart-btn {
    flex: 1;
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}

.jhula-theme .modern-popup-continue-btn {
    background: #f3f3f3;
    border: none;
    color: #1f2d2a;
}

.jhula-theme .modern-popup-cart-btn {
    background: #1f2d2a;
    color: white;
}

    .jhula-theme .modern-popup-cart-btn:hover {
        background: #c39b6a;
        color: white;
    }

.jhula-theme .modern-popup-timer {
    margin-top: 22px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* MOBILE */

@media(max-width:768px) {

    .jhula-theme .product-details-hero {
        padding: 50px 0;
    }

    .jhula-theme .modern-product-details-content {
        padding-left: 0;
    }

    .jhula-theme .modern-product-title {
        font-size: 34px;
    }

    .jhula-theme .modern-product-price {
        font-size: 32px;
    }

    .jhula-theme .modern-product-old-price {
        font-size: 18px;
    }

    .jhula-theme .modern-product-features {
        grid-template-columns: 1fr;
    }

    .jhula-theme .modern-product-description-card {
        padding: 30px 20px;
    }

    .jhula-theme .modern-popup-buttons {
        flex-direction: column;
    }

    .jhula-theme .modern-cart-popup-content {
        padding: 25px;
    }
}