/* ============================================================
   cut_section.css — Cuts im Shop (Session B, Konzept 4.8)

   Mobile-first. Cards: 1 Spalte Mobile, 2 ab md, 3 ab lg
   (das Grid-Layout via Bootstrap col-Klassen in cut_card.html).
   ============================================================ */

.cut-section {
    border-top: 1px solid #eae5d6;
    padding-top: 2.25rem;
}

.cut-section-header {
    margin-bottom: 1.25rem;
}

.cut-section-title {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    color: #17120F;
    margin: 0 0 0.4rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cut-section-count {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    color: #8a8577;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cut-section-subtitle {
    font-size: 0.9rem;
    margin: 0;
    color: #6f6a60;
    max-width: 620px;
}

/* ----- Filter-Chip-Reihe ----- */
.cut-section-filter-row {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.25rem;
}

.cut-filter-chip {
    appearance: none;
    border: 1px solid #d6d1c2;
    background: #fff;
    color: #4a4540;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    min-height: 44px;            /* Touch-Target */
    white-space: nowrap;
}

.cut-filter-chip:hover,
.cut-filter-chip:focus {
    background: #f3f1eb;
    border-color: #b8b09a;
    outline: none;
}

.cut-filter-chip.active {
    background: #17120F;
    border-color: #17120F;
    color: #fff;
}

/* ----- Cut-Karte ----- */
.cut-card {
    border: 1px solid #eae5d6;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.18s, transform 0.18s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cut-card:hover {
    box-shadow: 0 6px 18px rgba(23, 18, 15, 0.08);
}

.cut-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 200px;
    background: #f5f3ee;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cut-card-image-wrap {
        max-height: 240px;
    }
}

.cut-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cut-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a09c8e;
    gap: 0.35rem;
}

.cut-card-placeholder-text {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cut-card-bms-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: #C9A961;
    color: #fff;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 4px;
}

.cut-card-kuehl-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.55rem;
    border-radius: 4px;
    background: #fff;
    color: #17120F;
    border: 1px solid #d6d1c2;
}

.cut-card-kuehl-badge--frisch {
    color: #2c6b3c;
    border-color: #b6d5be;
    background: #eaf3ec;
}

.cut-card-kuehl-badge--tk {
    color: #2b4f76;
    border-color: #b7c9dc;
    background: #e7eef6;
}

.cut-card-body {
    padding: 1rem 1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex-grow: 1;
}

.cut-card-title {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    color: #17120F;
    margin: 0;
    line-height: 1.25;
}

.cut-card-rasse {
    color: #6f6a60;
    font-weight: 400;
}

.cut-card-weight {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: #4a4540;
}

.cut-card-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.1rem;
}

.cut-card-price-current {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #17120F;
}

.cut-card-price-old {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #a09c8e;
    text-decoration: line-through;
}

.cut-card-discount-badge {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    color: #2b4f76;
    background: #e7eef6;
    border: 1px solid #b7c9dc;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cut-card-mhd {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    color: #8a8577;
    margin-top: -0.1rem;
}

.cut-card-add-btn {
    margin-top: auto;
    background: #17120F;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    min-height: 44px;            /* Touch-Target */
    transition: background 0.18s;
}

.cut-card-add-btn:hover,
.cut-card-add-btn:focus {
    background: #2b2520;
    color: #fff;
    outline: none;
}

.cut-card-add-btn:disabled {
    opacity: 0.55;
    cursor: progress;
}

/* ----- Empty State ----- */
.cut-empty-state {
    margin-top: 1.25rem;
    padding: 1.5rem;
    border: 1px dashed #d6d1c2;
    border-radius: 6px;
    text-align: center;
    color: #8a8577;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
}
