:root {
    --primary-color: #3268b2;
    --secondary-color: #5e35b1; /* Premium Violet/Purple */
    --accent-color: #e35e38; /* Accent Orange/Red */
    --primary-gradient: linear-gradient(135deg, #3268b2, #5e35b1);
    --accent-gradient: linear-gradient(135deg, #e35e38, #f4511e);
    --bg-hover-gradient: linear-gradient(135deg, rgba(50, 104, 178, 0.08), rgba(94, 53, 177, 0.08));
    --blue-glow: 0 4px 15px rgba(50, 104, 178, 0.25);
    --purple-glow: 0 4px 15px rgba(94, 53, 177, 0.25);
    --accent-glow: 0 4px 15px rgba(227, 94, 56, 0.25);
}

.header-middle {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.header-middle .icon-box{
    margin-right: 0 !important;
}

.category-icon .category-name {
     margin: 0;
     color: #222 !important;
}

.category img{
    border-radius: 50%;
    max-width: 50%;
}

@media screen and (max-width: 992px) {
    .category .category-name {
        font-size: 1rem;
    }
}

/* Mobile Direct Menu Styles */
.mobile-direct-menu {
    border-bottom: 1px solid #eee;
    background: #fff;
    position: relative;
    z-index: 999;
}
.mobile-direct-menu-container {
    position: relative;
    width: 100%;
}
.mobile-menu-tab {
    flex: 1;
}
.mobile-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    max-height: 320px;
    overflow-y: auto;
    border-top: 1px solid #eee;
}
.mobile-dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    border-bottom: 1px solid #f4f4f4;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.mobile-dropdown-content a:hover,
.mobile-dropdown-content a:active {
    background-color: #f9f9f9;
    color: #222;
}
.mobile-dropdown-content a.all-link {
    font-weight: 700;
    color: #222;
    background-color: #fafafa;
}
.mobile-menu-btn {
    width: 100%;
    padding: 12px 0;
    background: #3567b1;
    border: none;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s;
    cursor: pointer;
}
.mobile-menu-btn:active {
    background-color: #f7f7f7;
}
.mobile-menu-btn i {
    font-size: 14px;
}

/* Mobile Phone Icon Adjustment to match Cart Icon */
@media (max-width: 991px) {
    .header-right .icon-box {
        display: inline-flex !important;
        align-items: center !important;
    }
}

/* Live Search Suggestions Dropdown */
.input-wrapper {
    position: relative !important;
}

.search-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
    display: none;
    box-sizing: border-box;
}

.search-suggestions-dropdown.active {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

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

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: #f4f6f9;
    text-decoration: none;
}

.suggestion-image {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    background-color: #f5f5f5;
    flex-shrink: 0;
}

.suggestion-info {
    flex-grow: 1;
    min-width: 0; /* Enable text truncation */
    display: flex;
    flex-direction: column;
}

.suggestion-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-meta {
    font-size: 1.1rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.suggestion-price {
    font-weight: 700;
    color: #f53003;
}

.suggestion-category {
    background: #f1f1f1;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 1rem;
    color: #555;
}

.suggestion-badge {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.badge-product {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.badge-service {
    background-color: #e0f2f1;
    color: #004d40;
}

.suggestion-loading {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 1.3rem;
}

.suggestion-no-results {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 1.3rem;
}

.suggestion-view-all {
    display: block;
    padding: 12px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    font-weight: 700;
    color: #3C63A4;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.suggestion-view-all:hover {
    background: #f1f3f5;
    color: #2b4c80;
}

/* Spinner */
.search-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,.1);
    border-radius: 50%;
    border-top-color: #3C63A4;
    animation: spin 0.8s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

/* Scrollbar styling for suggestions */
.search-suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
}
.search-suggestions-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.search-suggestions-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.search-suggestions-dropdown::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Align Mobile Sticky Footer Search Dropdown up */
.sticky-footer .header-search.dir-up .search-suggestions-dropdown {
    bottom: 100%;
    top: auto;
    margin-top: 0;
    margin-bottom: 4px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}

/* Mobile sticky footer — always visible, evenly spaced bottom nav */
@media (max-width: 767px) {
    .sticky-content-wrapper {
        display: block !important;
        height: 0 !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .sticky-footer.sticky-content {
        position: fixed !important;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
        left: 12px !important;
        right: 12px !important;
        width: calc(100% - 24px) !important;
        margin: 0 !important;
        z-index: 1051;
        display: flex !important;
        align-items: center !important;
        justify-content: space-around !important;
        height: 64px !important;
        padding: 0 8px !important;
        background: rgba(255, 255, 255, 0.94) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-radius: 20px !important;
        box-shadow: 0 8px 30px rgba(50, 104, 178, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
        box-sizing: border-box !important;
        transition: all 0.3s ease;
    }

    .sticky-footer > * {
        flex: 1 1 0;
        min-width: 0;
        height: 100%;
    }

    .sticky-footer .sticky-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 4px 0 !important;
        color: #8e9aa8 !important;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .sticky-footer .sticky-link.active {
        color: #3268b2 !important;
    }

    .sticky-footer .sticky-link.active::before {
        content: '' !important;
        position: absolute !important;
        top: 6px !important;
        bottom: 6px !important;
        left: 8px !important;
        right: 8px !important;
        background: rgba(50, 104, 178, 0.08) !important;
        border-radius: 14px !important;
        z-index: -1 !important;
        border: 1px solid rgba(50, 104, 178, 0.1) !important;
        animation: pill-scale 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .sticky-footer .sticky-link i {
        font-size: 2.2rem !important;
        width: auto !important;
        height: auto !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .sticky-footer .sticky-link.active i {
        transform: translateY(-2px) scale(1.06) !important;
    }

    .sticky-footer .sticky-link span {
        font-size: 1rem !important;
        margin-top: 3px !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        display: block !important;
        font-weight: 500 !important;
        transition: color 0.3s !important;
    }

    .sticky-footer .sticky-link.active span {
        font-weight: 600 !important;
    }

    .sticky-footer .header-search.hs-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        min-width: 0;
    }

    .sticky-footer .header-search .search-toggle.sticky-link {
        width: 100%;
    }

    .sticky-footer .hs-toggle .input-wrapper {
        min-width: 0 !important;
        width: calc(100vw - 2rem) !important;
        max-width: calc(100vw - 2rem) !important;
        right: auto !important;
        left: 50% !important;
        transform: translate3d(-50%, 10px, 0) !important;
        margin-bottom: 0.5rem !important;
        padding: 1rem !important;
        box-sizing: border-box;
    }

    .sticky-footer .header-search.hs-toggle.show .input-wrapper {
        transform: translate3d(-50%, 0, 0) !important;
    }

    .sticky-footer .sticky-link--cart {
        position: relative !important;
    }

    .sticky-footer .sticky-link--cart .cart-count {
        position: absolute !important;
        top: 5px !important;
        left: 50% !important;
        transform: translateX(10px) !important;
        margin-left: 0 !important;
        right: auto !important;
        background-color: #e35e38 !important;
        color: #fff !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        padding: 0 !important;
        width: 16px !important;
        height: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1.5px solid #fff !important;
        box-shadow: 0 2px 6px rgba(227, 94, 56, 0.4) !important;
        z-index: 3 !important;
    }

    .page-wrapper {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

@keyframes pill-scale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Shop / services listing — static filter bar above cards on mobile */
@media (max-width: 767px) {
    .main-content-wrap .sticky-content-wrapper {
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }

    .main-content-wrap .toolbox.sticky-toolbox {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        margin: 0 0 1rem 0 !important;
        padding: 1rem 0 0.5rem !important;
        box-shadow: none !important;
        z-index: 21;
        flex-wrap: wrap;
        gap: 0.75rem;
        background-color: #fff;
    }

    .main-content-wrap .toolbox.sticky-toolbox.fixed,
    .main-content-wrap .toolbox.sticky-toolbox.sticky-content.fixed {
        position: relative !important;
        animation: none !important;
    }

    .main-content-wrap .toolbox-left,
    .main-content-wrap .toolbox-right {
        flex: 1 1 100%;
        width: 100%;
        margin: 0;
    }

    .main-content-wrap .toolbox-left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
    }

    .main-content-wrap .toolbox-right .show-info {
        margin: 0;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .main-content-wrap .toolbox-item.left-sidebar-toggle {
        margin-right: 0;
        flex: 1 1 auto;
    }

    .main-content-wrap .product-wrapper,
    .main-content-wrap .product-lists {
        position: relative;
        z-index: 1;
        clear: both;
    }
}

/* Sticky Chat CTA Bubbles */
.whatsapp-li,
.messenger-li {
    position: relative;
}

.chat-bubble-prompt {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px 20px 0 20px;
    font-size: 1.3rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: bubble-bounce 2.2s infinite ease-in-out, bubble-fade-in 0.5s ease-out;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-bubble-prompt::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    display: block;
    width: 0;
}

/* Messenger Bubble Styling */
.messenger-bubble {
    background: linear-gradient(135deg, #0975FF, #b900b4);
    box-shadow: 0 8px 24px rgba(185, 0, 180, 0.35);
}

.messenger-bubble::after {
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #b900b4;
}

/* WhatsApp Bubble Styling */
.whatsapp-bubble {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-bubble::after {
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #128C7E;
}

.chat-bubble-link {
    color: #fff !important;
    text-decoration: none !important;
}

.chat-bubble-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}

.chat-bubble-close:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Animations */
@keyframes bubble-fade-in {
    from {
        opacity: 0;
        transform: translate(15px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes bubble-bounce {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-58%);
    }
}

@media (max-width: 767px) {
    .chat-bubble-prompt {
        right: 65px;
        padding: 8px 12px;
        font-size: 1.1rem;
    }
    .chat-bubble-prompt::after {
        border-width: 6px 0 6px 6px;
        right: -6px;
    }
}

/* Header Right Filled Blue Icons Styling (Enhanced & Premium) */
.header-middle .header-right {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important; /* Standard equal gap on desktop */
}

/* Reset margin classes on children that would cause unequal gaps */
.header-middle .header-right > * {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Gap between phone icon circle and phone number text */
.header-right .icon-box-icon {
    margin-right: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.header-right .header-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(50, 104, 178, 0.08) !important;
    color: #3268b2 !important;
    font-size: 1.8rem !important; /* Scaled down slightly to fit beautifully in the circle */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(50, 104, 178, 0.15);
}

.header-right .header-icon:hover {
    background-color: #3268b2 !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(50, 104, 178, 0.25);
    border-color: #3268b2;
}

/* Facebook Icon Specific Hover brand color */
.header-right .facebook-link:hover .header-icon {
    background-color: #1877F2 !important;
    border-color: #1877F2;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

/* Cart Toggle Alignment & Cart Badge Styling */
.header-right .cart-toggle {
    text-decoration: none;
}

.header-right .cart-toggle .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    background-color: #e35e38 !important; /* Accent Red/Orange */
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
    border: 2px solid #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: sans-serif !important;
    pointer-events: none; /* Keep clicks flowing to the link wrapper */
}

/* Mobile Menu Toggle Style (Attractive Burger Button) */
.mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px; /* Squircle looks extremely modern for mobile toggles */
    background-color: rgba(50, 104, 178, 0.08) !important;
    color: #3268b2 !important;
    font-size: 1.8rem !important;
    transition: all 0.25s ease;
    border: 1px solid rgba(50, 104, 178, 0.15);
    margin-right: 15px;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    background-color: #3268b2 !important;
    color: #ffffff !important;
    border-color: #3268b2;
}

/* Header Search Button Hover Effect */
.btn-search {
    transition: background-color 0.2s, color 0.2s, transform 0.2s !important;
}

.btn-search:hover {
    transform: scale(1.05);
    color: #3268b2 !important;
}

@media (max-width: 991px) {
    /* Responsive Spacing & Scaling of icons */
    .header-middle .header-right {
        gap: 15px !important; /* Standard equal gap on mobile */
    }

    .header-right .header-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.5rem !important;
    }
    
    .header-right .cart-toggle .cart-count {
        top: -3px;
        right: -3px;
        width: 18px !important;
        height: 18px !important;
        font-size: 0.9rem !important;
    }

    .header-right .icon-box-icon {
        font-size: 1.5rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
}

/* Product discount and sale tag styles */
.product-price del.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
    font-size: 85%;
    font-weight: normal;
}

.product-label.label-sale {
    background-color: #e35e38 !important;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
}

/* Mobile Product Tabs styling - display side-by-side */
@media (max-width: 767px) {
    .product-tabs .nav-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        border-bottom: 1px solid #eee !important;
        padding-left: 0 !important;
        margin: 0 !important;
    }
    .product-tabs .nav-tabs .nav-item {
        margin: 0 !important;
        flex: 1;
        text-align: center;
    }
    .product-tabs .nav-tabs .nav-link {
        font-size: 1.2rem !important;
        padding: 10px 2px !important;
        white-space: nowrap !important;
        letter-spacing: -0.02em;
    }
}

/* Mobile-only Intro Banner Image Aspect Ratio & Overlaid Text Adjustment */
@media (max-width: 767px) {
    .intro-slider .banner-fixed {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
    }
    .intro-slider .banner-fixed figure {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }
    .intro-slider .banner-fixed figure img {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Layout styling for text over image on mobile */
    .intro-slider .banner-content {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        left: 5% !important;
        width: 90% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    /* Animation fix: ensure smooth immediate transition without pre-animation flash */
    .intro-slider .slide-animate {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .intro-slider .owl-item.active .slide-animate.show-content,
    .intro-slider .owl-item.active .show-content {
        opacity: 1 !important;
        visibility: visible !important;
    }
    .intro-slider .owl-item.active .slide-animate {
        animation-duration: 0.4s !important;
        animation-delay: 0s !important;
    }

    /* Typography scaling & bold font weight */
    .intro-slider .banner-subtitle {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.05em !important;
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
    }
    .intro-slider .banner-subtitle span {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
    }
    .intro-slider .banner-subtitle span.d-block {
        margin-bottom: 2px !important;
        font-weight: 800 !important;
    }
    .intro-slider .banner-title {
        font-size: 1.65rem !important;
        font-weight: 800 !important;
        margin-bottom: 2px !important;
        line-height: 1.15 !important;
    }
    .intro-slider .banner-content h3,
    .intro-slider .banner-heading-3 {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        margin-bottom: 4px !important;
        display: block !important;
    }
    .intro-slider .banner-content p,
    .intro-slider .banner-desc {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        color: #222 !important;
        margin-bottom: 8px !important;
        max-width: 195px !important;
        display: block !important;
    }
    .intro-slider .banner-content .btn {
        padding: 4px 10px !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        min-height: auto !important;
        line-height: 1.2 !important;
        display: inline-flex !important;
        align-items: center !important;
    }
    .intro-slider .banner-content .btn i {
        font-size: 0.75rem !important;
        margin-left: 4px !important;
    }
}

/* Extra small mobile screens (up to 479px) */
@media (max-width: 479px) {
    .intro-slider .banner-subtitle {
        font-size: 0.85rem !important;
    }
    .intro-slider .banner-subtitle span {
        font-size: 0.85rem !important;
    }
    .intro-slider .banner-subtitle span.d-block {
        margin-bottom: 1px !important;
    }
    .intro-slider .banner-subtitle .label-star {
        font-size: 0.75rem !important;
        padding: 1px 4px !important;
    }
    .intro-slider .banner-title {
        font-size: 1.2rem !important;
        margin-bottom: 2px !important;
    }
    .intro-slider .banner-content .btn {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
    }
    .intro-slider .banner-content .btn i {
        font-size: 0.7rem !important;
    }
    .intro-slider .owl-dots {
        bottom: 4px !important;
    }
    .intro-slider .owl-dot span {
        width: 6px !important;
        height: 6px !important;
        margin: 3px !important;
    }
}

/* Align all text and button to the left inside the second slide's content box */
.intro-slider .intro-slide2 .banner-content {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

/* Ensure third slide content has fixed max-width and does not overlap background graphics */
@media (min-width: 768px) {
    .intro-slider .intro-slide3 .banner-content {
        max-width: 460px !important;
    }
    .intro-slider .intro-slide3 .banner-content p {
        max-width: 440px !important;
    }
}

/* Homepage Category Slider Section Styles */
.category-slider-section {
    background-color: transparent;
    overflow: visible;
}

.category-card-link {
    text-decoration: none !important;
    display: block;
}

.category-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid #f1f3f7;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

.category-card-badge {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 2px 8px;
    margin-bottom: 6px;
    display: inline-block;
    letter-spacing: 0.02em;
}

.category-card-badge.type-product {
    background-color: rgba(50, 104, 178, 0.08);
    color: #3268b2;
}

.category-card-badge.type-service {
    background-color: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.category-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222222;
    margin: 0;
    transition: color 0.25s ease;
    white-space: normal !important;
    word-wrap: break-word;
    word-break: keep-all;
    line-height: 1.3;
    width: 100%;
}

/* Hover effects */
.category-card-link:hover .category-card {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(50, 104, 178, 0.1);
    border-color: rgba(50, 104, 178, 0.18);
}

.category-card-link:hover .category-card-title {
    color: #3268b2;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .category-card {
        padding: 12px 10px;
    }
    .category-card-title {
        font-size: 1.2rem;
    }
    .category-card-badge {
        font-size: 0.8rem;
        padding: 1px 6px;
        margin-bottom: 4px;
    }
}

/* Responsive adjustments for 3-column product list on mobile */
@media (max-width: 767px) {
    .product-wrapper .title {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    /* Product card overrides for 3 columns */
    .product-wrapper .product {
        padding: 5px !important;
    }
    
    .product-wrapper .product .product-media img {
        height: auto !important; /* Allow natural aspect ratio */
    }
    
    .product-wrapper .product .product-details {
        padding: 8px 4px 4px !important;
    }
    
    .product-wrapper .product .product-cat {
        font-size: 1.2rem !important;
        margin-bottom: 2px !important;
    }
    
    .product-wrapper .product .product-name {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
        font-weight: 500 !important;
    }
    
    .product-wrapper .product .product-price {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
    }

    .product-wrapper .product .product-price .old-price {
        font-size: 0.9rem !important;
        margin-left: 4px !important;
    }
    
    /* Shrink product badges */
    .product-wrapper .product .product-label {
        font-size: 0.8rem !important;
        padding: 1px 4px !important;
        line-height: 1.1 !important;
        min-height: auto !important;
    }
    
    /* Hide desktop-only action overlays on mobile to save space */
    .product-wrapper .product .product-action,
    .product-wrapper .product .product-action-vertical {
        display: none !important;
    }
    
    /* Make the bottom Shop Now button smaller on mobile views */
    .product-wrapper .btn-shop-now {
        padding: 8px 18px !important;
        font-size: 1.1rem !important;
        min-height: auto !important;
        line-height: 1.2 !important;
    }
}

/* Display full name of products and services without truncation */
.product-name,
.product-name a {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    max-height: none !important;
}

/* Responsive adjustments for WhatsApp and Messenger floating icons on mobile */
@media (max-width: 767px) {
    .sticky-icon-links li i {
        width: 46px !important;
        height: 46px !important;
        font-size: 26px !important;
    }
    .chat-bubble-prompt {
        right: 58px !important;
        padding: 6px 12px !important;
        font-size: 1.1rem !important;
    }
}

/* Desktop Search Bar Gradient Border Styling */
.header-search .form-control {
    border: 2px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box, var(--primary-gradient) border-box !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.header-search .form-control:focus {
    background: linear-gradient(#fff, #fff) padding-box, var(--accent-gradient) border-box !important;
    box-shadow: 0 0 8px rgba(94, 53, 177, 0.15) !important;
}

/* Mobile Search Bar Styling */
.mobile-search-bar {
    background-color: #fff !important;
    padding: 12px 15px !important;
    border-bottom: 1px solid #eee !important;
    border-top: 1px solid #f5f5f5 !important;
}

.mobile-search-bar .input-wrapper {
    position: relative !important;
    width: 100% !important;
}

.mobile-search-bar .form-control {
    width: 100% !important;
    height: 42px !important;
    border-radius: 6px !important;
    border: 2px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box, var(--primary-gradient) border-box !important;
    padding: 0 45px 0 15px !important;
    font-size: 1.3rem !important;
    transition: all 0.3s ease !important;
    color: #333 !important;
    box-sizing: border-box !important;
}

.mobile-search-bar .form-control:focus {
    background: linear-gradient(#fff, #fff) padding-box, var(--accent-gradient) border-box !important;
    box-shadow: 0 0 8px rgba(94, 53, 177, 0.15) !important;
}

.mobile-search-bar .btn-search {
    position: absolute !important;
    right: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: #666 !important;
    font-size: 1.6rem !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s !important;
    margin: 0 !important;
}

.mobile-search-bar .btn-search:hover {
    color: #3268b2 !important;
}

/* Ensure suggestions dropdown floats correctly on mobile search bar */
.mobile-search-bar .search-suggestions-dropdown {
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    margin-top: 5px !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Gradient Buttons & Hover Elevations */
.btn-primary,
.btn-shop-now,
.btn-product {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: var(--blue-glow) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-primary:hover,
.btn-shop-now:hover,
.btn-product:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(94, 53, 177, 0.35) !important;
    filter: brightness(1.08) !important;
}

.btn-secondary {
    background: var(--accent-gradient) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: var(--accent-glow) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-secondary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(244, 81, 30, 0.35) !important;
    filter: brightness(1.08) !important;
}

/* Cart Badge Gradient */
.cart-count {
    background: var(--accent-gradient) !important;
    box-shadow: 0 2px 8px rgba(227, 94, 56, 0.3) !important;
}

/* Dynamic Elevations on Product & Service Cards */
.product-wrapper .product,
.featured-services .product {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.product-wrapper .product:hover,
.featured-services .product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(50, 104, 178, 0.12) !important;
}

/* Section Headings with Gradient Text & Underline */
.product-wrapper .title,
.featured-services .title,
.blog-post-wrapper .title,
.title-center {
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    background: var(--primary-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
    width: 100% !important;
    text-align: center !important;
}

.title-center::after {
    content: '' !important;
    display: block !important;
    width: 65px !important;
    height: 4px !important;
    background: var(--primary-gradient) !important;
    margin: 12px auto 0 !important;
    border-radius: 4px !important;
}

/* Category pills design enhancements */
.category-card {
    background: #fff;
    border: 1px solid rgba(50, 104, 178, 0.12) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.category-card-link:hover .category-card {
    border-color: transparent !important;
    background: linear-gradient(to right, rgba(50, 104, 178, 0.03), rgba(94, 53, 177, 0.03)) !important;
    box-shadow: 0 10px 25px rgba(50, 104, 178, 0.12) !important;
}

.category-card-link:hover .category-card-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card-badge.type-product {
    background: linear-gradient(135deg, rgba(50, 104, 178, 0.08), rgba(94, 53, 177, 0.08)) !important;
    color: #3268b2 !important;
    border: 1px solid rgba(50, 104, 178, 0.1) !important;
}

.category-card-badge.type-service {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08)) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.1) !important;
}

/* Mobile sticky footer styling accentuation */
@media (max-width: 767px) {
    .sticky-footer.sticky-content::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3px !important;
        background: var(--primary-gradient) !important;
        border-radius: 20px 20px 0 0 !important;
    }
}

/* Header Icons Gradient Hover Style */
.header-right .header-icon:hover {
    background: var(--primary-gradient) !important;
    border-color: transparent !important;
}

/* Mobile Toggle Menu Squircle Hover Style */
.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    background: var(--primary-gradient) !important;
    border-color: transparent !important;
}

/* Blog Read More Button Sizing and Styling */
.blog-post .btn-read-more {
    padding: 8px 20px !important;
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
    min-height: auto !important;
    margin-top: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    border-radius: 30px !important;
    background: var(--primary-gradient) !important;
    color: #fff !important;
    box-shadow: var(--blue-glow) !important;
    text-transform: capitalize !important;
}

.blog-post .btn-read-more:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(94, 53, 177, 0.3) !important;
    filter: brightness(1.08) !important;
}

.blog-post .btn-read-more i {
    font-size: 1rem !important;
    margin: 0 !important;
}

/* Hide mobile menu hamburger toggle on desktop and keep visible on mobile/tablet */
.header-left .mobile-menu-toggle,
.mobile-menu-toggle {
    display: none !important;
}

@media screen and (max-width: 991px) {
    .header-left .mobile-menu-toggle,
    .mobile-menu-toggle {
        display: inline-flex !important;
    }
}

/* Category Marquee Slider Styles */
.category-marquee-section {
    overflow: hidden;
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.category-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    gap: 20px;
    padding: 10px 0;
}

.category-marquee-wrapper:hover .category-marquee-track {
    animation-play-state: paused;
}

.category-marquee-item-link {
    text-decoration: none;
    display: block;
    color: inherit;
    flex-shrink: 0;
}

.category-marquee-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(50, 104, 178, 0.08);
    border-radius: 12px;
    padding: 12px 24px;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 220px;
}

.category-marquee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(50, 104, 178, 0.1);
    border-color: rgba(50, 104, 178, 0.2);
}

.category-marquee-img-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

.category-marquee-item:hover .category-marquee-img-box img {
    transform: scale(1.1);
}

.category-marquee-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-marquee-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.category-marquee-item:hover .category-marquee-title {
    color: var(--primary-color, #3268b2);
}

.category-marquee-badge {
    font-size: 1rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-marquee-badge.type-product {
    background: rgba(50, 104, 178, 0.08);
    color: #3268b2;
}

.category-marquee-badge.type-service {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced Colorful Mobile Sticky Footer Menu */
.sticky-footer.fix-bottom {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(220, 225, 235, 0.8) !important;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.09) !important;
    padding: 6px 10px !important;
    height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 1050 !important;
}

.sticky-footer .sticky-link {
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    padding: 5px 0 !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative;
}

.sticky-footer .sticky-link i {
    font-size: 1.8rem !important;
    margin-bottom: 2px !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
}

.sticky-footer .sticky-link span:not(.cart-count) {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px;
    transition: color 0.3s ease !important;
}

/* Individual Colorful Styling for Mobile Menu Items */

/* Home - Royal Blue */
.sticky-footer .sticky-link-home i {
    color: #3b82f6 !important;
}
.sticky-footer .sticky-link-home span:not(.cart-count) {
    color: #475569 !important;
}
.sticky-footer .sticky-link-home.active,
.sticky-footer .sticky-link-home:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.08)) !important;
}
.sticky-footer .sticky-link-home.active i,
.sticky-footer .sticky-link-home:hover i {
    color: #2563eb !important;
    transform: translateY(-2px) scale(1.1) !important;
}
.sticky-footer .sticky-link-home.active span:not(.cart-count),
.sticky-footer .sticky-link-home:hover span:not(.cart-count) {
    color: #1d4ed8 !important;
    font-weight: 700 !important;
}

/* Shop - Vibrant Emerald / Green */
.sticky-footer .sticky-link-shop i {
    color: #10b981 !important;
}
.sticky-footer .sticky-link-shop span:not(.cart-count) {
    color: #475569 !important;
}
.sticky-footer .sticky-link-shop.active,
.sticky-footer .sticky-link-shop:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.08)) !important;
}
.sticky-footer .sticky-link-shop.active i,
.sticky-footer .sticky-link-shop:hover i {
    color: #059669 !important;
    transform: translateY(-2px) scale(1.1) !important;
}
.sticky-footer .sticky-link-shop.active span:not(.cart-count),
.sticky-footer .sticky-link-shop:hover span:not(.cart-count) {
    color: #047857 !important;
    font-weight: 700 !important;
}

/* Services - Deep Purple / Violet */
.sticky-footer .sticky-link-services i {
    color: #8b5cf6 !important;
}
.sticky-footer .sticky-link-services span:not(.cart-count) {
    color: #475569 !important;
}
.sticky-footer .sticky-link-services.active,
.sticky-footer .sticky-link-services:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(124, 58, 237, 0.08)) !important;
}
.sticky-footer .sticky-link-services.active i,
.sticky-footer .sticky-link-services:hover i {
    color: #7c3aed !important;
    transform: translateY(-2px) scale(1.1) !important;
}
.sticky-footer .sticky-link-services.active span:not(.cart-count),
.sticky-footer .sticky-link-services:hover span:not(.cart-count) {
    color: #6d28d9 !important;
    font-weight: 700 !important;
}

/* Cart - Vibrant Rose / Coral */
.sticky-footer .sticky-link-cart i {
    color: #f43f5e !important;
}
.sticky-footer .sticky-link-cart span:not(.cart-count) {
    color: #475569 !important;
}
.sticky-footer .sticky-link-cart.active,
.sticky-footer .sticky-link-cart:hover {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(225, 29, 72, 0.08)) !important;
}
.sticky-footer .sticky-link-cart.active i,
.sticky-footer .sticky-link-cart:hover i {
    color: #e11d48 !important;
    transform: translateY(-2px) scale(1.1) !important;
}
.sticky-footer .sticky-link-cart.active span:not(.cart-count),
.sticky-footer .sticky-link-cart:hover span:not(.cart-count) {
    color: #be123c !important;
    font-weight: 700 !important;
}

/* Cart Badge Enhancement */
.sticky-footer .cart-count {
    background: linear-gradient(135deg, #ff4757, #ff6b81) !important;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4) !important;
    border: 2px solid #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

/* Hide sticky footer on desktop and tablet screens (min-width: 768px) */
@media (min-width: 768px) {
    .sticky-footer.fix-bottom {
        display: none !important;
    }
}

/* Product Card - Custom Category and Name Font Color */
.product-details .product-cat a{
    color: #e35e38 !important;
    font-weight: bold;
}
.product-details .product-name a {
    color: #484eb1 !important;
    font-weight: bold;
}



