body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
}

.product-page {
    background-color: white;
    padding: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.product-images-carousel {
    width: 100%;
    margin-bottom: 20px;
}

.product-images-carousel img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-details {
    width: 100%;
}

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

.product-rating {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.product-rating .stars {
    color: #FFD700;
}

.price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-details {
    font-size: 24px;
    color: #B12704;
    margin: 1px;
}

.price-details .old-price {
    text-decoration: line-through;
    color: #767676;
    margin: 0; 
}

.discount {
    font-size: 14px;
    color: red;
}


.product-heading {
    font-size: 20px;
    margin-top: 20px;
    color: #333;
}

.product-highlights {
    padding: 0px 10px 0px 10px;
}

.product-highlights h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #555;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.highlights-list li strong {
    flex-basis: 40%;
    font-size: 16px;
    color: #333;
}

.highlights-list li span {
    flex-basis: 55%;
    text-align: left;
    font-size: 14px;
    color: #666;
}

.description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 20px 0;
}

button.buy-now {
    width: 100%;
    padding: 12px;
    background-color: #FFA41C;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
}

button.buy-now:hover {
    background-color: #FF9900;
}


.quantity-selector {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    width: 100%;
}

.quantity-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.quantity-left {
    display: flex;
    gap: 10px;
}

.quantity-controls button {
    padding: 6px 12px;
    font-size: 16px;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.quantity-controls button:active {
    background-color: yellow;
}

.quantity-controls input[type="number"] {
    width: 60px;
    text-align: center;
    padding: 6px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

