/* =============================
   WRAPPER
============================= */
.pr-carousel-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* =============================
   TRACK
============================= */
.pr-carousel {
    display: flex;
    flex-wrap: nowrap; /* 🔑 prevents vertical stacking */
    gap: 20px;
    padding: 20px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.pr-carousel::-webkit-scrollbar {
    display: none;
}

/* =============================
   CARD
============================= */
.pr-card {
    flex: 0 0 calc(20% - 16px); /* ✅ 5 cards desktop */
    height: 160px;

    border-radius: 0px;
    border: 1px solid #700e09 !important;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    scroll-snap-align: start;
    background: #fff;
    text-decoration: none;
}

/* =============================
   BACKGROUND
============================= */
.pr-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    filter: blur(1px);
    transform: scale(1.1);
}

/* =============================
   OVERLAY
============================= */
.pr-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
}

/* =============================
   LOGO
============================= */
.pr-logo {
    position: relative;
    z-index: 2;
    max-width: 120px;
    max-height: 32px;
    object-fit: contain;
}

/* =============================
   DOTS
============================= */
.pr-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 0;
}

.pr-dots span {
    width: 8px;
    height: 8px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.pr-dots span.active {
    background: #000;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
    .pr-card {
        flex: 0 0 calc(33.333% - 16px); /* 3 cards */
    }
}

@media (max-width: 600px) {
    .pr-card {
        flex: 0 0 100%; /* 1 card */
    }
}

/* FORCE REMOVE ALL DOTS */
.pr-dots,
.swiper-pagination,
.elementor-swiper-pagination,
.elementor-pagination {
    display: none !important;
}
