.sale-section {
    background: linear-gradient(90deg, #04033a, #5a0677);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
}

.best-sale-section {
    background: #fff;
    padding: 20px;
}

.sale-card {
    border-radius: 12px;
    background: #fff;
    padding: 15px;
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
}

/* hover effect zoom-in */
.sale-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e0006c;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.badge-tag+.badge-tag {
    top: 35px;
}

.product-cat-title {
    font-size: 14px;
    font-weight: bold;
    color: #b86c36;
    margin-top: 10px;
}

.product-title {
    font-size: 14px;
    color: #333;
    /* min-height: 40px; */
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.price-new {
    color: #e0006c;
    font-weight: bold;
    font-size: 16px;
    margin-left: 5px;
}

.see-all-btn {
    background: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #ddd;
}
.see-all-btn:hover {
    color: #000;
    background: #ddd;
}
#cam{
    font-weight: bold;
    position: absolute;
    top: 6px;
    right: 6px;
    background: red;
    color: #fff;
    height: 15px;
    width: 14px;
    line-height: 15px;
    font-size: 10px;
    border-radius: 50px;
    padding: 0px 4px;
}
#cam2{
    font-weight: bold;
    position: absolute;
    top: 6px;
    right: 20px;
    background: red;
    color: #fff;
    height: 15px;
    width: 14px;
    line-height: 15px;
    font-size: 10px;
    border-radius: 50px;
    padding: 0px 4px;
}

.owl-nav button {
    background: #fff !important;
    border-radius: 50% !important;
    height: 40px;
    width: 40px;
    color: #000 !important;
    font-size: 18px !important;
    margin: 0 5px;
}

.owl-nav button:hover {
    background: #e0006c !important;
    color: #fff !important;
}

/* ====== Hover Add Button (+) ====== */
.mobile-add-btn {
    position: absolute;
    top: 2px;
    right: 3px;
    background: #e0006c;
    color: #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ====== Hover Add Button (+) ====== */
.sale-card .add-btn {
    position: absolute;
    top: -50px;
    right: -50px;
    background: #e0006c;
    color: #fff;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sale-card:hover .add-btn {
    top: 10px;
    right: 10px;
}

.sale-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}
.featured-cat-title{
    color: gray;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}



@media screen and (min-width:700px){
    .mobile-add-btn {
        display: none;
    }
}
@media screen and (max-width:700px) {
    .sale-card .add-btn {
        display: none;
    }
}



.submenu-container {
    width: 100%;
    border: 1px solid #e9e9e9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0px auto;
}

.submenu-column {
    padding: 0 10px;
}

.submenu-column h6 {
    font-weight: bold;
}

.submenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-column ul li {
    padding: 2px 0;
    cursor: pointer;
}

.submenu-column ul li:hover {}

@media (max-width: 991px) {
    .submenu-container {
        max-width: 100%;
    }
}

.category-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    scrollbar-width: thin;
}
/* @media (max-width: 700px) { */
    .category-menu {
        height: 55px;
    }
/* } */
.category-menu::-webkit-scrollbar {
    height: 6px;
}

.category-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.category-item {
    flex: 0 0 auto;
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.category-item:hover {
    background: #f8f9fa;
}

.category-item.active {
    border-color: #ff4d4d;
    background: #fff0f0;
    color: #ff4d4d;
}
