
.buket-overlay h3 {
    font-family: "Bodoni Moda", serif !important;
    font-size: 18px !important;
    margin: 0 !important;
}

.buket-overlay span {
margin-top:10px;
    font-family: "Montserrat", sans-serif !important;
    font-size: 12px !important;
    display: block !important;
    font-weight: 700;
    letter-spacing: 2.2px;
  
}




.buket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 30px;
    box-sizing: border-box;
}

.buket-item {
    text-decoration: none;
    color: inherit;
}

.buket-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.buket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.buket-overlay {
    position: absolute;
    inset: 0;

    background: #fcf8f3d9;
    opacity: 0;
    transition: 0.5s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    /* 🔥 poprawa czytelności tekstu */
    color: #111;
}

.buket-image:hover .buket-overlay {
    opacity: 0.92;
}

/* =========================
   MOBILE FIX (WAŻNE)
========================= */

@media (max-width: 600px) {
    .buket-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


















/* =========================
   ADMIN WRAPPER
========================= */

#wpcontent #buket-app {
    max-width: 900px;
    padding: 20px;
    background: #f6f7f7;
    border-radius: 12px;
}

/* =========================
   ADD BUTTON (DODAJ ZDJĘCIE)
========================= */

#buket-add {
    background: #2271b1;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 25px;
    transition: 0.2s ease;
}

#buket-add:hover {
    background: #135e96;
    transform: translateY(-1px);
}

/* =========================
   SAVE BUTTON (WIĘKSZY)
========================= */

#buket-save {
    background: #111;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    transition: 0.2s ease;
}

#buket-save:hover {
    background: #000;
    transform: translateY(-1px);
}

/* =========================
   ITEM CARD (RAMKA + UX)
========================= */

.buket-item-admin {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

/* HEADER (ZDJĘCIE 1,2,3) */
.buket-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* =========================
   UPLOAD BUTTON (WIĘKSZY)
========================= */

.buket-upload {
    background: #555;
    color: #fff;
    border: none;
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 12px;
    transition: 0.2s ease;
}

.buket-upload:hover {
    background: #333;
}

/* =========================
   REMOVE BUTTON
========================= */

.buket-remove {
    background: #dc3232;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* =========================
   INPUTS (JEDEN POD DRUGIM)
========================= */

.buket-item-admin input {
    width: 100%;
    display: block;
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
}

/* =========================
   IMAGE PREVIEW (JEŚLI MASZ)
========================= */

.buket-item-admin img {
    margin-top: 10px;
    border-radius: 10px;
    max-width: 120px;
}