body {
    background: #f9f8ff;
}

.logo {
    text-decoration: none;
    color: white;
}

.main-container {
    width: 90%;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-detail {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    background: #f3f3ff;
    padding: 20px;
    border-radius: 10px;
}

.product-info {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-info h2 {
    color: #6c5ce7;
    margin-bottom: 10px;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #5948c4;
}

@media(max-width:900px) {
    .product-detail {
        flex-direction: column;
    }
}