@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&family=Righteous&display=swap'); /* Calendar page css start*/
.hero-carousel-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    background: #111;
}
.rk-filter-serach {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 36px;
}
form#rk-product-search-form {
    width: 67%;
}
form#rk-product-search-form button#rk-product-search-btn {
    background: #2C3E50 !important;
    border-color: #2C3E50 !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 16px !important;
}

.home-redesign {
    z-index: 9999 !important;
    position: relative;
}
section#our-programs li.star_rating {
    width: 20px !important;
}


.rk-programs-header p {
    max-width: 700px !important;
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* JS sets exact px width; 100vw is the CSS fallback */
.hero-slide {
    flex: 0 0 100vw;
    width: 100vw;
    position: relative;
    height: 580px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #111;
    /* fallback while image loads */
}

@media (max-width: 768px) {
    .hero-slide {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 340px;
    }
}

/* Now an */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.50);
    pointer-events: none;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide-content {
    max-width: 700px;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .hero-slide-content {
        padding: 60px 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-slide-content {
        padding: 40px 0;
    }
}

.hero-slide-content h1 {
    font-family: 'Righteous', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .hero-slide-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .hero-slide-content h1 {
        font-size: 28px;
    }
}

.hero-slide-content p {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    line-height: 39px;
    margin: 0 0 30px;
    max-width: 700px;
}

@media (max-width: 480px) {
    .hero-slide-content p {
        font-size: 14px;
    }
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-btn-primary {
    display: inline-block;
    padding: 13px 30px;
    background: #FA5940;
    color: #fff !important;
    font-family: 'inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    border-radius: 16px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.22s, transform 0.18s;
    box-shadow: 0 4px 18px rgba(232,80,42,0.35);
}

.hero-btn-primary:hover {
    background: #c43e1c;
    transform: translateY(-2px);
    color: #fff !important;
}

.hero-btn-secondary {
  display: inline-block;
  padding: 14px 28px;

  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 12px;

  /* Softer glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 8px rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

.hero-btn-secondary:hover ,.hero-btn-secondary:focus ,.hero-btn-secondary:active {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Arrows */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    padding: 0;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,0.38);
    border-color: #fff;
}

.carousel-prev {
    left: 18px;
}

.carousel-next {
    right: 18px;
}

.carousel-prev svg, .carousel-next svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.22s, transform 0.22s;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.4);
}

/* Rider Level badge — <button> with wc_filter_popup class overrides */
.rider-level-badge {
    /* reset <button> defaults */
    border: none;
    outline: none;
    /* positioning */
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 10;
    /* layout */
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    /* visual */
    background: #FAF8F5;
    border-radius: 16px;
    padding: 10px 20px 10px 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    cursor: pointer;
    transition: transform 0.2s;
    /* override wc_filter_popup absolute positioning from woocommerce-filter-module.css */
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none;
}

.rider-level-badge:hover {
    transform: translateY(-2px);
}

.rider-level-badge .badge-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
}

.rider-level-badge .badge-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FA5940;
    white-space: nowrap;
}

.rider-level-badge .q-icon {
    font-size: 20px;
    color: #FA5940;
    margin: 0;
}

@media (max-width: 480px) {
    .rider-level-badge {
        bottom: 14px;
        right: 14px;
        padding: 8px 14px 8px 10px;
        gap: 6px;
    }

    .rider-level-badge .badge-text {
        font-size: 12px;
    }

    .rider-level-badge .q-icon {
        font-size: 16px;
    }

    .rider-level-badge .badge-icon {
        width: 32px;
        height: 32px;
    }
}

/* =====================================================
   SHARED SECTION WRAPPER
   ===================================================== */
.rk-section-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

#waitlist {
    z-index: -1 !important;
}

.main_content {
    margin-top: 57px;
}

.logo_wrap {
    width: 140px;
    margin-right: 20px;
    padding-top: 4px;
    text-align: left;
}

header#myHeader {
    padding: 0 !important;
    box-shadow: none !important;
}

/* =====================================================
   OUR PROGRAMS SECTION
   ===================================================== */
.rk-programs-section {
    background: #f7f5f2;
    padding: 72px 0 64px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.rk-programs-header {
    text-align: center;
    margin-bottom: 38px;
}

.rk-programs-header h2 {
    font-family: 'inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #101828;
    line-height: 48px;
    margin: 0 0 10px;
}

.rk-programs-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #4A5565;
    max-width: 460px;
    margin: 0 auto;
    line-height: 28px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .rk-programs-header h2 {
        font-size: 30px;
    }
}

/* Filter Tabs */
.rk-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 36px;
}

.rk-tab {
    display: inline-flex;
    align-items: center;
    padding: 14px 25px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #E5E7EB;
    background: #fff;
    color: #364153;
    transition: all 0.2s;
    user-select: none;
}

.rk-tab:hover {
    border-color: #E8502A;
    color: #E8502A;
    background: #fff5f2;
}

.rk-tab.active {
    background: #2C3E50;
    border-color: #2C3E50;
    color: #fff;
}

/* Search collapse */
.rk-search-collapse {
    display: none;
    margin-bottom: 28px;
}

.rk-search-collapse.open {
    display: block;
    animation: rkFadeDown 0.22s ease;
}

@keyframes rkFadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rk-search-box {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border: 2px solid #E8502A;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.rk-search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 11px 20px;
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    color: #333;
    background: transparent;
}

.rk-search-box button {
    background: #E8502A;
    border: none;
    color: #fff;
    padding: 0 22px;
    font-family: 'Inter',sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.rk-search-box button:hover {
    background: #c43e1c;
}

/* Loading */
.rk-loading {
    display: none;
    text-align: center;
    padding: 14px 0 6px;
}

.rk-loading.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    color: #888;
    z-index: 99;
}

.rk-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #fa5940;
    border-radius: 50%;
    animation: rkSpin 0.7s linear infinite;
}

@keyframes rkSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Grid */
.rk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    text-align: center;
    transition: opacity 0.2s;
    /* position: relative; */
}
.rk-loading.visible {
        position: absolute;
    z-index: 99;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
@media (max-width: 768px) {
    .rk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .rk-grid {
        grid-template-columns: 1fr;
    }
}

.rk-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #aaa;
}

/* =====================================================
   PROGRAM CARD  (Figma design)
   ===================================================== */
.rk-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s, box-shadow 0.22s;
}

.rk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Image area */
.rk-card__img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.rk-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.rk-card:hover .rk-card__img-wrap img {
    transform: scale(1.04);
}

.rk-card__featured {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #E8502A;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

/* Price badge top right */
.rk-card__price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    color: #101828;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

/* Private event / sold-out badges on home cards */
.rk-card__img-wrap .private_event,
.rk-card__img-wrap .outofstock_event {
    position: absolute;
    top: 12px;
    left: 12px;
    bottom: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    float: none;
    z-index: 3;
}

.rk-card__img-wrap .private_event p,
.rk-card__img-wrap .outofstock_event p {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    color: #fff;
    background: #FA5940;
}

.rk-card__img-wrap .private_event .outofstock_badge {
    margin: 0 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;                 
    border-radius: 50px !important;
    white-space: nowrap !important;
    color: #fff !important;
    background:#FA5940 !important
}
.rk-card__img-wrap .private_event p, .rk-card__img-wrap .outofstock_event p {
    background: #FA5940 !important;
}
/* Card body */
.rk-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Category pill */
.rk-card__cat {
    display: inline-block;
    background: #fa594026;
    color: #FA5940;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    align-self: flex-start;
}

/* Title */
.rk-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #101828 !important;
    margin: 0 0 14px;
    line-height: 20px;
    text-align: left;
}

.rk-card__title a {
    color: inherit;
    text-decoration: none !important;
}

.rk-card__title a:hover {
    color: #E8502A;
}

/* Meta list */
.rk-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rk-card__meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5565;
    line-height: 1.4;
    font-weight: 400;
}

.rk-card__meta li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #9ca3af;
}

/* Spots alert */
.rk-card__spots {
    background: #FFF4E6;
    color: #FA5940;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    text-align: center;
}

.rk-card__spots--full {
    background: #f3f4f6;
    color: #6b7280;
}

/* CTA button */
.rk-card__cta {
    display: block;
    padding: 12px 20px;
    background: #2C3E50;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    text-decoration: none !important;
    text-align: center;
    margin-top: auto;
    transition: background 0.2s, transform 0.15s;
}

.rk-card__cta:hover {
    background: #1f2937;
    transform: translateY(-1px);
    color: #fff !important;
}

/* =====================================================
   WHY CHOOSE RIDE KREW
   ===================================================== */
.rk-why-section {
    background: #FFFFFF;
    padding: 80px 0 72px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.rk-why-header {
    text-align: center;
    margin-bottom: 48px;
}

.rk-why-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #101828;
    margin: 0 0 14px;
    line-height: 48px;
}

.rk-why-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #4A5565;
    line-height: 1.7;
    max-width: 630px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .rk-why-header h2 {
        font-size: 30px;
    }
}

.rk-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .rk-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .rk-why-grid {
        grid-template-columns: 1fr;
    }
}

.rk-why-card {
    background: #FAF8F5;
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform 0.2s;
}

.rk-why-card:hover {
    transform: translateY(-3px);
}

.rk-why-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.rk-why-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #101828;
    margin: 0 0 10px;
    margin-bottom: 16px;
}

.rk-why-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4A5565;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.rk-cta-section {
    background: #f7f5f2;
    padding: 56px 0 64px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.rk-cta-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    background: #FA5940;
    /* fallback if image fails */
}

@media (max-width: 560px) {
    .rk-cta-box {
        border-radius: 16px;
    }
}

/* Background image  fills the entire box */
.rk-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Black overlay on top of the image */
.rk-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

/* Text + buttons sit above overlay */
.rk-cta-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
}

@media (max-width: 560px) {
    .rk-cta-content {
        padding: 44px 24px;
    }
}

.rk-cta-box h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: #fff;
    margin: 0 0 14px;
    line-height: 28px;
}

@media (max-width: 600px) {
    .rk-cta-box h2 {
        font-size: 26px;
    }
}

.rk-cta-box p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.88);
    margin: 0 0 32px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 30px;
}

.rk-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rk-cta-btn {
    display: inline-block;
    padding: 17px 30px;
    background: #2C3E50;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    border-radius: 16px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
}

.rk-cta-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
    color: #fff !important;
}

/* =====================================================
   REFINE SEARCH MODAL
   ===================================================== */
.rk-refine-trigger {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #E5E7EB;
    background: #fff;
    color: #364153;
    transition: all 0.2s;
    user-select: none;
}

.rk-refine-trigger:hover {
    border-color: #E8502A;
    color: #b83a1e;
    background: #fff5f2;
}

/* Overlay */
.rk-refine-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.rk-refine-overlay.open {
    display: block;
}

/* Modal panel */
.rk-refine-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow-y: auto;
    padding: 24px 16px;
}

.rk-refine-modal.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.rk-refine-modal__inner {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 850px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    margin: auto;
}

/* Header */
.rk-refine-modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 28px 24px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.rk-refine-modal__header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #FA5940;
    margin: 0;
}

.rk-refine-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: background 0.2s;
}

.rk-refine-modal__close:hover {
    background: #e5e7eb;
}

/* Body */
.rk-refine-modal__body {
    padding: 24px 28px;
}

/* 4-column grid for filter groups */
.rk-refine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .rk-refine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rk-refine-grid {
        grid-template-columns: 1fr;
    }
}

/* Each column */
.rk-refine-col {
    padding: 20px 18px;
    border-right: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    max-height: 250px;
    /* overflow-y: scroll; */
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.rk-refine-col:last-child, .rk-refine-col:nth-child(4n) {
    border-right: none;
    position: relative;
}

/* Scrollable checkbox list inside each column */
.rk-refine-col__items {
    max-height: 160px;
    overflow-y: auto;
    padding-right: 4px;
}

.rk-refine-col__items::-webkit-scrollbar {
    width: 4px;
}

.rk-refine-col__items::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.rk-refine-col__items::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

/* Wide cost column spans full width in bottom row */
.rk-refine-col--wide {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
}

/* Column title */
.rk-refine-col__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #111827;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    /* width: 20px; */
}

.rk-refine-col__title img {
    opacity: 0.75;
}

/* ? popup icon inside Refine Search column titles */
.rk-refine-col__title .rk-col-title-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.rk-refine-col__title .rk-refine-q-icon {
    /* override wc_filter_popup absolute positioning */
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

.rk-refine-col__title .rk-refine-q-icon .q-icon {
    font-size: 16px;
    color: #fa5940;
    transition: color 0.2s;
}

.rk-refine-col__title .rk-refine-q-icon:hover .q-icon {
    color: #FA5940;
}

/* Checkboxes */
.rk-refine-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #374151;
    margin-bottom: 8px;
    cursor: pointer;
    line-height: 1.4;
}

.rk-refine-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    accent-color: #FA5940;
    cursor: pointer;
    border-radius: 3px;
}

.rk-refine-check--child {
    padding-left: 22px;
}

/* Cost range slider */
.rk-cost-display {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #374151;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 10px;
}

.rk-dual-slider {
    position: relative;
    height: 21px;
    margin: 8px 0 0px;
}

/* Visual track  thumbs */
.rk-range-track {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    pointer-events: none;
}

/* Colored fill inside the track */
.rk-range-fill {
    position: absolute;
    top: 0;
    height: 100%;
    background: #fa5940;
    border-radius: 4px;
    pointer-events: none;
}

/* Inputs container fills the entire wrapper so thumbs sit on the track */
.rk-range-inputs {
    position: absolute;
    inset: 0;
}

/* Each input  each other */
.rk-range {
    position: absolute;
    left: 0;
    top: -6px;
    width: 100%;
    border: none !important;
    height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    pointer-events: none;
}

/* Hide the browser-native track  we draw our own */
.rk-range::-webkit-slider-runnable-track {
    background: transparent;
    height: 6px;
}

.rk-range::-moz-range-track {
    background: transparent;
    height: 6px;
}

/* Thumbs  er-events:none */
.rk-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FA5940;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.25);
    pointer-events: all;
}

.rk-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FA5940;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.25);
    pointer-events: all;
}

/* Footer */
.rk-refine-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 20px 28px 24px;
    border-top: 1px solid #f0f0f0;
}

.rk-refine-reset {
    padding: 10px 24px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.2s;
}

.rk-refine-reset:hover {
    border-color: #9ca3af;
}

.rk-refine-search {
    padding: 10px 32px;
    border-radius: 8px;
    border: none;
    background: #2c3e50;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.rk-refine-search:hover {
    background: #1a1a1a;
}
.rk-btn.rk-btn-outline:focus,.rk-btn.rk-btn-outline:active{
    color: #fff !important;
}

/* ---- 1024px: wide tablet ---- */
@media (max-width: 1024px) {
    .hero-slide-content {
        padding: 80px 40px;
    }

    .hero-slide-content h1 {
        font-size: 46px;
    }

    .rk-programs-section {
        padding: 56px 0 48px;
    }

    .rk-why-section {
        padding: 64px 0 56px;
    }

    .rk-why-header h2 {
        font-size: 38px !important;
    }

    .rk-cta-content {
        padding: 56px 32px;
    }

    .rk-cta-box h2 {
        font-size: 38px;
    }
}

/* ---- 768px: tablet portrait ---- */
@media (max-width: 768px) {
    /* Hero */ .hero-slide-content {
        padding: 56px 28px;
    }

    .hero-slide-content h1 {
        font-size: 34px;
    }

    .hero-slide-content p {
        font-size: 17px;
    }

    .hero-btn-primary, .hero-btn-secondary {
        font-size: 15px;
        padding: 11px 22px;
    }

    /* Programs */
    .rk-programs-section {
        padding: 48px 0 40px;
    }

    .rk-programs-header h2 {
        font-size: 28px;
    }

    .rk-programs-header p {
        font-size: 16px !important;
    }

    .rk-filter-tabs {
        gap: 8px;
        flex-wrap: wrap;
    }

    .rk-tab {
        font-size: 13px;
        padding: 8px 16px;
    }

    .rk-refine-trigger {
        font-size: 13px;
        padding: 8px 16px;
    }

    /* Why Choose */
    .rk-why-section {
        padding: 56px 0 48px;
    }

    .rk-why-header h2 {
        font-size: 28px !important;
    }

    .rk-why-header p {
        font-size: 17px !important;
    }

    /* CTA */
    .rk-cta-section {
        padding: 40px 0 48px;
    }

    .rk-cta-content {
        padding: 48px 28px;
    }

    .rk-cta-box h2 {
        font-size: 32px;
    }

    .rk-cta-box p {
        font-size: 17px;
    }

    .rk-cta-btn {
        font-size: 15px;
        padding: 12px 24px;
    }

    /* Refine modal */
    .rk-refine-modal__inner {
        max-width: 100%;
        border-radius: 12px;
    }

    .rk-refine-modal__header h2 {
        font-size: 22px;
    }

    .rk-refine-col__title {
        font-size: 16px;
    }
}

/* ---- 640px: large phone ---- */
@media (max-width: 640px) {
    /* Hero */ .hero-slide {
        height: 380px;
    }

    .hero-slide-content {
        padding: 44px 20px;
    }

    .hero-slide-content h1 {
        font-size: 28px;
    }

    .hero-slide-content p {
        font-size: 15px;
        margin-bottom: 22px;
        line-height: 22px;
    }

    .hero-cta-group {
        gap: 10px;
    }

    .hero-btn-primary, .hero-btn-secondary {
        font-size: 14px;
        padding: 10px 18px;
    }

    /* Programs */
    .rk-programs-header h2 {
        font-size: 24px;
    }

    .rk-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Why Choose */
    .rk-why-header h2 {
        font-size: 24px !important;
    }

    .rk-why-card-icon {
        font-size: 30px;
    }

    .rk-why-card h3 {
        font-size: 17px;
    }

    .rk-why-card p {
        font-size: 14px;
    }

    /* CTA */
    .rk-cta-content {
        padding: 40px 20px;
    }

    .rk-cta-box h2 {
        font-size: 26px;
    }

    .rk-cta-box p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .rk-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .rk-cta-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        font-size: 15px;
    }
}

/* ---- 480px: standard phone ---- */
@media (max-width: 480px) {
    /* Hero */ .hero-slide {
        height: 320px;
    }

    .hero-slide-content {
        padding: 36px 16px;
    }

    .hero-slide-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-slide-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-btn-primary, .hero-btn-secondary {
        font-size: 13px;
        padding: 9px 16px;
        border-radius: 8px;
    }

    .carousel-prev, .carousel-next {
        width: 36px;
        height: 36px;
    }

    /* Programs */
    .rk-programs-section {
        padding: 36px 0 32px;
    }

    .rk-programs-header {
        margin-bottom: 24px;
    }

    .rk-programs-header h2 {
        font-size: 22px;
    }

    .rk-programs-header p {
        font-size: 14px !important;
    }

    .rk-filter-tabs {
        gap: 6px;
    }

    .rk-tab {
        font-size: 12px;
        padding: 7px 12px;
        border-radius: 20px;
    }

    .rk-refine-trigger {
        font-size: 12px;
        padding: 7px 12px;
    }

    /* Program cards */
    .rk-card-title {
        font-size: 16px;
    }

    .rk-card-meta-item {
        font-size: 12px;
    }

    .rk-spots-alert {
        font-size: 11px;
    }

    .rk-card-btn {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* Why Choose */
    .rk-why-section {
        padding: 40px 0 36px;
    }

    .rk-why-header {
        margin-bottom: 28px;
    }

    .rk-why-header h2 {
        font-size: 22px !important;
    }

    .rk-why-header p {
        font-size: 15px !important;
    }

    .rk-why-card {
        padding: 20px 16px;
    }

    .rk-why-card-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .rk-why-card h3 {
        font-size: 16px;
    }

    .rk-why-card p {
        font-size: 13px;
    }

    /* CTA */
    .rk-cta-section {
        padding: 28px 0 36px;
    }

    .rk-cta-content {
        padding: 36px 16px;
    }

    .rk-cta-box h2 {
        font-size: 22px;
    }

    .rk-cta-box p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .rk-cta-btn {
        font-size: 14px;
        padding: 11px 20px;
        border-radius: 12px;
    }

    /* Refine modal */
    .rk-refine-modal {
        padding: 12px 8px;
    }

    .rk-refine-modal__body {
        padding: 16px;
    }

    .rk-refine-modal__header {
        padding: 20px 16px 16px;
    }

    .rk-refine-modal__header h2 {
        font-size: 18px;
    }

    .rk-refine-col__title {
        font-size: 14px;
    }

    .rk-refine-check {
        font-size: 13px;
    }

    .rk-refine-modal__footer {
        padding: 14px 16px 18px;
        gap: 10px;
    }

    .rk-refine-reset, .rk-refine-search {
        font-size: 13px;
        padding: 9px 18px;
    }
}

/* ---- 360px: small phone ---- */
@media (max-width: 360px) {
    .hero-slide-content h1 {
        font-size: 20px;
    }

    .hero-slide-content p {
        font-size: 13px;
    }

    .rk-programs-header h2 {
        font-size: 20px;
    }

    .rk-why-header h2 {
        font-size: 20px !important;
    }

    .rk-cta-box h2 {
        font-size: 20px;
    }

    .rk-cta-btn {
        font-size: 13px;
        max-width: 100%;
    }
}
/* -------------------------------------------------------
   PAGINATION
   ------------------------------------------------------- */
.rk-pagination-wrap {
    margin-top: 32px;
    text-align: center;
}

.rk-pagination {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.rk-page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    line-height: 1;
}

.rk-page-btn:hover {
    background: #fa594026;
    border-color: #FA5940;
    color: #FA5940;
}

.rk-page-btn--active {
    background: #FA5940;
    border-color: #FA5940;
    color: #fff;
    pointer-events: none;
}
.private_event {
    left: 13px !important;
}
.private_event p {
  font-size: 12px !important;
}
.hero-slide-content .hero-cta-group a:visited {
    color: #fff !important;
}