.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.product-image img {
    max-width: 100%;
    border-radius: 8px;
}

.product-info {
    flex: 1;
    max-width: 600px;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    color: #ff5722;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.buy-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

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