/* ========================================
   TM24 Premium Category & Product Card Design
   v1.0 - Verfügbarkeit + Premium Look
   ======================================== */

/* === Kategorie Header === */
.category-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 24px;
}
.category-header h1 {
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #111827;
    margin: 0 0 8px 0;
}
.category-header .category-count {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* === Produktkarten Premium === */
.productbox.productbox-column {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
    background: #fff;
    position: relative;
}
.productbox.productbox-column:hover {
    border-color: #2E2BCB;
    box-shadow: 0 8px 32px rgba(46,43,203,0.12);
    transform: translateY(-4px);
}

/* Bild-Bereich */
.productbox-media {
    background: #f9fafb;
    border-radius: 16px 16px 0 0;
    padding: 12px;
}
.productbox-images {
    border-radius: 12px;
    overflow: hidden;
}

/* Details */
.productbox-details {
    padding: 14px 16px 18px;
}

/* Hersteller-Badge */
.tm24-brand {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #2E2BCB;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Titel */
.productbox-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    min-height: 40px;
}
.productbox-title a {
    color: #111827 !important;
    text-decoration: none !important;
}
.productbox-title a:hover {
    color: #2E2BCB !important;
}

/* Verfügbarkeits-Badge */
.tm24-avail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
    font-family: 'Figtree', sans-serif;
}
.tm24-avail--ok {
    background: #ecfdf5;
    color: #059669;
}
.tm24-avail--ok::before {
    content: '●';
    font-size: 8px;
    color: #10b981;
}
.tm24-avail--out {
    background: #fef2f2;
    color: #dc2626;
}
.tm24-avail--out::before {
    content: '●';
    font-size: 8px;
    color: #ef4444;
}

/* Preis Premium */
.productbox .price_wrapper .price {
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #111827;
}
.productbox .price_wrapper .price--old-price .price {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

/* Ribbon / Badges */
.productbox .ribbon {
    z-index: 10;
}

/* Quick Actions */
.productbox-quick-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    gap: 6px;
}
.productbox-quick-actions .btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s;
}
.productbox-quick-actions .btn:hover {
    background: #2E2BCB;
    color: #fff;
    border-color: #2E2BCB;
}

/* Grid Layout für Kategorieseiten */
#product-list .row {
    gap: 0;
}
#product-list .productbox-column {
    margin-bottom: 20px;
}

/* Sortier-/Filter-Leiste */
.productlist-filter-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

/* Pagination Premium */
.pagination .page-item .page-link {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    border-radius: 10px;
    margin: 0 3px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    color: #374151;
    transition: all 0.2s;
}
.pagination .page-item.active .page-link {
    background: #2E2BCB;
    border-color: #2E2BCB;
    color: #fff;
}
.pagination .page-item .page-link:hover {
    background: #eef1ff;
    border-color: #2E2BCB;
    color: #2E2BCB;
}

/* === Nicht-verfügbare Artikel visuell markieren === */
.productbox.tm24-out-of-stock .productbox-media {
    opacity: 0.6;
    filter: grayscale(30%);
}
.productbox.tm24-out-of-stock:hover .productbox-media {
    opacity: 0.85;
    filter: grayscale(0%);
}

/* Suchresultat-Seite */
.search-result-header {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
}

/* Mobile-Optimierung */
@media (max-width: 767px) {
    .productbox.productbox-column {
        border-radius: 12px;
    }
    .productbox-details {
        padding: 10px 12px 14px;
    }
    .productbox-title {
        font-size: 13px;
        min-height: 36px;
    }
    .productbox .price_wrapper .price {
        font-size: 16px;
    }
    .tm24-brand {
        font-size: 10px;
    }
    .category-header {
        padding: 20px;
        border-radius: 14px;
    }
    .category-header h1 {
        font-size: 22px;
    }
}