body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.product-image {
    margin-right: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-details {
    max-width: 600px;
}

.price {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}

.short-description,
.long-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.add-to-cart {
    padding: 10px;
    background-color: #000000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
}
.product-image img{
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.add-to-cart:hover {
    background-color: #2e2828;
}
.size-guide {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

.size-guide tbody td:first-child {
    font-weight: bold;
}

.size-guide tbody td:nth-child(odd) {
    background-color: #f9f9f9;
}

@media screen and (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(50% - 20px); /* 2 products per row on smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .product-card {
        flex: 0 0 calc(100% - 20px); /* 1 product per row on even smaller screens */
    }
}