.product-page nav {
    display: flex;
    justify-content: flex-start;
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 10px;
}

.product-page nav a {
    text-decoration: none;
    color: black;
}

.product-page nav span {
    color: #8b1e1e;
}

.product-container {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.product-images {
    flex: 1;
    display: flex;
    gap: 10px;
    margin-left: 65px;
    margin-right: 70px;
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.small-images img {
    border: 1px solid #ccc;
    padding: 5px;
    cursor: pointer;
    width: 100px;
    height: 100px;
}
.main-image {
    border: 1px solid #8b1e1e;
    position: relative;
    overflow: hidden;
}
.main-image img {
    width: 400px;
    height: 400px;
    display: block;
}
.zoom-result {
    position: absolute;
    border: 1px solid #d4d4d4;
    width: 450px;
    height: 400px;
    left: 45%;
    background-repeat: no-repeat;
    background-size: 300%;
    display: none;
}
.product-details {
    flex: 2;
}

.product-details h1 {
    color: #8b1e1e;
    font-size: 24px;
}

.reviews {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
}

.reviews span {
    color: gold;
}

.descriptions {
    margin: 20px 0;
    color: #555;
}

.pricing {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
} 

.offer-price {
    font-size: 24px;
    color: #a30000;
}

.original-price {
    text-decoration: line-through;
    color: #888;
}

.discount {
    background-color: #a30000;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 12px;
}

.product-options {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.weight, .quantity {
    display: flex;
    flex-direction: column;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-controls button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    cursor: pointer;
}

.qty-controls input {
    width: 30px;
    text-align: center;
    border: 1px solid #ccc;
}

.specs p {
    margin: 5px 0;
}

.actions {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.add-to-cart, .buy-now {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.add-to-cart {
    background-color: #f7f7f7;
    color: #a30000;
    border: 1px solid #a30000;
}

.buy-now {
    background-color: #a30000;
    color: white;
}
.buy-now a {
    color: white;
}