/* ============================================================
   47. SEKCJA AKCESORIA I STEROWANIE
   ============================================================ */
.rev-acc-section {
    padding: 0px 60px 60px 60px;
    background: none;
    width: 100%;
    box-sizing: border-box;
}
.rev-acc-inner {
    max-width: 1500px;
    margin: 0 auto;
}
.rev-acc-header {
    margin-bottom: 48px;
}
.rev-acc-title {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: 36px !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    color: #1c1c1b !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
}
.rev-acc-title strong {
    font-weight: 900 !important;
}
.rev-acc-title-line {
    width: 48px;
    height: 3px;
    background: #e30613;
}
.rev-acc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.rev-acc-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
}
.rev-acc-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.rev-acc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #e30613;
    transition: width 0.4s ease;
}
.rev-acc-card:hover::after {
    width: 100%;
}
.rev-acc-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
    box-sizing: border-box;
}
.rev-acc-badge {
    font-family: "Bahnschrift", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    display: inline-block;
    line-height: 1;
}
.rev-acc-badge--red {
    background: #e30613;
    color: #fff;
}
.rev-acc-badge--black {
    background: #1c1c1b;
    color: #fff;
}
.rev-acc-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.rev-acc-card-title {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1c1c1b !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    text-transform: none;
}
.rev-acc-card-desc {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-bottom: 16px !important;
    flex: 1;
}
.rev-acc-card-link {
    font-family: "Bahnschrift", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #e30613 !important;
    text-decoration: none !important;
    transition: letter-spacing 0.2s;
    display: inline-block;
    margin-top: auto;
}
.rev-acc-card:hover .rev-acc-card-link {
    letter-spacing: 0.1em;
}

