/* stil general pt pagina, am pus un background warm asa de restaurant */
/* Stele (font foarte vizibil) */
.text-warning.fs-4 {
    letter-spacing: 2px;
    font-size: 1.6rem !important;
}

/* Recenzii spacing */
.border-bottom {
    border-color: #f1e1b0 !important;
}


body {
    background-color: #fff8e5;
    font-family: "Segoe UI", Roboto, sans-serif;
    padding-top: 30px;
}

.product-details-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
    border-top: 6px solid #f4c542;  /* golden highlight */
}

.product-image-box {
    text-align: center;
}

.product-image {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid #f4c542; /* am mers numai pe golden */
}

/* === PRODUCT TITLE === */
.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d79a00;  /* un gold mai inchis */
}

.product-description {
    font-size: 1.1rem;
    color: #5a4b2b;
    line-height: 1.6;
}

/* sectiunea de pret + buton v */
.product-meta {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-placeholder {
    font-size: 1.6rem;
    font-weight: 700;
    color: #b58600;
}

/* buton de adaugare in cos cu bootstrap */
.add-to-cart {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    background-color: #f4c542 !important;
    border-color: #f4c542 !important;
    color: #4d3a0f !important;
    font-weight: 600;
    transition: 0.25s ease;
}
/* nu stiu daca era nevoie sa dau override obligatoriu cu !important, n-am testat */
.add-to-cart:hover {
    background-color: #e0b43b !important;
    border-color: #e0b43b !important;
    color: #3a2d0c !important;
    transform: translateY(-2px);
}

/*RESPONSIVENESS*/
@media (max-width: 768px) {
    .product-details-container {
        padding: 25px;
    }
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .price-placeholder {
        margin-bottom: 10px;
    }
}

/* ======= CARD ======= */
.product-details-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
    border-top: 6px solid #f4c542;
}

/* ======= IMAGINE ======= */
.product-image {
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    border: 3px solid #f4c542;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ======= SELECT + QTY ======= */
.variation-select,
.qty-input {
    border-width: 2px;
    border-color: #f4c542 !important;
    border-radius: 10px;
}

.qty-input {
    text-align: center;
}

/* ======= BUTON ======= */
.add-to-cart {
    background-color: #f4c542 !important;
    border-color: #f4c542 !important;
    color: #3d2c08 !important;
    transition: 0.25s ease;
}

.add-to-cart:hover {
    background-color: #e3b83d !important;
    border-color: #e3b83d !important;
    transform: translateY(-2px);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    .product-details-container {
        padding: 25px;
    }

    .product-meta {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .add-to-cart {
        width: 100%;
    }
}



