/* Alles unter .fhk-shop gekapselt, damit es nicht mit dem Theme kollidiert */
/* box-sizing: Innenabstände werden IN die Breite gerechnet → nichts ragt mehr raus */
.fhk-shop, .fhk-shop *, .fhk-shop *::before, .fhk-shop *::after { box-sizing: border-box; }
.fhk-shop { max-width: 1100px; margin: 0 auto; padding: 10px 0 30px; color: #111; }
.fhk-shop img { max-width: 100%; height: auto; }
.fhk-shop-intro { font-size: 14px; line-height: 1.6; color: #666; max-width: 640px; margin: 0 0 32px; }

.fhk-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
.fhk-card { display: flex; flex-direction: column; }

.fhk-card-img { display: block; padding: 0; margin: 0; border: 0; background: none; cursor: zoom-in; width: 100%; }
.fhk-card-img-el { width: 100%; height: auto; display: block; transition: opacity .25s ease; }
.fhk-card-img:hover .fhk-card-img-el { opacity: .88; }

/* Textblock unter dem Bild: KOMPAKT wie im Mockup — ein enger, gleichmäßiger Block.
   Der .fhk-shop-Vorsatz macht die Regeln "stärker" als die Theme-Stile (sonst macht
   das Theme den Titel <h3> groß und reißt die Zeilen auseinander). */
.fhk-shop .fhk-card-body { margin-top: 14px; color: #111; }
.fhk-shop .fhk-card-body > * {
    margin: 0; padding: 0; font-size: 13px; line-height: 1.5; font-weight: 400; color: #111;
}
.fhk-shop .fhk-artist { color: #111; }
.fhk-shop .fhk-title { font-size: 13px; font-weight: 700; margin: 0; color: #111; }
.fhk-shop .fhk-meta { color: #444; }
.fhk-shop .fhk-price { font-weight: 700; margin-top: 6px; }
.fhk-shop .fhk-availability { color: #444; }

.fhk-shop .fhk-btn {
    display: inline-block; margin-top: 24px; padding: 11px 22px;
    background: #000; color: #fff !important; font-size: 14px; line-height: 1.2; font-weight: 400;
    text-align: center; text-decoration: none; border: 1px solid #000; cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.fhk-shop .fhk-btn:hover { background: #fff; color: #000 !important; }

/* Anfrage-Ansicht */
.fhk-inquiry-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.fhk-inquiry-img img { width: 100%; height: auto; display: block; }
.fhk-inquiry-form p { font-size: 14px; line-height: 1.6; color: #111; margin: 0; }
.fhk-inquiry-form label { display: block; font-size: 13px; color: #444; margin: 16px 0 4px; }
.fhk-inquiry-form input, .fhk-inquiry-form textarea {
    width: 100%; padding: 9px 10px; border: 1px solid #ccc; font-size: 14px; font-family: inherit;
}
.fhk-signoff { margin-top: 26px !important; }
.fhk-inquiry-form .fhk-btn { width: 100%; max-width: 320px; }
.fhk-respond { font-size: 13px; color: #666; margin-top: 14px !important; }
.fhk-back, .fhk-inquiry-form .fhk-back { font-size: 13px; color: #666; text-decoration: underline; }
.fhk-inquiry-form .fhk-back { display: inline-block; margin-top: 18px; }
.fhk-errors { color: #b00020; font-size: 13px; padding-left: 18px; margin: 10px 0; }
.fhk-thankyou p { font-size: 16px; margin-bottom: 16px; }
.fhk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Lightbox */
.fhk-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none;
    align-items: center; justify-content: center; z-index: 9999; cursor: zoom-out; padding: 20px; }
.fhk-lightbox.is-open { display: flex; }
.fhk-lightbox img { max-width: 95vw; max-height: 95vh; }

/* Tablet: zwei Spalten */
@media (max-width: 1024px) {
    .fhk-shop-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Handy: eine Spalte, Anfrage-Ansicht gestapelt */
@media (max-width: 640px) {
    .fhk-shop-grid { grid-template-columns: 1fr; }
    .fhk-inquiry-wrap { grid-template-columns: 1fr; gap: 24px; }
    .fhk-btn { width: 100%; }
    /* Formular-Button volle Breite wie die Eingabefelder (Deckel aufheben) */
    .fhk-inquiry-form .fhk-btn { max-width: none; width: 100%; }
}
