/*    /* Banner Slider */
    #Gslider .carousel-inner {
        background: #000;
        height: 550px;
    }

    #Gslider .carousel-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .8;
    }

    #Gslider .carousel-caption {
        bottom: 40%;
    }

    #Gslider .carousel-caption h1 {
        font-size: 50px;
        font-weight: bold;
        color: #F7941D;
    }
.short-description img {
    width: 100% !important;
}
    @media (max-width: 768px) {
        #Gslider .carousel-inner {
            height: 161px;
        }

        #Gslider .carousel-caption h1 {
            font-size: 28px;
        }
    }

    /* Product Area */
    .product-area.section {
        padding: 60px 0 40px;
    }

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
        display: inline-block;
        padding-bottom: 12px;
        border-bottom: 3px solid #F7941D;
    }

    .single-product {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid #f0f0f0;
        position: relative;
    }

    .single-product:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .product-img {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
    }

    .product-img img {
        width: 100%;
        transition: transform 0.4s ease;
    }

    .single-product:hover .product-img img {
        transform: scale(1.05);
    }

    .sale-tag {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #F7941D;
        color: #fff;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 1;
    }

    .product-content {
        padding: 16px;
        text-align: center;
    }

    .product-content h3 a {
        font-size: 15px;
        font-weight: 600;
        color: #2c3e50;
        display: block;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .product-price span {
        font-size: 18px;
        font-weight: 700;
        color: #F7941D;
    }

    .product-price del {
        font-size: 13px;
        color: #aaa;
        margin-left: 5px;
    }

    .btn-add-cart {
        background: #2c3e50;
        color: #fff;
        border: none;
        padding: 6px 15px;
        border-radius: 25px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
    }

    .btn-add-cart:hover {
        background: #F7941D;
    }

    /* Cart Quantity Controls */
    .cart-quantity-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #f8f9fa;
        border-radius: 25px;
        padding: 3px;
        border: 1px solid #e5e7eb;
    }

    .qty-decrease,
    .qty-increase {
        background: white;
        border: none;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    .qty-decrease:hover,
    .qty-increase:hover {
        background: #F7941D;
        color: white;
    }

    .cart-qty {
        font-weight: 600;
        font-size: 14px;
        min-width: 20px;
        text-align: center;
        color: #2c3e50;
    }

    /* Shop Services */
    .shop-services.section.home {
        padding: 50px 0;
        background: #fafafc;
        margin-top: 20px;
    }

    .single-service {
        text-align: center;
        padding: 20px;
    }

    .single-service i {
        font-size: 42px;
        color: #F7941D;
        margin-bottom: 15px;
        display: inline-block;
    }

    .single-service h4 {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .single-service p {
        color: #666;
        font-size: 13px;
    }

    .btn-dark {
        background-color: #2c3e50;
        border: none;
        padding: 10px 30px;
        border-radius: 40px;
        font-weight: 600;
    }

    .btn-dark:hover {
        background-color: #F7941D;
    }

    /* Animations */
    .total-count.update {
        animation: pulse 0.5s ease-in-out;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }

    .btn-add-cart.loading {
        position: relative;
        pointer-events: none;
        opacity: 0.7;
    }

    .btn-add-cart.loading i {
        animation: spin 0.6s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .cart-quantity-controls {
        animation: fadeIn 0.3s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @media (max-width: 768px) {
        .product-area.section {
            padding: 40px 0;
        }

        .section-title h2 {
            font-size: 24px;
        }
        
        .cart-quantity-controls {
            padding: 2px;
        }
        
        .qty-decrease,
        .qty-increase {
            width: 24px;
            height: 24px;
            font-size: 10px;
        }
        
        .cart-qty {
            font-size: 12px;
        }
    }
    /* Cart Quantity Controls - Fixed */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
    border: 1px solid #e5e7eb;
    min-width: 100px;
}

.qty-decrease,
.qty-increase {
    background: white;
    border: 1px solid #e5e7eb;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.qty-decrease i,
.qty-increase i {
    font-size: 12px;
    line-height: 1;
    pointer-events: none;
}

.qty-decrease:hover,
.qty-increase:hover {
    background: #F7941D;
    border-color: #F7941D;
    color: white;
    transform: scale(1.05);
}

.qty-decrease:hover i,
.qty-increase:hover i {
    color: white;
}

.qty-decrease:active,
.qty-increase:active {
    transform: scale(0.95);
}

.cart-qty {
    font-weight: 700;
    font-size: 15px;
    min-width: 25px;
    text-align: center;
    color: #2c3e50;
    background: transparent;
    padding: 0 5px;
}

/* Alternative if icons are not showing - use text symbols */
.qty-decrease .ti-minus,
.qty-increase .ti-plus {
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/* Fallback if font icons don't work */
.qty-decrease:before {
    content: "-";
    font-size: 18px;
    font-weight: bold;
}

.qty-increase:before {
    content: "+";
    font-size: 18px;
    font-weight: bold;
}

/* Hide fallback when icons are present */
.qty-decrease i:not(.hide-icon) + .qty-decrease:before,
.qty-increase i:not(.hide-icon) + .qty-increase:before {
    display: none;
}

/* Ensure Themify icons load properly */
@font-face {
    font-family: 'themify';
    src: url('../fonts/themify.eot');
    src: url('../fonts/themify.eot?#iefix') format('embedded-opentype'),
         url('../fonts/themify.woff') format('woff'),
         url('../fonts/themify.ttf') format('truetype'),
         url('../fonts/themify.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

.ti-minus:before,
.ti-plus:before {
    font-family: 'themify';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
}

.ti-minus:before {
    content: "\e61e";
}

.ti-plus:before {
    content: "\e61a";
}

.btn.btn-cod{
        background: #f7941d;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}
  /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        a {
            transition: all 0.3s ease;
            text-decoration: none;
        }

        a:hover {
            text-decoration: none;
        }

        /* Alert Messages */
        .alert {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            min-width: 300px;
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Product Video Section */
.product-video-section {
    width: 100%;
    margin: 20px 0;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    background: #f5f5f5;
}

.product-video-iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-video-iframe {
        height: 280px;
    }
    
    .product-video {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .product-video-iframe {
        height: 220px;
    }
    
    .product-video {
        max-height: 250px;
    }
}

/* Optional: Add play button overlay styling */
.video-container {
    position: relative;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover::before {
    opacity: 1;
}
   :root {
            --primary-color: #6366f1;
            --primary-dark: #4f46e5;
            --secondary-color: #f59e0b;
            --success-color: #10b981;
            --danger-color: #ef4444;
            --dark-color: #1f2937;
            --light-color: #f9fafb;
            --border-color: #e5e7eb;
        }

        /* Breadcrumb */
        .breadcrumb-wrapper {
            background: var(--light-color);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        /* Product Gallery */
        .product-gallery-modern {
            position: sticky;
            top: 20px;
        }

        .main-image-container {
            position: relative;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            cursor: zoom-in;
        }

        .main-product-image {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .main-product-image:hover {
            transform: scale(1.05);
        }

        .discount-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--danger-color);
            color: white;
            padding: 5px 12px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            z-index: 1;
        }

        .thumbnail-item {
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .thumbnail-item.active {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
        }

        .thumbnail-image {
            width: 100%;
            height: auto;
        }

        /* Product Info */
        .product-info-modern {
            padding: 0 20px;
        }

        .product-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .stars {
            font-size: 16px;
            letter-spacing: 2px;
        }

        .stock-badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        .in-stock {
            background: #d1fae5;
            color: #065f46;
        }

        .out-of-stock {
            background: #fee2e2;
            color: #991b1b;
        }

        /* Price Section */
        .price-section {
            padding: 1px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .current-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .original-price {
            font-size: 18px;
            color: #9ca3af;
            text-decoration: line-through;
            margin-left: 10px;
        }

        .saved-amount {
            display: inline-block;
            background: #d1fae5;
            color: #065f46;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
            margin-left: 10px;
        }

        /* Size Options */
        .size-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .size-option {
            position: relative;
            cursor: pointer;
        }

        .size-option input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .size-label {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .size-option input:checked+.size-label {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Color Options */
        .color-options {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .color-option {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            position: relative;
        }

        .color-option input {
            position: absolute;
            opacity: 0;
        }

        .color-label {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-block;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .color-name {
            font-size: 13px;
        }

        .color-option input:checked+.color-label {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
        }

        /* Quantity Selector */
        .quantity-selector {
            display: inline-flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }

        .qty-btn {
            background: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .qty-btn:hover {
            background: var(--light-color);
        }

        .quantity-input {
            width: 60px;
            text-align: center;
            border: none;
            border-left: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
            padding: 10px 0;
        }

        .quantity-input:focus {
            outline: none;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-add-to-cart {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-add-to-cart:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-wishlist,
        .btn-compare {
            padding: 12px 20px;
        }

        /* Product Meta */
        .product-meta {
            background: var(--light-color);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .meta-item {
            margin-bottom: 8px;
            font-size: 14px;
        }

        .meta-item i {
            width: 25px;
            color: var(--primary-color);
        }

        /* Share Section */
        .share-icons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .share-icon {
            width: 35px;
            height: 35px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-color);
            color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .share-icon:hover {
            transform: translateY(-2px);
        }

        .share-icon.facebook:hover {
            background: #1877f2;
            color: white;
        }

        .share-icon.twitter:hover {
            background: #1da1f2;
            color: white;
        }

        .share-icon.pinterest:hover {
            background: #bd081c;
            color: white;
        }

        .share-icon.whatsapp:hover {
            background: #25d366;
            color: white;
        }

        /* Tabs */
        .modern-tabs {
            border-bottom: 2px solid var(--border-color);
            gap: 10px;
        }

        .modern-tabs .nav-link {
            border: none;
            padding: 12px 24px;
            color: var(--dark-color);
            font-weight: 500;
            border-radius: 8px 8px 0 0;
            transition: all 0.3s ease;
        }

        .modern-tabs .nav-link.active {
            background: var(--primary-color);
            color: white;
        }

        .modern-tab-content {
            padding: 30px;
            background: white;
            border: 1px solid var(--border-color);
            border-top: none;
            border-radius: 0 0 8px 8px;
        }

        /* Review Form */
        .rating-input {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }

        .rating-input input {
            display: none;
        }

        .star-label {
            cursor: pointer;
            font-size: 24px;
            color: #d1d5db;
            transition: color 0.2s;
        }

        .rating-input input:checked~label,
        .rating-input label:hover,
        .rating-input label:hover~label {
            color: #f59e0b;
        }

        /* Review Item */
        .review-item {
            padding: 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 15px;
        }

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

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .reviewer-avatar-placeholder {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
        }

        .reviewer-name {
            margin: 0 0 5px 0;
            font-size: 16px;
            font-weight: 600;
        }

        /* Info Cards */
        .info-card {
            padding: 20px;
            background: var(--light-color);
            border-radius: 8px;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .product-info-modern {
                padding: 0;
            }

            .product-title {
                font-size: 24px;
            }

            .current-price {
                font-size: 28px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-add-to-cart,
            .btn-wishlist,
            .btn-compare {
                width: 100%;
            }

            .modern-tabs .nav-link {
                padding: 10px 15px;
                font-size: 14px;
            }

            .modern-tab-content {
                padding: 20px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-detail-section {
            animation: fadeIn 0.5s ease-out;
        }
        /* Breadcrumbs */
        .breadcrumbs {
            background: #f8fafc;
            padding: 20px 0;
            border-bottom: 1px solid #e9edf2;
        }
        .bread-inner .bread-list {
            list-style: none;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }
        .bread-list li {
            font-size: 14px;
        }
        .bread-list li a {
            text-decoration: none;
            color: #475569;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .bread-list li a:hover {
            color: #2563eb;
        }
        .bread-list li.active a {
            color: #0f172a;
            font-weight: 600;
            cursor: default;
        }
        .bread-list li a i {
            font-style: normal;
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
        }
        .bread-list li a i:before {
            content: "\f054";
        }
        
        /* Contact Section */
        .contact-us {
            padding: 70px 0 80px;
        } 
        
        /* Map Section */
        .map-section {
            width: 100%;
            height: 380px;
            background: #eef2ff;
        }
        #myMap {
            width: 100%;
            height: 100%;
        }
        #myMap iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
        }
        
        /* Newsletter section (simulated include) */
        .newsletter-area {
            background: #f1f5f9;
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid #e2e8f0;
        }
        .newsletter-inner h4 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .newsletter-inner p {
            color: #475569;
            margin-bottom: 24px;
        }
         .form-main {
            background: #ffffff;
            border-radius: 28px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
            padding: 2rem 2rem 2.2rem;
            border: 1px solid #eef2f8;
        }
        .title h4 {
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #3b82f6;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .title h3 {
            font-size: 1.85rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: #0f172a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .title h3 .text-danger {
            font-size: 0.75rem;
            background: #fee2e2;
            padding: 4px 14px;
            border-radius: 30px;
            font-weight: 500;
            color: #b91c1c;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
            font-size: 0.9rem;
            color: #1e293b;
        }
        .form-group label span {
            color: #ef4444;
            margin-left: 2px;
        }
        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px 18px;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            background-color: #fefefe;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            font-family: inherit;
            color: #0f172a;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59,130,246,0.08);
            background-color: #ffffff;
        }
        .btn {
            background: #0f172a;
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #c8cbd1;
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -12px rgba(0,0,0,0.2);
        }
        .btn:active { transform: translateY(1px); }
        
        /* Right side info cards */
        .single-head {
            background: #ffffff;
            border-radius: 28px;
            padding: 2rem 1.8rem;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f8;
        }
        .single-info {
            margin-bottom: 34px;
        }
        .single-info i {
            font-size: 1.8rem;
            color: #2563eb;
            background: #eef2ff;
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 28px;
            margin-bottom: 16px;
        }
        .single-info .title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0f172a;
        }
        .single-info ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .single-info ul li {
            margin-bottom: 8px;
            color: #334155;
            word-break: break-word;
        }
        .single-info ul li a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
        }
        .single-info ul li a:hover {
            text-decoration: underline;
        }
        
        /* Map Section */
        .map-section {
            width: 100%;
            height: 380px;
            background: #eef2ff;
        }
        #myMap {
            width: 100%;
            height: 100%;
        }
        #myMap iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
        }
        
        /* Newsletter section (simulated include) */
        .newsletter-area {
            background: #f1f5f9;
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid #e2e8f0;
        }
        .newsletter-inner h4 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .newsletter-inner p {
            color: #475569;
            margin-bottom: 24px;
        }
        
        /* Modal styling (exactly per original but modernized) */
        .modal-dialog .modal-content {
            border-radius: 28px;
            border: none;
            box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2);
            overflow: hidden;
        }
        .modal-dialog .modal-content .modal-header {
            position: initial;
            padding: 18px 24px;
            border-bottom: 1px solid #f0f2f5;
            background: #ffffff;
        }
        .modal-dialog .modal-content .modal-body {
            padding: 20px 24px;
            height: auto;
            min-height: 100px;
        }
        .modal-dialog .modal-content {
            width: 90%;
            max-width: 460px;
            border-radius: 28px;
            margin: 1.75rem auto;
        }
        @media (min-width: 576px) {
            .modal-dialog .modal-content { width: 100%; }
        }
        .text-success { color: #10b981 !important; }
        .text-warning { color: #f59e0b !important; }
        .btn-close-custom {
            background: transparent;
            border: none;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            padding: 0;
        }
        .close span {
            font-size: 1.8rem;
            color: #64748b;
        }
           .whatsapp-float {
        position: fixed;
        bottom: 70px;
        right: 30px;
        z-index: 1000;

        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;

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

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        transition: all 0.25s ease;
        text-decoration: none;

        animation: pulse 1.5s infinite;
        background: white;
    }

    /* Image */
    .whatsapp-float img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .whatsapp-float:hover {
        transform: scale(1.08);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        }

        70% {
            box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .tooltip-text {
        position: absolute;
        right: 75px;
        background: #1f2a3e;
        color: white;
        padding: 6px 12px;
        border-radius: 30px;
        font-size: 13px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: 0.2s;
    }

    .whatsapp-float:hover .tooltip-text {
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 480px) {
        .whatsapp-float {
            width: 55px;
            height: 55px;
            bottom: 20px;
            right: 20px;
        }

        .tooltip-text {
            display: none;
        }
    }
        /* validation error styles */
        .error-message, label.error {
            font-size: 0.7rem;
            color: #ef4444;
            margin-top: 5px;
            display: inline-block;
            font-weight: normal;
        }
        input.error, textarea.error {
            border-color: #f97316;
            background-color: #fffaf5;
        }
        .is-invalid {
            border-color: #f97316 !important;
        } .footer {
        background: #1e272e;
        color: #dcdde1;
    }

    .footer-top.section {
        padding: 55px 0 40px;
    }

    .single-footer.about .logo img {
        max-width: 140px;
        margin-bottom: 15px;
    }

    .single-footer p,
    .single-footer ul li a {
        color: #bdc3c7;
        font-size: 14px;
        line-height: 1.7;
    }

    .single-footer ul {
        list-style: none;
        padding-left: 0;
    }

    .single-footer ul li {
        margin-bottom: 10px;
    }

    .single-footer ul li a:hover {
        color: #F7941D;
    }

    .single-footer h4 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .copyright {
        background: #141a1f;
        padding: 20px 0;
        text-align: center;
    }

    .copyright p {
        margin: 0;
        font-size: 13px;
    }

    .social-icons a {
        color: #bdc3c7;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        color: #F7941D;
    }

    @media (max-width: 768px) {
        .footer-top.section {
            padding: 40px 0 20px;
        }

        .single-footer {
            margin-bottom: 30px;
            text-align: center;
        }

        .single-footer .logo {
            text-align: center;
        }
    }   .header.shop .header-inner {
        background: #fff;
        padding: 15px 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .header.shop .logo img {
        max-height: 48px;
        width: auto;
    }

    .header.shop .navbar {
        flex: 1;
        margin: 0 20px;
    }

    .header.shop .navbar-collapse {

        justify-content: center;
    }

    .header.shop .nav {
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header.shop .nav li a {
        color: #2c3e50;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .header.shop .nav li a:hover,
    .header.shop .nav li.active a {
        color: #F7941D;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
    }

    .nav-search {
        position: relative;
    }

    .nav-search>a {
        color: #2c3e50;
        font-size: 20px;
    }

    .nav-search-form {
        position: absolute;
        top: 45px;
        right: 0;
        background: #fff;
        padding: 15px;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        z-index: 999;
        min-width: 320px;
        border-radius: 12px;
        border: 1px solid #eee;
    }

    .nav-search-form form {
        display: flex;
        gap: 10px;
    }

    .nav-search-form select,
    .nav-search-form input {
        border: 1px solid #ddd;
        padding: 10px 12px;
        border-radius: 30px;
        font-size: 13px;
    }

    .nav-search-form button {
        background: #F7941D;
        border: none;
        padding: 0 20px;
        border-radius: 30px;
        color: #fff;
        cursor: pointer;
    }

    .single-icon {
        color: #2c3e50;
        font-size: 22px;
        position: relative;
        display: block;
    }

    .total-count {
        position: absolute;
        top: -10px;
        right: -14px;
        background: #F7941D;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }



    .user-btn {
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        display: inline-block;
    }

    .user-btn:first-child {
        background: #F7941D;
        color: #fff;
    }

    .user-btn.register {
        background: #2c3e50;
        color: #fff;
    }

    .user-btn.logout {
        background: #dc3545;
        color: #fff;
    }

    .topbar {
        background: #F7941D;
        padding: 8px 0;
    }

    .list-main {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .list-main li {
        color: #fff;
        font-size: 13px;
        font-weight: 500;
    }

    .navbar-toggler {
        display: none;
        border: none;
        background: transparent;
        font-size: 28px;
        cursor: pointer;
    }

    /* Responsive Fixes */
    @media (max-width: 992px) {
        .navbar-toggler {
            display: block !important;
            color: #2c3e50;
            float: right;
        }

        .navbar-collapse {
            display: none;
            /* jQuery toggle handle karega */
            width: 100%;
            background: #fff;
            padding: 20px;
            margin-top: 10px;
            border-radius: 10px;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        }

        .header.shop .nav {
            flex-direction: column !important;
            align-items: flex-start !important;
        }

        .header.shop .nav li {
            width: 100%;
        }

        .header.shop .nav li a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
    }

    @media (max-width: 768px) {
        .nav-main {
            flex-direction: row;
            /* Logo aur toggle ek line mein rakhne ke liye */
            justify-content: space-between;
        }

        .header-right {
            width: 100%;
            justify-content: center;
            margin-top: 15px;
        }
    }

    @media (max-width: 768px) {
        .nav-main {
            display: flex;
            flex-wrap: inherit;
        }

        .header-right {
            width: 100%;
            justify-content: space-between;
            margin-top: 8px;
        }
    }

    .header.sticky .header-inner {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        animation: slideDown 0.3s ease;
        z-index: 999;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }   .sinlge-bar {
        position: relative;
    }

    .single-icon {
        position: relative;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .single-icon i {
        font-size: 22px;
        color: #333;
        transition: color 0.3s ease;
    }

    .single-icon:hover i {
        color: #F7941D;
    }

    .total-count {
        position: absolute;
        top: -8px;
        right: -12px;
        background: linear-gradient(135deg, #F7941D, #F76E1C);
        color: white;
        font-size: 10px;
        font-weight: bold;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    /* Shopping Dropdown */
    .shopping-item {
        position: absolute;
        top: 100%;
        right: 0;
        width: 380px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        overflow: hidden;
    }

    .sinlge-bar:hover .shopping-item {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Dropdown Header */
    .dropdown-cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: linear-gradient(135deg, #F7941D, #F76E1C);
        color: white;
    }

    .dropdown-cart-header span {
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .dropdown-cart-header span i {
        font-size: 16px;
    }

    .view-cart-btn {
        color: white;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .view-cart-btn:hover {
        color: #333;
        transform: translateX(3px);
    }

    /* Shopping List */
    .shopping-list {
        max-height: 380px;
        overflow-y: auto;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .shopping-list::-webkit-scrollbar {
        width: 5px;
    }

    .shopping-list::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .shopping-list::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #F7941D, #F76E1C);
        border-radius: 5px;
    }

    .cart-item {
        position: relative;
        display: flex;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .cart-item:hover {
        background: #fef9f0;
    }

    .remove-item {
        position: absolute;
        top: 15px;
        right: 20px;
        color: #dc3545;
        font-size: 16px;
        transition: all 0.3s ease;
        opacity: 0.6;
    }

    .remove-item:hover {
        opacity: 1;
        transform: scale(1.1);
        color: #dc3545;
    }

    .cart-img {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        margin-right: 12px;
    }

    .cart-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .cart-img:hover img {
        transform: scale(1.05);
    }

    .cart-item-info {
        flex: 1;
        padding-right: 25px;
    }

    .cart-item-info h4 {
        margin: 0 0 8px 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }

    .cart-item-info h4 a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .cart-item-info h4 a:hover {
        color: #F7941D;
    }

    .quantity {
        margin: 0 0 5px 0;
        font-size: 13px;
        color: #666;
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
    }

    .qty-label {
        color: #999;
    }

    .qty-value {
        font-weight: 600;
        color: #F7941D;
    }

    .price-separator {
        color: #999;
    }

    .amount {
        font-weight: 600;
        color: #333;
    }

    .item-total {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .total-label {
        color: #999;
        font-weight: normal;
    }

    .total-value {
        color: #F7941D;
        font-weight: 700;
    }

    /* Empty Cart */
    .empty-cart {
        text-align: center;
        padding: 40px 20px;
    }

    .empty-cart i {
        font-size: 48px;
        color: #F7941D;
        margin-bottom: 15px;
        opacity: 0.5;
    }

    .empty-cart p {
        color: #666;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .btn-shop-now {
        display: inline-block;
        background: linear-gradient(135deg, #F7941D, #F76E1C);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-shop-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
        color: white;
    }

    /* Cart Footer */
    .cart-footer {
        padding: 15px 20px;
        background: #f8f9fa;
        border-top: 1px solid #e5e7eb;
    }

    .cart-subtotal,
    .cart-discount,
    .cart-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .cart-subtotal .subtotal-label,
    .cart-discount .discount-label {
        color: #666;
        font-weight: 500;
    }

    .cart-discount .discount-label i {
        margin-right: 5px;
        color: #28a745;
    }

    .cart-subtotal .subtotal-amount,
    .cart-discount .discount-amount {
        font-weight: 600;
    }

    .cart-discount .discount-amount {
        color: #28a745;
    }

    .cart-total {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e5e7eb;
        font-size: 16px;
        font-weight: 700;
    }

    .cart-total .total-label {
        color: #333;
    }

    .cart-total .total-amount {
        color: #F7941D;
        font-size: 18px;
    }

    /* Cart Actions */
    .cart-actions {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .btn-checkout,
    .btn-view-cart {
        flex: 1;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-checkout {
        background: linear-gradient(135deg, #F7941D, #F76E1C);
        color: white;
        border: none;
    }

    .btn-checkout:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
        color: white;
    }

    .btn-view-cart {
        background: white;
        color: #F7941D;
        border: 1px solid #F7941D;
    }

    .btn-view-cart:hover {
        background: #F7941D;
        color: white;
        transform: translateY(-2px);
    }

    /* Animation */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .shopping-item {
        animation: slideIn 0.3s ease-out;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .shopping-item {
            width: 320px;
            right: -50px;
        }

        .cart-item-info h4 {
            font-size: 13px;
        }

        .quantity,
        .item-total {
            font-size: 12px;
        }

        .cart-img {
            width: 50px;
            height: 50px;
        }
    }

    /* Badge Pulse Animation */
    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    .total-count {
        animation: pulse 2s ease-in-out infinite;
    }

    /* Hover Effects */
    .cart-item {
        position: relative;
        overflow: hidden;
    }

    .cart-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(247, 148, 29, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .cart-item:hover::before {
        left: 100%;
    }   /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        a {
            transition: all 0.3s ease;
            text-decoration: none;
        }

        a:hover {
            text-decoration: none;
        }

        /* Alert Messages */
        .alert {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            min-width: 300px;
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }