* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Lato';
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 15px;
}

.container-reviews {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 15px;
}

.product {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.maps-product {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.reviewss {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.reviewss h2 {
    text-align: center;
}

.product-images {
    flex: 2;
    min-width: 300px;
    padding: 10px;
}

.product-images img {
    width: 100%;
    border-radius: 8px;
}

.maps-images {
    flex: 2;
    min-width: 300px;
    padding: 10px;
}

.maps-images iframe {
    width: 100%;
    border-radius: 8px;
}

.reviews-images {
    flex: 1;
    min-width: 195px;
    padding: 10px;
}

.reviews-images img {
    width: 100%;
    border-radius: 8px;
}

.product-details {
    flex: 2;
    min-width: 300px;
    padding: 10px;
}

.maps-details {
    flex: 2;
    min-width: 300px;
    padding: 10px;
}

.reviews-details {
    flex: 2;
    min-width: 300px;
    padding: 10px;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.product-price {
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 20px;
}

.reviews {
    margin-top: 20px;
}

.review {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.review h4 {
    margin: 0 0 5px 0;
}

.add-to-cart {
    background-color: #ff0000;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    font-weight: 900;
}

.add-to-cart:hover {
    background-color: #7d0000;
}


header {
    background-color: #000000;
    padding: 10px;
    color: white;
    text-align: center;
}

.logo img {
    width: 150px;
    height: auto;
}

a {
    text-decoration: none;
}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    bottom: 0;
    width: 100%;
}

table {
    width: 100%;
    border-radius: 12px
}

td {
    background: var(--darkest-color);
    border-color: #0e0e0e;
    border-radius: 12px;
    padding: 10px
}

td:first-child {
    width: 35%
}