body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    width: 100%;
    height: 100%;
}

.product-detail-container {
    position: relative;
    background: #fff;
    width: 100%;
    height: 100vh;
    padding: 20px;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: hidden;
    bottom: 0;
}

.product-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.rating-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rating {
    color: #ff0;
    background-color: #333;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}

.price {
    text-align: right;
}

.current-price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

.discount {
    color: #e53935;
    font-weight: bold;
    margin-left: 8px;
}

.selector {
    margin: 10px 0;
}

.selector label {
    display: block;
}

.selector select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.minus-btn,
.plus-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 10px;
}

.add-to-cart-btn {
    padding: 10px;
    background-color: #910c3e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: grid;
    justify-content: space-between;
    position: relative;
    grid-template-columns: 100px 1fr;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
    box-sizing: border-box;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;

}

.details-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: center;
}

.details-container img {
    max-width: 400px;
    max-height: 400px;
}
.counter {
    display: flex !important;

align-items: center;
justify-content: center;
bottom: 10px;
background: white;
border-radius: 8px;
justify-content: space-between;
padding: 5px 10px;
box-sizing: border-box;
}
.quantity-input {
text-align: center;
width: 40px;
border-radius: 4px;
padding: 5px 10px;
width: 100%;
background: none;
border: none;
color: black !important;;

}
.minus-btn,
.plus-btn {
display: block;
width: 32px;
height: 32px;
color: black !important;;
border-radius: 4px;
padding: 0;
line-height: 30px;
text-align: center;
cursor: pointer;
user-select: none;
background: none;
border: none !important;
;
font-size: 25px;

}
.cart-order{
align-self: center;
justify-self: center;
text-decoration: none !important;
color: white;
width: 100%;
text-align: center;
background: none;
border: none;
cursor: pointer;
}
