/* ---------------------------------------------
   BOUTIQUE — STYLE DE BASE
---------------------------------------------- */

#shop {
    background: #f8f8f8;
}

.shop-inner {
    max-width: 980px;
    margin: auto;
}

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---------------------------------------------
   SHOP ITEM — VERSION CLAIRE OPTIMISÉE
---------------------------------------------- */

.shop-item {
    flex: 1 1 240px;

    background: #f5f4f4;                      /* plus doux */
    border: 1px solid #d9d6d6;                /* plus propre */
    border-radius: 12px;

    padding: 16px 18px;                       /* compact */
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);

    transition: transform .2s ease, box-shadow .2s ease;
}

.shop-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.shop-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* ---------------------------------------------
   TITRE + PRIX
---------------------------------------------- */

.shop-item h4 {
    margin: 6px 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
}

.shop-price {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

/* ---------------------------------------------
   LABELS + SELECT + INPUT — ALIGNEMENT PARFAIT
---------------------------------------------- */

.shop-item label {
    display: flex;
    flex-direction: column;

    font-weight: 600;
    font-size: 0.88rem;
    color: #444;

    margin-top: 6px;
    margin-bottom: 2px;  /* évite les gros espaces */
}

.shop-item select,
.shop-item input[type="text"],
.shop-item input[type="number"] {
    margin-top: 4px;
    padding: 8px 10px;                         /* compact */
    background: #fafafa;
    border: 1px solid #c9c6c6;
    border-radius: 8px;

    font-size: 0.95rem;
    color: #222;

    transition: border .25s ease, background .25s ease;
}

.shop-item select:focus,
.shop-item input:focus {
    outline: none;
    border-color: #d2a55b;
    background: #fff;
}

/* ---------------------------------------------
   BOUTON AJOUTER AU PANIER — PREMIUM CLAIR
---------------------------------------------- */

.shop-item .add-to-cart {
    margin-top: 14px;
    padding: 10px 16px;
    width: 100%;

    background: linear-gradient(135deg, #d8b36a, #edd9a5);
    color: #111;

    border: none;
    border-radius: 10px;

    font-size: 0.95rem;
    font-weight: 700;

    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    transition: transform .15s ease, box-shadow .20s ease;
}

.shop-item .add-to-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}

.shop-item .add-to-cart:active {
    transform: scale(0.97);
}

/* ---------------------------------------------
   BOUTON "VOIR LE PANIER" (inchangé sauf polish)
---------------------------------------------- */

#open-cart {
    background: #111;
    color: #fff;

    padding: 10px 18px;
    border-radius: 999px;

    font-weight: 600;
    border: none;
    cursor: pointer;

    transition: opacity .2s ease;
}

#open-cart:hover {
    opacity: 0.85;
}
/* ---------------------------------------------
   BORDURE PREMIUM DORÉE FINE
---------------------------------------------- */

.shop-item {
    border: 1px solid rgba(191,165,108,0.35); /* doré léger & subtil */
}

/* ----------------------------------------------------
   BOUTON AJOUTER AU PANIER — GRIS GRANITE PREMIUM
---------------------------------------------------- */

.shop-item .add-to-cart {
    margin-top: 14px;
    padding: 10px 16px;
    width: 100%;

    /* dégradé granite subtil */
    background: linear-gradient(135deg, #e6e6e6, #d0d0d0);

    color: #111;
    border: 1px solid #c1c1c1; /* touche pierre satinée */
    border-radius: 10px;

    font-size: 0.95rem;
    font-weight: 700;

    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);

    transition:
        transform .15s ease,
        box-shadow .20s ease,
        background .20s ease,
        border-color .20s ease;
}

/* Hover granite poli */
.shop-item .add-to-cart:hover {
    background: linear-gradient(135deg, #ececec, #d8d8d8);
    border-color: #bcbcbc;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Pressé */
.shop-item .add-to-cart:active {
    transform: scale(0.97);
}
