/* =========================================================
   oc_categoryshowcase – style front-end
   Orientica.pl  |  PrestaShop 8.x Classic / Classic-based
   ========================================================= */

/* ── Sekcja ogólna ──────────────────────────────────────── */
.oc-category-showcase {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid #ece6df;
}

.oc-category-showcase:last-of-type {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

/* ── Nagłówek sekcji ────────────────────────────────────── */
.oc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #c8a882;
}

.oc-section-header .products-section-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #3a2a1a;
}

/* Link "Zobacz wszystkie" obok tytułu */
.oc-see-all {
    font-size: 0.83rem;
    font-weight: 500;
    color: #8c6d4f;
    text-decoration: none;
    border-bottom: 1px dashed #c8a882;
    padding-bottom: 1px;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.oc-see-all:hover,
.oc-see-all:focus {
    color: #4a3728;
    border-color: #4a3728;
    text-decoration: none;
}

/* ── Siatka produktów ───────────────────────────────────── */
/*
 * Miniaturki w motywie Classic mają klasę .col-xs-6 .col-sm-4 .col-md-3
 * i są opakowane w .product-miniature.
 * Dodajemy tylko delikatny margines dolny.
 */
.oc-category-showcase .products {
    margin-left:  -15px;
    margin-right: -15px;
}

.oc-category-showcase .products .product-miniature {
    margin-bottom: 1.75rem;
}

/* ── Przycisk dolny ─────────────────────────────────────── */
.oc-section-footer {
    margin-top: 0.75rem;
    padding-top: 1rem;
}

.oc-btn-more {
    display: inline-block;
    padding: 0.55rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    border: 2px solid #c8a882;
    color: #4a3728;
    background: transparent;
    border-radius: 3px;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.oc-btn-more:hover,
.oc-btn-more:focus {
    background-color: #4a3728;
    border-color:     #4a3728;
    color: #fff;
    text-decoration: none;
}

/* ── Responsywność ──────────────────────────────────────── */
@media (max-width: 575px) {
    .oc-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .oc-section-header .products-section-title {
        font-size: 1.2rem;
    }

    .oc-btn-more {
        width: 100%;
        text-align: center;
        padding: 0.65rem 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .oc-section-header .products-section-title {
        font-size: 1.3rem;
    }
}
