.product-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.product-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.product-image img {
    width: 400px;
    object-fit: contain;
}

.product-info {
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 600;
    margin: 20px 0;
}

.buy-btn {
    padding: 12px 30px;
    font-size: 16px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #444;
}
