/*
Custom Css
*/


.product-card {
    background: #fff;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* IMAGE */
.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFOS */
.product-info {
    flex: 1;
    padding: 30px;
}

.product-info h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.brand {
    color: #777;
    margin-bottom: 15px;
}

.description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 20px;
}

.quantity {
    margin-bottom: 20px;
}

.quantity input {
    width: 70px;
    padding: 6px;
    font-size: 16px;
}

.btn-cart {
    width: 100%;
    background-color: #1d3557;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.btn-cart:hover {
    background-color: #457b9d;
}

/* 📱 VERSION MOBILE */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
    }

    .product-image img {
        height: 300px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h1 {
        font-size: 22px;
    }

    .price {
        font-size: 20px;
    }
}
