.pdcc-section {
    --pdcc-card: #0f2430;
    --pdcc-text: #ffffff;
    --pdcc-muted: rgba(255,255,255,.74);
    --pdcc-soft: rgba(255,255,255,.18);
    --pdcc-accent: #7fd8f2;
    background: transparent !important;
    color: var(--pdcc-text);
    padding: 0;
    overflow: visible;
}

.pdcc-section-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.pdcc-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: clamp(12px, 2vw, 20px);
}

.pdcc-section.no-pdcc-heading .pdcc-heading-row {
    min-height: 44px;
    margin-bottom: 8px;
}

.pdcc-heading-spacer {
    display: block;
    min-width: 1px;
    min-height: 1px;
}

.pdcc-title {
    color: var(--pdcc-text);
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.05;
    letter-spacing: .035em;
    margin: 0;
    font-weight: 800;
}

.pdcc-subtitle {
    color: var(--pdcc-muted);
    margin: 8px 0 0;
    font-size: clamp(14px, 1.6vw, 17px);
}

.pdcc-controls {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
}

.pdcc-control {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--pdcc-soft);
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    backdrop-filter: blur(10px);
}

.pdcc-control:hover,
.pdcc-control:focus-visible {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.38);
    transform: translateY(-1px);
}

.pdcc-slider-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 18px;
}

.pdcc-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 320px);
    gap: clamp(16px, 2.4vw, 28px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 2px;
    padding: 2px 6px 12px 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-user-drag: none;
}

.pdcc-track.is-pdcc-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
    -webkit-user-select: none;
}

.pdcc-track.is-pdcc-dragging .pdcc-card-link {
    pointer-events: none;
}

.pdcc-track img {
    -webkit-user-drag: none;
    user-select: none;
}

.pdcc-track::-webkit-scrollbar {
    display: none;
}

.pdcc-scroll-indicator {
    position: relative;
    width: calc(100% - 8px);
    height: 24px;
    margin: 8px 4px 0;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.pdcc-scroll-line {
    position: relative;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 1px 10px rgba(0,0,0,.25);
    overflow: visible;
}

.pdcc-scroll-dot {
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid rgba(255,255,255,.9);
    box-shadow: 0 3px 14px rgba(0,0,0,.38), 0 0 0 5px rgba(255,255,255,.18);
    transform: translate(-50%, -50%);
    transition: box-shadow .2s ease, transform .2s ease;
}

.pdcc-scroll-indicator:hover .pdcc-scroll-dot {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(0,0,0,.42), 0 0 0 7px rgba(255,255,255,.22);
}

.pdcc-card {
    position: relative;
    min-height: 390px;
    scroll-snap-align: start;
}

.pdcc-card-link {
    position: relative;
    display: block;
    min-height: 390px;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: var(--pdcc-card);
    box-shadow: 0 22px 48px rgba(0,0,0,.32);
    text-decoration: none !important;
    isolation: isolate;
    transform: translateZ(0);
}

.pdcc-card-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: inherit;
    pointer-events: none;
    z-index: 5;
}

.pdcc-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .45s ease, filter .45s ease;
    z-index: 1;
}

.pdcc-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.22) 34%, rgba(0,0,0,.88) 100%);
    z-index: 2;
    transition: background .35s ease;
}

.pdcc-card-link:hover .pdcc-card-image,
.pdcc-card-link:focus-visible .pdcc-card-image {
    transform: scale(1.065);
    filter: saturate(1.08) contrast(1.04);
}

.pdcc-card-link:hover .pdcc-card-shade,
.pdcc-card-link:focus-visible .pdcc-card-shade {
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.34) 28%, rgba(0,0,0,.94) 100%);
}

.pdcc-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.pdcc-card-content {
    position: absolute;
    left: 20px;
    right: 68px;
    bottom: 22px;
    z-index: 4;
    display: grid;
    gap: 8px;
    transition: transform .34s ease;
}

.pdcc-card-main {
    display: grid;
    gap: 7px;
    transition: transform .34s ease;
}

.pdcc-card-title {
    color: #fff;
    font-size: clamp(21px, 2.2vw, 27px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: .025em;
    text-shadow: 0 3px 14px rgba(0,0,0,.45);
}

.pdcc-price {
    color: rgba(255,255,255,.9);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.pdcc-hover-description {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    line-height: 1.42;
    transition: max-height .34s ease, opacity .26s ease, transform .34s ease;
}

.pdcc-card-link:hover .pdcc-card-main,
.pdcc-card-link:focus-visible .pdcc-card-main {
    transform: translateY(-8px);
}

.pdcc-card-link:hover .pdcc-hover-description,
.pdcc-card-link:focus-visible .pdcc-hover-description {
    max-height: 88px;
    opacity: 1;
    transform: translateY(0);
}

.pdcc-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.pdcc-details span {
    color: rgba(255,255,255,.84);
    font-size: 12px;
    line-height: 1;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(8px);
}

.pdcc-arrow {
    position: absolute;
    right: 18px;
    bottom: 22px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease;
    backdrop-filter: blur(10px);
}

.pdcc-card-link:hover .pdcc-arrow,
.pdcc-card-link:focus-visible .pdcc-arrow {
    transform: translateX(4px);
    background: rgba(127,216,242,.34);
}

@media (max-width: 700px) {
    .pdcc-heading-row {
        align-items: flex-start;
    }

    .pdcc-controls {
        display: none;
    }

    .pdcc-section.no-pdcc-heading .pdcc-heading-row {
        display: none;
    }

    .pdcc-track {
        grid-auto-columns: minmax(238px, 82vw);
    }

    .pdcc-slider-wrap {
        padding-bottom: 14px;
    }

    .pdcc-scroll-indicator {
        margin-top: 6px;
    }

    .pdcc-scroll-dot {
        width: 16px;
        height: 16px;
    }

    .pdcc-card,
    .pdcc-card-link {
        min-height: 360px;
    }

    .pdcc-hover-description {
        max-height: 88px;
        opacity: 1;
        transform: none;
    }

    .pdcc-card-main {
        transform: translateY(-4px);
    }
}

.pdcc-no-scroll .pdcc-scroll-indicator {
    display: none;
}

.pdcc-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 18px;
    align-items: center;
}

.pdcc-filter-button {
    appearance: none;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.pdcc-filter-button:hover,
.pdcc-filter-button:focus-visible,
.pdcc-filter-button.is-active {
    background: rgba(255,255,255,.88);
    border-color: rgba(255,255,255,.9);
    color: #092230;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.pdcc-card.is-hidden-by-filter {
    display: none;
}

.pdcc-card-category {
    position: absolute;
    top: 52px;
    left: 16px;
    z-index: 4;
    display: inline-flex;
    max-width: calc(100% - 32px);
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(7, 25, 35, .50);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.82);
    font-size: 10px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdcc-card:not(.has-pdcc-badge) .pdcc-card-category {
    top: 16px;
}

.pdcc-empty-filter-message {
    display: none;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    margin: 8px 0 0;
}

.pdcc-slider-wrap.has-empty-filter .pdcc-empty-filter-message {
    display: block;
}

@media (max-width: 700px) {
    .pdcc-filter-row {
        gap: 7px;
        margin-bottom: 14px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .pdcc-filter-row::-webkit-scrollbar {
        display: none;
    }

    .pdcc-filter-button {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 11px;
    }
}
