:root {
    /* Color Variables */
    --primary1: #8f321c;
    --primary2: #350e49;
    --accent: #ec4899;
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --border-color: #e5e7eb;
    --text-muted: #6b7280;
    --success-color: #10b981;
    --background:linear-gradient(135deg, var(--primary1), var(--primary2));
    
    /* Dynamic Variables */
    --header-bg: {{ bs_data($settings, 'header_background', 1, true) }};
    --footer: {{ bs_data($settings, 'footer_background', 1, true) }};
    --footer-bottom: {{ bs_data($settings, 'header_background', 1, true) }};
    
    /* Gradients from primary colors */
    --grad-start: var(--primary1);
    --grad-end: var(--primary2);
    
    /* Hover (slightly brighter variations) */
    --grad-start-hover: #e0613d;
    --grad-end-hover: #4c1664;
    
    /* Active (slightly darker variations) */
    --grad-start-active: #b4492d;
    --grad-end-active: #2a0a3a;
    
    /* Focus & border colors */
    --focus-border: var(--primary1);
    --focus-shadow: rgba(204, 83, 51, 0.25);
}

.dark-theme {
    --bs-body-bg: #121213;
    --header-bg: #11202be6;
    --footer: #001f35;
    --footer-bottom: #111a21;
}
.badge{
    /* padding-top: 5px; */
}
/* Global Styles */
html {
    scroll-behavior: smooth;
}

.text-primary {
    color: var(--primary2) !important;
}

.dynamic-page-wrapper h1,
.dynamic-page-wrapper h2,
.dynamic-page-wrapper h3,
.dynamic-page-wrapper h4,
.dynamic-page-wrapper h5,
.dynamic-page-wrapper h6,
.dynamic-page-wrapper ul {
    margin-bottom: 1.5rem !important;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%) !important;
    border: none !important;
    color: #ffffff !important;
    transition: 0.3s ease-in-out;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--grad-start-hover) 0%, var(--grad-end-hover) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.btn-primary:active,
.btn-primary:focus:active {
    background: linear-gradient(135deg, var(--grad-start-active) 0%, var(--grad-end-active) 100%) !important;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn-primary:focus {
    box-shadow: none !important;
}

.btn-secondary {
    background: white;
    border: 2px solid var(--border-color);
    color: #374151;
}

.btn-secondary:hover {
    color: #000000 !important;
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn {
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.my-button {
    max-width: 120px;
    padding: 6px 10px;
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.my-button:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 16px rgba(204, 83, 51, 0.4);
}

/* Form Styles */
.form-control:not([readonly]):focus,
.form-select:not([readonly]):focus,
input:not([readonly]):focus,
textarea:not([readonly]):focus,
select:not([readonly]):focus {
    border: 1px solid var(--focus-border) !important;
    box-shadow: 0 0 0 2px var(--focus-shadow) !important;
    outline: none !important;
}

.form-control[readonly]:focus,
.form-control[readonly]:active,
.form-control[readonly]:hover {
    box-shadow: none !important;
    outline: none !important;
}

.form-control[readonly] {
    border-left: 0px solid #ced4da !important;
    border-right: 0px solid #ced4da !important;
    border-top: 1px solid #ced4da !important;
    border-bottom: 1px solid #ced4da !important;
}

.form-label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Modal Styles */
.modal {
  
    z-index: 10500;
}



.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 0.7rem;
    background: #eeeff3;
}

.modal-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service_detail_modal img{
    max-width:100%!important;
}
.service_detail_modal .modal-body *{
    margin-block:10px!important;
}
.modal-title .material-icons {
    color: var(--primary1);
    font-size: 20px;
}

.modal-body {
    padding: 0.7rem 1rem;
    max-height: calc(100vh - 150px);
    overflow: auto;

}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    background: #f9fafb;
}

.modal-dialog {
    max-width: 900px;
}

.btn-close {
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

/* Location Input Styles */
.location-input-wrapper {
    position: relative;
}

.location-input-wrapper .form-control {
    padding-right: 45px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 0.938rem;
}

.location-input-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.gps-icon-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gps-icon-btn:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

.gps-icon-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gps-icon-btn .material-icons {
    font-size: 22px;
}

.gps-icon-btn.loading .material-icons {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

#location-autocomplete-results {
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: white;
}

#location-autocomplete-results:empty {
    display: none;
}

#location-autocomplete-results .list-group-item {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#location-autocomplete-results .list-group-item:last-child {
    border-bottom: none;
}

#location-autocomplete-results .list-group-item:hover {
    background: #f9fafb;
}

#location-autocomplete-results .list-group-item::before {
    content: 'location_on';
    font-family: 'Material Icons';
    color: var(--text-muted);
    font-size: 18px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.4rem;
    color: var(--text-muted);
    font-size: 0.813rem;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider span {
    padding: 0 1rem;
}

.use-location-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    background: #f9fafb;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.use-location-btn:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.use-location-btn .material-icons {
    font-size: 20px;
}

#location-status {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.813rem;
    color: var(--text-muted);
    text-align: center;
    min-height: 20px;
}

#location-status.success {
    color: var(--success-color);
}

#location-status.error {
    color: #ef4444;
}

.selected-address {
    background: transparent;
    border: 0px solid white!important;
    border-radius: 10px;
    font-size: 0.938rem;
    box-shadow:none!important;
        padding: 10px!important;
    text-align: center!important;
}

/* Category & Discount Styles */
.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.discount-ribbon {
    position: absolute;
    top: 5px;
    right: -35px;
    background: #28a745;
    color: #fff;
    padding: 0px 38px;
    font-size: 8px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    letter-spacing: 0.5px;
}

/* Cart Offcanvas */
#cartOffcanvas.offcanvas-cart {
    width: 420px !important;
    max-width: 90vw;
    height: 100vh !important;
}

#cartOffcanvas .offcanvas-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
}

#cartOffcanvas .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#cartOffcanvas .sticky-footer {
    position: sticky;
    bottom: 0px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

#cartOffcanvas .cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
    height: 100%;
}

#cartOffcanvas .cart-item-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.discount-badge1{
    border: 1px solid #b2e7ce;
    color: green !important;
    background-color: rgb(206 255 232 / 43%) !important;
    font-size: 9px;
      
    border-radius: 2px;
}
#cartOffcanvas .cart-item-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

#cartOffcanvas .item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    flex-shrink: 0;
}

#cartOffcanvas .item-details {
    flex: 1;
    margin-left: 1rem;
}

#cartOffcanvas .item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d3748;
    /* margin-bottom: 0.25rem; */
}

#cartOffcanvas .item-price {
    font-size: 14px;
    font-weight: 700;
    
}

#cartOffcanvas .original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 12px;
    margin-left: 0.5rem;
}

#cartOffcanvas .qty-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
    margin-top: 0.5rem;
}

#cartOffcanvas .qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cartOffcanvas .qty-btn:hover {
    background: #e5e7eb;
    color: #2563eb;
}

#cartOffcanvas .qty-input {
    width: 45px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: #2d3748;
    background: transparent;
    font-size: 0.9rem;
}

#cartOffcanvas .qty-input:focus {
    outline: none;
}

#cartOffcanvas .remove-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
}

#cartOffcanvas .remove-btn:hover {
    background: #fca5a5;
    transform: scale(1.1);
}

#cartOffcanvas .clear-cart-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0.5rem;
    border-radius: 8px;
}

#cartOffcanvas .clear-cart-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

#cartOffcanvas .footer-buttons {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem; */
}

#cartOffcanvas .footer-btn {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
      height:40px;
}

#cartOffcanvas .btn-cart {
    background: #f3f4f6;
    color: #374151;
}

#cartOffcanvas .btn-cart:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#cartOffcanvas .btn-checkout {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#cartOffcanvas .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

#cartOffcanvas .empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
    padding: 2rem;
}

#cartOffcanvas .empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

#cartOffcanvas .subtotal-section {
    background: #f9fafb;
   
    border-radius: 10px;
  
}

#cartOffcanvas .subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

#cartOffcanvas .subtotal-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

/* Custom scrollbar */
#cartOffcanvas .cart-items-container::-webkit-scrollbar {
    width: 6px;
}

#cartOffcanvas .cart-items-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#cartOffcanvas .cart-items-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

#cartOffcanvas .cart-items-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Hero Section */
.hero-section {
   color:black;
    padding: 11px;
}

.highlight-section {
    border: 2px solid var(--primary1);
    border-radius: 12px;
    animation: highlightPulse 1.2s ease-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 18px rgba(0, 123, 255, 0.35);
    }
    100% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Three Column Layout */
.three-column-container {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    padding-bottom: 30px;
    position: relative;
}

.categories-column {
    flex: 0 0 400px;
    position: sticky;
    top: 80px;
    z-index: 10;
    height: fit-content;
}

.categories-sidebar {
    background: transparent;
    border-radius: 12px;
    padding: 10px;
    box-shadow: none;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary1);
}

.categories-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

#category_service .category-item {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
}

.category-item:hover {
    background: linear-gradient(135deg, rgba(204, 83, 51, 0.05), rgba(236, 72, 153, 0.05));
    border-color: var(--primary1);
    transform: translateY(-2px);
}

.category-item.active {
      
   
    border: 2px solid var(--primary1);
}

.category-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.category-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item-name {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Services Column */
.services-column {
    flex: 1;
    padding-right: 10px;
}

.services-column::-webkit-scrollbar {
    width: 8px;
    height: 0;
}

.services-column::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.services-column::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    border-radius: 10px;
}

/* Cart Column */
.cart-column {
    flex: 0 0 320px;
}

.cart-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary1), var(--primary2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin-bottom: 20px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.cart-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.cart-count-badge {
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    color: white;
    width: 28px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.cart-item:hover {
    background: #f1f5f9;
    border-color: var(--primary1);
}

.cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary1);
}

.cart-item-mrp {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 10px;
    border-top: 2px solid #e2e8f0;
    margin-top: 10px;
}

.cart-total-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.cart-total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary1);
}

.cart-checkout-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    height:40px;
}

.cart-checkout-btn:hover { color:white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(204, 83, 51, 0.4);
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #222222;
}

.cart-empty .material-icons {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* Features Section */
.features-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.features-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.features-title1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(204, 83, 51, 0.1), rgba(236, 72, 153, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon .material-icons {
    color: var(--primary1);
    font-size: 1.25rem;
}

.feature-content {
    flex: 1;
}

.feature-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.3;
}

/* Service Process Section */
.process-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.process-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    gap: 15px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.step-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.3;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-description {
  
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    right: 7px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary1), var(--primary2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.view_detail_link{
    border-bottom:1px dashed #586869 ;
    font-size: 12px;
    height: 20px;
}
.service-card:hover {
    box-shadow: 0 8px 24px rgba(204, 83, 51, 0.2);
    /* transform: translateY(-4px); */
    border-color: var(--primary1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.services-container {
    width: 100%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.service-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.service-price {
   
    font-weight: 700;
    font-size: 0.875rem;
}

.service-mrp {
    color: #94a3b8;
    font-size: 0.75rem;
    text-decoration: line-through;
}

.service-description {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.875rem;
}

.service-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.rating {
    color: #fbbf24;
    font-size: 0.813rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.service-actions {
    display: flex;
    gap: 10px;width:100%;
}

.btn-add-cart-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 83, 51, 0.4);
}

.btn-view-details-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--primary1);
    border: 1px solid var(--primary1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-details-icon:hover {
    background: rgba(204, 83, 51, 0.1);
    transform: translateY(-2px);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    border-radius: 2px;
}

/* Service Detail Page */
.service-detail-page {
    max-width: 1200px;
    margin: auto;
    padding: 30px 15px;
}

.service-media img {
    width: 100%;
    object-fit: cover;
}

.service-benefits {
    border-top: 1px dashed #e5e5e5;
    padding-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.benefit-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.benefit-item .material-icons {
    font-size: 22px;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 6px;
    border-radius: 50%;
}

.benefit-item strong {
    font-size: 13px;
    display: block;
    color: #333;
}

.benefit-item small {
    font-size: 11px;
    color: #777;
    line-height: 1.2;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    color: #555;
}

.service-price-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 15px 0;
}

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

.price-mrp {
    text-decoration: line-through;
    color: #999;
}

.discount-badge {
    background: #16a34a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.cart-row {
    display: flex;
    gap: 15px;
    max-width: 200px;
    flex-direction: column;
    margin-bottom: 25px;
}

.qty-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-box button {
    width: 40px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
}

.qty-box input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
}

.add-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    padding: 7px 31px;
}

/* Nav Tabs */
.nav-tabs {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    padding: 12px 20px;
    font-weight: 600;
    color: #64748b;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary1);
    border-bottom-color: rgba(204, 83, 51, 0.3);
}

.nav-tabs .nav-link.active {
    color: var(--primary1);
    background: none;
    border-bottom: 3px solid var(--primary1);
}

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

/* Reviews */
.review-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    flex: 1;
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary1);
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 5px;
}

.review-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: #64748b;
    font-size: 0.875rem;
}

.review-rating {
    color: #fbbf24;
    margin-bottom: 10px;
}

.review-text {
    color: #475569;
    line-height: 1.6;
}

.add-review {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.add-review-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary1);
    box-shadow: 0 0 0 3px rgba(204, 83, 51, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(204, 83, 51, 0.4);
}

/* Swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Footer Styles */
.custom-main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
   
    position: relative;
    overflow: hidden;
}

.custom-main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary1), var(--primary2));
}



.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.custom-footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.custom-footer-widget {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.custom-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.custom-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary1), var(--primary2));
    border-radius: 3px;
}

/* Company Info Section */
.custom-company-info .custom-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.custom-company-info .custom-logo img {
    max-height: 50px;
}

.custom-company-desc {
    color: #b0b3c2;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-app-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.custom-app-link {
    width: 150px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.custom-app-link:hover {
    transform: translateY(-5px);
}

.custom-app-img {
    width: 100%;
    height: auto;
}

/* Social Section */
.custom-social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.custom-social-icons {
    display: flex;
    gap: 15px;
}

.custom-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-social-link:hover {
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    transform: translateY(-3px);
}

.custom-social-link .material-icons {
    font-size: 20px;
}

/* Footer Links */
.custom-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer-links li {
    margin-bottom: 12px;
}

.custom-footer-links li a {
    color: #b0b3c2;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-link-icon {
    color: var(--primary1);
    font-size: 18px !important;
    transition: transform 0.3s ease;
}

.custom-footer-links li a:hover {
    color: #fff;
}

.custom-footer-links li a:hover .custom-link-icon {
    transform: translateX(5px);
}

/* Contact Section */
.custom-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.custom-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-contact-icon .material-icons {
    font-size: 20px;
    color: var(--primary1);
}

.custom-contact-info {
    flex: 1;
}

.custom-contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.custom-contact-value {
    color: #b0b3c2;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.custom-contact-info a:hover {
    color: var(--primary1);
}

/* Newsletter Section */
.custom-newsletter-desc {
    color: #b0b3c2;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.custom-newsletter-form {
    margin-bottom: 20px;
}

.custom-input-group {
    display: flex;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.custom-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.custom-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.custom-newsletter-input:focus {
    outline: none;
    border-color: var(--primary1);
    box-shadow: 0 0 0 3px rgba(204, 83, 51, 0.1);
}

.custom-newsletter-btn {
    background: linear-gradient(135deg, var(--primary1), var(--primary2));
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(204, 83, 51, 0.3);
}

.custom-newsletter-btn .material-icons {
    font-size: 18px;
}

/* Payment Methods */
.custom-payment-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.custom-payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.custom-payment-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.custom-payment-item .material-icons {
    font-size: 18px;
    color: var(--primary1);
}

.custom-payment-item span {
    font-size: 0.85rem;
    color: #b0b3c2;
}

/* Footer Bottom */
.custom-footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.custom-copyright p {
    color: #b0b3c2;
    font-size: 0.85rem;
    margin: 0;
}

.custom-footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}

.custom-footer-links a {
    color: #b0b3c2;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform:capitalize
}

.custom-footer-link-icon {
    font-size: 16px !important;
    color: var(--primary1);
}

.custom-footer-links a:hover {
    color: var(--primary1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .three-column-container {
        flex-direction: column;
    }
    
    .categories-column,
    .services-column,
    .cart-column {
        flex: 1;
        max-height: none;
        position: relative;
        top: 0;
    }
    
    .categories-column {
        flex: 0 0 auto;
    }
    
    .cart-column {
        flex: 0 0 auto;
    }
    
    .cart-box {
        position: relative;
        width: 100%;
        max-height: none;
    }
    
    .custom-footer-wrapper {
        gap: 30px;
    }
    
    .custom-footer-widget {
        min-width: 200px;
    }
}

@media (max-width: 992px) {
    .categories-column {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .categories-flex-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .category-item {
        flex: 0 0 calc(25% - 10px);
        max-width: calc(25% - 10px);
    }
    
    .service-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .category-item {
        flex: 0 0 calc(33.33% - 7px);
        max-width: calc(33.33% - 7px);
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-title {
        font-size: 0.95rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .custom-footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .custom-footer-widget {
        min-width: 100%;
        margin-bottom: 25px;
    }
    
    .custom-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .custom-app-buttons {
        justify-content: center;
    }
    
    .custom-social-icons {
        justify-content: center;
    }
    
    .custom-payment-methods {
        justify-content: center;
    }
    
    .custom-footer-links {
        justify-content: center;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
    }
    
    .cart-row {
        flex-direction: column;
    }
    
    .service-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .category-item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    #cartOffcanvas .sticky-footer {
    position: sticky;
    bottom: 60px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}
    
    .service-card {
        padding: 12px;
    }
    
    .service-title {
        font-size: 0.9rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
  
    
    .custom-footer-top {
        padding: 50px 0 0px;
    }
    
    .custom-app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-app-link {
        width: 200px;
    }
    
    .custom-social-icons {
        gap: 10px;
    }
    
    .custom-social-link {
        width: 35px;
        height: 35px;
    }
    
    .custom-social-link .material-icons {
        font-size: 18px;
    }
    
    .custom-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .custom-payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-payment-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar-top-wrapper {
        gap: 0 !important;
    }
}

/* Service Card Layout */
.service-card {
    border-radius: 12px;
    overflow: visible;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1.25rem;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card-inner {
    display: flex;
    align-items: flex-start;
}

/* Left Side: Text Content */
.service-content-left {
    flex: 1;
    min-width: 0;
}


.service-title:hover {
    color: #2563eb;
}

.service-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Right Side: Image, Price & Actions */
.service-content-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-image-wrapper {
    width: 147px;
    height: 108px;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f4f6;
    flex-shrink: 0;
}

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

.service-card:hover .service-image {
    transform: scale(1.08);
}

/* Pricing Styles */
.service-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.service-price {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
}

.service-mrp {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Cart Action Buttons */
.btn-add-cart-full {
      background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%) !important;
    border: none !important;
    color: #ffffff !important;
    transition: 0.3s ease-in-out;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    padding: 8px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width:100%;
}

.btn-add-cart-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.added-cart-box {
    background: #f0fdf4;
    white-space: nowrap;
    font-size: 0.9rem;margin:auto;display:flex;
}

/* Reviews Styles */
.service-reviews {
    font-size: 0.875rem;
}

.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-star {
    font-size: 16px;
    color: #d1d5db;
}

.rating-star.filled {
    color: #fbbf24;
}

.rating-star.half {
    color: #fbbf24;
}

.rating-star.small {
    font-size: 14px;
}

.rating-value {
    font-weight: 600;
    color: #2d3748;
}

.reviews-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
}

.reviews-link:hover {
    text-decoration: underline;
}

/* Modal Reviews Styles */
.reviews-summary {
    border-left: 4px solid #2563eb;
}

.review-item:last-child {
    border-bottom: none !important;
}

/* Responsive */
@media (max-width: 768px) {
   
    
    .service-content-right {
        width: 100%;
        flex-direction: row;
     
        align-items: center;
        margin-top: 1rem;
    }
    
    .service-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
   
}
/* //searchbox css */
  .service-search-wrapper {
        position: relative;
        width: 100%;
        max-width: 350px;
    }

    .service-search-input {
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 8px 40px 8px 15px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .service-search-input:focus {
        outline: none;
        border-color: var(--primary1);
        box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.15);
    }

    .search-icon {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        pointer-events: none;
    }

    .search-loader {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid var(--primary1);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        display: none;
    }

    .search-loader.active {
        display: block;
    }

    @keyframes spin {
        0% { transform: translateY(-50%) rotate(0deg); }
        100% { transform: translateY(-50%) rotate(360deg); }
    }

    .search-dropdown {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        right: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-height: 400px;
        overflow-y: auto;
        z-index: 1050;
        display: none;
    }

    .search-dropdown.show {
        display: block;
    }

    .search-dropdown-item {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        text-decoration: none;
        color: #212529;
        transition: background-color 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .search-dropdown-item:last-child {
        border-bottom: none;
    }

    .search-dropdown-item:hover {
        background-color: #f8f9fa;
    }

    .search-dropdown-item:active {
        background-color: rgba(139, 0, 0, 0.05);
    }

    .category-image {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 12px;
        flex-shrink: 0;
        border: 1px solid #e9ecef;
    }

    .category-content {
        flex: 1;
        min-width: 0;
    }

    .category-name {
        font-weight: 600;
        font-size: 14px;
        color: #212529;
        margin-bottom: 2px;
        display: block;
    }

    .category-description {
        font-size: 12px;
        color: #6c757d;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-no-results {
        padding: 20px;
        text-align: center;
        color: #6c757d;
        font-size: 14px;
    }

    .search-dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .search-dropdown::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .search-dropdown::-webkit-scrollbar-thumb {
        background: var(--primary1);
        border-radius: 10px;
    }

    .search-dropdown::-webkit-scrollbar-thumb:hover {
        background: #ebd6d6;
    }

    @media (max-width: 991px) {
        .service-search-wrapper {
            max-width: 100%;
            margin: 10px 0;
        }
    }
    /* ================================
   MOBILE APP MODE (≤ 991px)
================================ */
@media (max-width: 991px) {

  body {
    padding-bottom: 70px;
    background: #f8f9fb;
  }

  /* ===== TOP HEADER ===== */
  .navbar-top {
    display: none;
  }

  .navbar-bottom {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
  }

  .navbar-bottom-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .menu {
    display: none !important;
  }

  .logo img {
    height: 36px;
  }

  /* ===== SEARCH ===== */
  .service-search-wrapper {
    width: 100%;
  }

  .service-search-input {
    height: 46px;
    border-radius: 14px;
    font-size: 15px;
  }

  /* ===== FLOATING CART ===== */
  .floating-cart-btn {
    position: fixed;
    right: 16px;
    bottom: 85px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--primary1),var(--primary2));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
  }

  .floating-cart-btn span {
    color: #fff;
    font-size: 26px;
  }

  /* ===== FOOTER → ACCORDION ===== */
 

  .custom-footer-wrapper {
    display: block;
  }

  .custom-footer-widget {
  
  }
.custom-footer-title::after{
    display:none!important;
}
  .custom-footer-title {
  
  }

  .custom-footer-links,
  .custom-contact-list,
  .custom-newsletter {
  align-items: center;
  }

  .custom-footer-widget.active
  .custom-footer-links,
  .custom-footer-widget.active
  .custom-contact-list,
  .custom-footer-widget.active
  .custom-newsletter {
    display: block;
    margin-top: 10px;
  }
}
.carousel-control-prev-icon,.carousel-control-next-icon {
     background-size: 16px;
         background-color: #000000;
    border-radius: 50%;
}

/* ================================
   MOBILE BOTTOM NAV
================================ */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    z-index: 999;
        border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: 0px -3px 16px 0px #bec7c5;
}
  

  .mobile-bottom-nav a {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #666;
    padding-top: 6px;
  }

  .mobile-bottom-nav a span {
    display: block;
    font-size: 22px;
  }

  .mobile-bottom-nav a.active {
    color: var(--primary1);
  }
}
