/* Mobile menu styles */
/* #MobileNav .lvl1.parent.megamenu ul {
    display: none;
}

#MobileNav .lvl1.parent.megamenu.open ul {
    display: block;
}

#MobileNav .lvl1.parent.megamenu > a {
    cursor: pointer;
    display: block;
    position: relative;
}

#MobileNav .lvl1.parent.megamenu > a i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

#MobileNav .lvl1.parent.megamenu.open > a i {
    transform: translateY(-50%) rotate(45deg);
}
 */


/* Slider for Product Categories */
.horizontal-slider {
        position: relative;
        margin: 20px 0;
    }
    .slider-scroll {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 5px 20px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .slider-scroll::-webkit-scrollbar {
        height: 6px;
    }
    .slider-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .slider-scroll::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }
    .product-item {
        flex: 0 0 auto;
        width: 260px;
        scroll-snap-align: start;
    }
    .product-card {
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 8px;
        background: #fff;
        transition: 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .product-image {
        position: relative;
        text-align: center;
        margin-bottom: 15px;
    }
    .product-image img {
        max-width: 100%;
        max-height: 180px;
        object-fit: contain;
    }
    .product-labels {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #ff0000;
        color: #fff;
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 12px;
    }
    .product-name {
        font-size: 14px;
        font-weight: 500;
        margin: 10px 0;
        height: 40px;
        overflow: hidden;
    }
    .product-name a {
        color: #333;
        text-decoration: none;
    }
    .product-price {
        font-weight: bold;
        font-size: 16px;
        color: #000;
        margin: 10px 0;
    }
    .btn-add {
        background: #000;
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 4px;
        width: 100%;
        cursor: pointer;
        margin-top: 10px;
    }
    .btn-add:disabled {
        background: #ccc;
        cursor: not-allowed;
    }
    @media (max-width: 768px) {
        .product-item { width: 240px; }
    }

/* Slider for Product Categories */





     /* custom slider styles for Newly arrived */
    .custom-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin: 20px 0;
    }
    .slider-track {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px;
        scrollbar-width: thin;
    }
    .slider-track::-webkit-scrollbar {
        height: 6px;
    }
    .slider-track::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .slider-track::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }
    .slider-item {
        flex: 0 0 auto;
        width: 280px;
        scroll-snap-align: start;
    }
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.6);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 2;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .slider-btn:hover {
        background: rgba(0,0,0,0.9);
    }
    .slider-btn.prev {
        left: 0;
    }
    .slider-btn.next {
        right: 0;
    }
    @media (max-width: 768px) {
        .slider-item { width: 260px; }
        .slider-btn { width: 32px; height: 32px; font-size: 16px; }
    }
    @media (max-width: 480px) {
        .slider-item { width: 240px; }
    }
    /* product card styling */
    .product-card {
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 8px;
        background: #fff;
        transition: 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .product-image {
        position: relative;
        text-align: center;
        margin-bottom: 15px;
        cursor: pointer;
    }
    .product-image img {
        max-width: 100%;
        max-height: 200px;
        object-fit: contain;
        border-radius: 5px;
    }
    .product-labels {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #ff0000;
        color: #fff;
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 12px;
        z-index: 1;
    }
    .product-name {
        font-size: 14px;
        font-weight: 500;
        margin: 10px 0;
        height: 40px;
        overflow: hidden;
    }
    .product-name a {
        color: #333;
        text-decoration: none;
    }
    .product-name a:hover {
        text-decoration: underline;
    }
    .product-price {
        margin: 10px 0;
    }
    .old-price {
        text-decoration: line-through;
        color: #999;
        font-size: 13px;
        margin-right: 8px;
    }
    .price {
        font-weight: bold;
        font-size: 16px;
        color: #000;
    }
    .btn-add {
        background: #000;
        color: #fff;
        border: none;
        padding: 8px 12px;
        border-radius: 4px;
        width: 100%;
        cursor: pointer;
        margin-top: 10px;
    }
    .btn-add:disabled {
        background: #ccc;
        cursor: not-allowed;
    }
    .swatches {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-top: 10px;
    }
    .swatch {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        border: 1px solid #ddd;
        cursor: pointer;
    }
    .swatch img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .tab_content {
        display: none;
    }
    .tab_content.active {
        display: block;
    }
    .tabs li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 20px;
        background: #f5f5f5;
        margin: 0 3px;
        border-radius: 4px;
    }
    .tabs li.active {
        background: #000;
        color: #fff;
    }
















     .welcome-text {
        color: white;
        font-weight: 500;
        margin-right: 10px;
    }
    .customer-links li {
        display: inline-block;
        margin: 0 5px;
    }

    .welcome-link {
    font-weight: 500;
    text-decoration: none;
}
.welcome-link:hover {
    text-decoration: underline;
}