/* ============================================================
   10. SEKCJA KATEGORII PRODUKTÓW
   ============================================================ */
.rev-cats-section {
    padding: 0px 60px 60px 60px;
}
.rev-cats-header {
    position: relative;
    max-width: 1500px;
    margin: 0 auto 48px;
    padding: 0;
}
.rev-cats-header::before {
    display: none;
}
.rev-cats-badge {
    display: inline-block;
    border: 1px solid #1c1c1b;
    color: #1c1c1b;
    font-family: "Bahnschrift", sans-serif;
    font-size: 16px !important;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 16px;
}
.rev-cats-subtitle {
    display: none;
}
.rev-cats-title {
    font-family: "Bahnschrift", sans-serif;
    font-size: 36px !important;
    font-weight: 300;
    text-transform: uppercase;
    color: #1c1c1b;
    margin-bottom: 12px !important;
    line-height: 1.1;
}
.rev-cats-title strong {
    font-weight: 900;
    display: block;
}
.rev-cats-title-line {
    width: 48px;
    height: 3px;
    background: #e30613;
    margin-left: 0;
    margin-bottom: 20px;
}
.rev-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1500px;
    margin: 0 auto;
}
.rev-cat-card {
    position: relative;
    display: block;
    text-decoration: none !important;
    background: #fff;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.rev-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    text-decoration: none !important;
}
.rev-cat-card::before {
    display: none;
}
.rev-cat-card-body {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-top: none;
}
.rev-cat-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cat-color);
    transition: height 0.3s ease;
    z-index: 0;
}
.rev-cat-card:hover .rev-cat-card-bar {
    height: 100%;
}
.rev-cat-card-name-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
}
.rev-cat-card-dot {
    display: none !important;
}
.rev-cat-card-name {
    font-family: "Bahnschrift", sans-serif;
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1c1c1b;
    text-align: center;
    transition: color 0.3s;
}
.rev-cat-card:hover .rev-cat-card-name {
    color: #fff;
}
.rev-cat-card-arrow {
    display: none;
}
.rev-cat-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}
.rev-cat-card-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 24px;
    transition: transform 0.5s ease;
    display: block;
}
.rev-cat-card:hover .rev-cat-card-img img {
    transform: scale(1.05);
}
.rev-cat-card-img::after {
    display: none;
}

