/* =========================
   CONTENUT PRODUS CENTRAT
========================= */
.hikashop_product {
    display: flex;
    flex-direction: column;
    align-items: center; /* centru orizontal */
    text-align: center;  /* centru text */
    margin: 20px auto;
}

/* ----------------------------
   IMAGINE PRODUS MARE + ZOOM
----------------------------- */
.hikashop_product_image img {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.hikashop_product_image img:hover {
    transform: scale(1.1);
}

/* ----------------------------
   TEXT, PREȚ, BUTON
----------------------------- */
.hikashop_product_name,
.hikashop_product_description,
.hikashop_product_price,
.hikashop_product_addtocart {
    text-align: center;
    margin: 10px 0;
}

/* ----------------------------
   BUTON „ADAUGA IN COS” MAI VIZIBIL
----------------------------- */
.hikashop_product_addtocart input,
.hikashop_product_addtocart button {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px auto;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hikashop_product_addtocart input:hover,
.hikashop_product_addtocart button:hover {
    background-color: #e65500;
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE – TABLETĂ
========================= */
@media (max-width: 992px) {
    .hikashop_product_image img {
        max-width: 80%;
    }

    .hikashop_product_addtocart input,
    .hikashop_product_addtocart button {
        width: 70%;
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* =========================
   RESPONSIVE – MOBIL
========================= */
@media (max-width: 576px) {
    .hikashop_product_image img {
        max-width: 95%;
    }

    .hikashop_product_addtocart input,
    .hikashop_product_addtocart button {
        width: 90%;
        padding: 10px 15px;
        font-size: 14px;
    }

    .hikashop_product_description {
        font-size: 14px;
    }

    .hikashop_product_price {
        font-size: 16px;
    }
}
