/* ============================================================
   ProfiGarden Subcategory Grid – style.css
   ============================================================ */

/* ── Wrapper ────────────────────────────────────────────────── */
.pg-scg-wrapper {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ── Grid ───────────────────────────────────────────────────── */
.pg-scg-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 1024px) {
    .pg-scg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .pg-scg-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Karta ──────────────────────────────────────────────────── */
.pg-scg-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    height: 128px !important;
    min-height: unset !important;
    max-height: 128px !important;
    overflow: hidden !important;
    text-decoration: none !important;
    cursor: pointer !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
}

/* Skryté karty – animate out */
.pg-scg-card--hidden {
    display: none !important;
}

/* Animácia pri zobrazení */
.pg-scg-card--revealing {
    animation: pg-scg-reveal 0.35s ease forwards !important;
}

@keyframes pg-scg-reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg-scg-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 !important;
}

/* ── Overlay ────────────────────────────────────────────────── */
.pg-scg-card__overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    border-radius: 0 !important;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.00) 100%
    ) !important;
}

/* ── Content row ────────────────────────────────────────────── */
.pg-scg-card__content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 16px 20px !important;
    border-radius: 0 !important;
}

/* ── Názov ──────────────────────────────────────────────────── */
.pg-scg-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: 'Unbounded', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    flex: 1 !important;
    border-radius: 0 !important;
}

/* ── Button – iba šípka ─────────────────────────────────────── */
.pg-scg-card__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 38px !important;
    height: 38px !important;
    background-color: var(--e-global-color-929565a, #659900) !important;
    font-family: "Hanken Grotesk", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2em !important;
    border-style: none !important;
    border-radius: 0 !important;
    padding: 4px !important;
    transition: background-color 0.25s ease, filter 0.25s ease !important;
}

.pg-scg-card__btn svg {
    display: block !important;
    flex-shrink: 0 !important;
    border-radius: 0 !important;
}

.pg-scg-card:hover .pg-scg-card__btn {
    background-color: var(--e-global-color-929565a, #4E7501) !important;
    filter: brightness(0.85) !important;
    border-radius: 0 !important;
}

/* ── Show more wrap ─────────────────────────────────────────── */
.pg-scg-showmore-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ── Show more button ───────────────────────────────────────── */
.pg-scg-showmore-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 24px !important;
    border-radius: 0 !important;
    border: 1px solid #214332 !important;
    background-color: transparent !important;
    font-family: 'Hanken Grotesk', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #214332 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    outline: none !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.pg-scg-showmore-btn:hover {
    background-color: #2042311f !important;
}

/* ── Šípka v show more buttone ──────────────────────────────── */
.pg-scg-showmore-btn .pg-scg-arrow {
    display: block !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
    /* Default: šípka dole (collapsed) – rotujeme >  na  ˅ */
    transform: rotate(90deg) !important;
}

/* Expanded stav: šípka hore */
.pg-scg-wrapper.pg-scg-expanded .pg-scg-showmore-btn .pg-scg-arrow {
    transform: rotate(-90deg) !important;
}

#pg-subcategory-section:has(.pg-scg-no-subcategories) {
    display: none !important;
}