/* customButtons.css */
.custom-button {
    position: relative;
    padding: 0 42px;
    line-height: 61px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #D7D7D7;
    border-right: 0;
    border-left: 0;
    background: #595959;
}

.btn-outline {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 14px 30px;
}

.c_productFieldName{
    font-size: 14px;
    font-weight: bold;
}


/*  product css  */

.product-container {
    display: flex;
    flex-direction: column;
}

.c-image-wrapper {
    position: relative;
    width: 15%;
}

/* .c-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
 */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.button-container {
    display: flex;
    pointer-events: auto;
    gap: 8px;
}

.wish-button, .add-button {
    padding: 8px 24px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-price{
    font-size: 14px;
    color: #222222;
    font-weight: bold;
}

.order-history{
    margin: -10px;
}

.border-bottom{
    border-bottom: 1px solid #131313;
}