﻿.header .header-search-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    font-size: 1.2rem;
    width: 51.7rem;
    height: 4.4rem;
    border: 1px solid #e9e9e9;
    overflow: hidden;
}

    .header .header-search-btn .header-input,
    .header .header-search-btn .search-btn {
        height: 100%;
        padding: 0 2rem;
        color: #232532;
        font-weight: 500;
        border: none;
        outline: none;
        width:100%;
    }

        .header .header-search-btn .header-input::placeholder,
        .header .header-search-btn .search-btn::placeholder {
            color: #797979;
        }

    .header .header-search-btn .search-btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
        width: 100%;
        color: #797979;
    }

    .header .header-search-btn .shop-btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0px;
        height: 100%;
        border-radius: 0;
        background: #D11C76;
        padding: 1rem 2.2rem;
    }

        .header .header-search-btn .shop-btn::after {
            display: none;
        }

        .header .header-search-btn .shop-btn:hover {
            color: #232532;
        }

    .header .header-search-btn .divider {
        width: 1px;
        background: #eee;
        height: 2.5rem;
    }

    .header .header-search-btn #allcat {
        flex: 1 1 0%;
    }

.product-code-top {
    background-color: #d11c76;
    font-size: 14px;
    position: absolute;
    left: 5%;
    top: 5%;
    border-radius: 5px;
    padding: 1px 5px;
    font-weight: bold;
    color: white;
}

.item-Status{
    font-weight:bold;
    font-size:14px;
    color:firebrick;
}

/*......................................................................................*/

.variant-li {
    display: inline-block;
    margin: 5px;
    border: 1px solid #ffa1d0 !important;
    background: #f8fbff;
    padding: 1px;
}

.modal-variant-li {
    display: inline-block;
    margin: 5px;
    border: 1px solid #ffa1d0 !important;
    background: #f8fbff;
    padding: 1px;
}

.active-variant-li {
    border: 2px solid var(--pink-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    background: var(--pink-dark);
    font-weight: 600;
    color: white;
    padding: 2px;
}
.active-variant-li a {
    color: white;
}

.variant-title {
    color: #D11C76;
}



#btnAddToCart:disabled, #checkOutBtn:disabled, #btnCheckout:disabled {
    background-color: #cccccc;
}

.error {
    color: red !important;
}


.cart-noti {
    position: absolute;
    top: -10px;
    background-color: #D11C76;
    color: #fff;
    border-radius: 50px;
    height: 20px;
    text-align: center;
    width: 20px;
    left:22px;
}

.btn-act {
    border: 1px solid #ffa1d0;
    padding: 5px;
    background-color: #D11C76;
    color:#fff;
    border-radius: 5px;
}


.policy-details{
    font-size:1.5rem;
}


.dress-bg {
    background: url("../images/banner/dress.webp") no-repeat center/cover;
    height: 44rem;
    border-radius: 0.5rem;
    padding: 6.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
}

.shoe-bg {
    background: url("../images/banner/shoe.webp") no-repeat center/cover;
    height: 44rem;
    border-radius: 0.5rem;
    padding: 6.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
}
.bag-bg {
    background: url("../images/banner/bag.webp") no-repeat center/cover;
    height: 44rem;
    border-radius: 0.5rem;
    padding: 6.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.fixed-header.visible {
    transform: translateY(0);
}