@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');
/* ================================================
   Single Product Redesign â€“ Ride Krew Bookings Page
   ================================================ */

/* ---------- CSS Variables ---------- */
.rk-booking-page {
  --rk-accent:        #FA5940;
  --rk-dark:          #1E2230;
  --rk-dark-btn: #2C3E50;
  --rk-bg:            #F5F5EF;
  --rk-card-bg:       #FFFFFF;
  --rk-text: #101828;
  --rk-text-muted:    #364153;
  --rk-border:        #E5E7EB;
  --rk-deadline-bg:   #FFF4E6;
  --rk-icon-bg:       #FDE8E3;
  --rk-radius:        12px;
  --rk-radius-sm:     8px;
  --rk-shadow:        0 2px 12px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
}
.rk-included-content ul li strong {
    font-weight: 800 !important;
}
div#rkExcerptModal .modal-body {
    display: block;
}
div#rk-desc-preview p {
    font-size: 16px;
    color: var(--rk-text);
    line-height: 1.6;
    font-family: 'inter', sans-serif;
}
span#rk-excerpt-short {
    font-size: 16px !important;
    font-family: 'inter', sans-serif;
    line-height: 30px;
}
section.rk-section-description  a#rk-view-more-btn {
    padding: 5px 7px;
    border-radius: 7px;
    border: 0px solid #f95940;
    background: #f95a41;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px !important;
    color: #fff !important;
    text-decoration: none;
}
/* ---------- Page Wrapper ---------- */
.rk-booking-page {
  background-color: var(--rk-bg);
}

/* ================================================
   HERO SECTION
   ================================================ */
.rk-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #f85a44 !important;
}
.rk-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,12,20,0.35) 0%,
    rgba(10,12,20,0.72) 100%
  );
  z-index: 1;
}

.rk-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Price Badge */
.rk-hero-price-badge {
  display: inline-block;
  background: var(--rk-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.single-product .main_content {
  margin-top: 120px !important;
}

/* Hero Title */
.rk-hero-title {
  font-size: 60px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  font-family: Righteous, sans-serif;
  margin: 0 0 14px;
  max-width: 680px;
}

/* Hero Description */
.rk-hero-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 580px;
  font-family: 'inter', sans-serif;
}

/* Hero Buttons Row */
.rk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Shared button base */
.rk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: 'inter', sans-serif;
  font-weight: 600;
padding: 20px 30px;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  line-height: 1;
  white-space: nowrap;
}

.rk-btn-dark {
  background: var(--rk-dark-btn);
  color: #fff !important;
  border: 2px solid var(--rk-dark-btn);
  font-size: 18px;
  font-weight: 600;
}

.rk-btn-dark:hover {
  background: rgb(31, 41, 55);
  border-color: rgb(31, 41, 55);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
}

.rk-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  font-size: 18px;
  font-family: 'inter', sans-serif;
}

.rk-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.rk-btn-white {
  background: #fff;
  color: var(--rk-accent);
  border: 2px solid #fff;
  margin-left: auto;
}

.rk-btn-white:hover {
  background: #f7f0ee;
  color: var(--rk-accent);
  text-decoration: none;
}

.rk-btn-white .rk-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--rk-accent);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ================================================
   MAIN CONTENT AREA
   ================================================ */
.rk-content-wrapper {
  padding: 48px 0 64px;
}

.rk-content-wrapper .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section titles ---------- */
.rk-section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--rk-text);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
  font-family: 'inter', sans-serif;
}

/* ---------- Generic card ---------- */
.rk-card {
  background: var(--rk-card-bg);
  border-radius: var(--rk-radius);
  padding: 28px;
  box-shadow: var(--rk-shadow);
  margin-bottom: 28px;
}

/* ================================================
   EVENT DETAILS (left side grid)
   ================================================ */
.rk-section-event-details {
  margin-bottom: 32px;
}

.rk-event-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  padding: 8px 20px;
}

.rk-ed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--rk-border);
}

.rk-ed-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.rk-ed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--rk-icon-bg);
  border-radius: 8px;
  flex-shrink: 0;
}

.rk-ed-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rk-accent);
}

.rk-ed-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--rk-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.rk-ed-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--rk-text);
  margin: 0;
}

.rk-ed-email {
  color: var(--rk-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.rk-ed-email:hover {
  color: #c93b20;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .rk-event-details-grid {
    grid-template-columns: 1fr;
    padding: 8px 12px;
  }

  .rk-ed-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--rk-border);
  }

  .rk-ed-item:last-child {
    border-bottom: none;
  }
}

/* ================================================
   WHAT'S INCLUDED
   ================================================ */
.rk-section-included {
  margin-bottom: 32px;
}

/* Style the_content() checklist output */
.rk-included-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rk-included-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'inter', sans-serif;
  padding: 10px 0;
  font-size: 16px;
  color: var(--rk-text);
  line-height: 1.5;
  font-weight: 400;
  /* border-bottom: 1px solid var(--rk-border); */
}

.rk-included-content ul li:last-child {
  border-bottom: none;
}
section.rk-hero a.rk-btn.rk-btn-white {
    padding: 8px 15px;
    border-radius: 16px;
    border: 0px solid #faf8f59c;
    background: #faf8f5c2;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px !important;
    color: #FA5940 !important;
}
.rk-included-content ul li::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--rk-icon-bg);
    border-radius: 20%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='%23E84E2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 1px;
}

.rk-included-content p,
.rk-included-content div {
  font-size: 16px;
  color: var(--rk-text);
  line-height: 1.6;
}

/* ================================================
   BOOKING DEADLINE
   ================================================ */
.rk-section-deadline {
  margin-bottom: 32px;
}

.rk-deadline-card {
  background: var(--rk-deadline-bg);
  border: none;
  box-shadow: none;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.rk-deadline-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.rk-deadline-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--rk-accent);
  stroke: var(--rk-accent);
}

.rk-deadline-date {
  font-size: 18px;
  font-weight: 600;
  color: var(--rk-text);
  margin: 0 0 6px;
  font-family: 'inter', sans-serif;
}
button.single_add_to_cart_button.button.alt {
    background-color: #2C3E50 !important;
    font-size: 18px !important;
}

.rk-deadline-info {
  font-size: 16px;
  color: var(--rk-text-muted);
  font-weight: 400;
  line-height: 26px;
  margin: 0;
  font-family: 'inter', sans-serif;
}

/* ================================================
   WHAT TO BRING
   ================================================ */
.rk-section-bring {
  margin-bottom: 32px;
}
.single-product .woocommerce-variation-price {
    float: left;
    margin-bottom: 15px;
}
.single-product  table.variations th.label {
    display: none;
}
.single-product .woocommerce div.product form.cart .variations select {
    margin-right: 38px;
    padding: 0 8px;
}
.rk-bring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rk-bring-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rk-bring-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--rk-icon-bg);
  border-radius: 10px;
}

.rk-bring-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--rk-accent);
}

.rk-bring-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--rk-text);
  margin: 0 0 2px;
  font-family: 'inter', sans-serif;
}

.rk-bring-sub {
  font-size: 14px;
  color: var(--rk-text-muted);
  margin: 0;
  font-weight: 400;
  font-family: 'inter', sans-serif;
}

/* ================================================
   WHY RIDE KREW
   ================================================ */
/* .rk-section-why {
  margin-bottom: 32px;
} */

.rk-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rk-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  /* border-bottom: 1px solid var(--rk-border); */
}

.rk-why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rk-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--rk-icon-bg);
  border-radius: 10px;
}

.rk-why-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rk-accent);
}

.rk-why-stat {
  font-size: 18px;
  font-weight: 700;
  font-family: 'inter', sans-serif;
  color: var(--rk-text);
  margin: 0 0 3px;
}

.rk-why-desc {
  font-size: 16px;
  color: var(--rk-text-muted);
  margin: 0;
  font-family: 'inter', sans-serif;
  font-weight: 400;
}

/* ================================================
   RIGHT SIDEBAR
   ================================================ */
.rk-sidebar {
  position: sticky;
  top: 100px;
}

.rk-price-card {
  background: var(--rk-card-bg);
  border-radius: var(--rk-radius);
  padding: 28px;
  box-shadow: var(--rk-shadow);
}

.rk-price-amount {
  font-size: 36px;
  font-weight: 700;
  font-family: 'inter', sans-serif;
  color: var(--rk-text);
  line-height: 1;
  margin: 0 0 4px;
}

.rk-price-per {
  font-size: 14px;
  color: var(--rk-text-muted);
  margin: 0 0 20px;
  font-family: 'inter', sans-serif;
}

.rk-price-divider {
  border: none;
  border-top: 1px solid var(--rk-border);
  margin: 0 0 20px;
}

/* Sidebar detail rows */
.rk-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.rk-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  /* border-bottom: 1px solid var(--rk-border); */
}

.rk-detail-item:last-child {
  border-bottom: none;
}

.rk-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rk-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rk-text-muted);
}

.rk-detail-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--rk-text-muted);
  letter-spacing: 0.2px;
  margin: 0 0 2px;
  display: block;
  font-family: 'inter', sans-serif;
}

.rk-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--rk-text);
  margin: 0;
  font-family: 'inter', sans-serif;
}

/* Reserve Spot button in sidebar */
.rk-reserve-btn,
.rk-reserve-btn.single_add_to_cart_button {
  display: block;
  width: 100%;
  background: var(--rk-dark-btn) !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 16px 24px !important;
  border-radius: var(--rk-radius-sm) !important;
  border: none !important;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.22s ease;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.rk-reserve-btn:hover,
.rk-reserve-btn.single_add_to_cart_button:hover {
  background: #3a3e52 !important;
  color: #fff !important;
  text-decoration: none;
}

/* Override WooCommerce add to cart form in sidebar */
.rk-sidebar-atc .cart {
  margin: 0;
}

.rk-sidebar-atc .qty,
.rk-sidebar-atc .input-text.qty {
  display: none !important;
}

/* Private event code input in sidebar */
.rk-sidebar-atc .private_event_wrap_single {
  margin-top: 0 !important;
}

.rk-sidebar-atc .private_event_input_wr {
  margin: 0 0 10px;
}

.rk-sidebar-atc .private_event_input {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid var(--rk-border) !important;
  border-radius: var(--rk-radius-sm) !important;
  font-size: 14px !important;
  font-family: 'Poppins', sans-serif !important;
  color: var(--rk-text) !important;
  outline: none !important;
  margin-top: 0 !important;
  box-sizing: border-box;
}

.rk-sidebar-atc .private_event_input:focus {
  border-color: var(--rk-dark) !important;
}

.rk-sidebar-atc .btn_wrap {
  margin: 0;
}

.rk-sidebar-atc .single_add_to_cart_button {
  display: block !important;
  width: 100% !important;
  background: var(--rk-dark-btn);
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 16px 24px !important;
  border-radius: var(--rk-radius-sm) !important;
  border: none !important;
  text-align: center !important;
  cursor: pointer;
  transition: background 0.22s ease;
  margin-bottom: 0 !important;
  letter-spacing: 0.2px;
}

.rk-sidebar-atc .single_add_to_cart_button:hover {
  background: #3a3e52;
}

/* Sold out / waitlist button in sidebar */
.rk-waitlist-btn {
  display: block;
  width: 100%;
  background: #9CA3AF;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--rk-radius-sm);
  border: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
}

.rk-waitlist-btn:hover {
  background: #6B7280;
  color: #fff;
  text-decoration: none;
}

/* Contact Us + help text */
.rk-contact-wrap {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid var(--rk-border);
  padding-top: 20px;
}

.rk-contact-link {
  display: block;
  text-align: center;
  color: var(--rk-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.rk-contact-link:hover {
  color: #c93b20;
  text-decoration: none;
}

.rk-help-text {
  text-align: center;
  font-size: 16px;
  color: var(--rk-text-muted);
  margin: 0;
}

/* Private/Sold Out badges */
.rk-badge-wrap {
  margin-bottom: 16px;
}

.rk-badge-sold-out,
.rk-badge-private {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.rk-badge-sold-out {
  background: #FEE2E2;
  color: #B91C1C;
}

.rk-badge-private {
  background: #EDE9FE;
  color: #6D28D9;
  margin-right: 6px;
}

/* ================================================
   RIDER LEVEL MODAL TRIGGER AREA
   ================================================ */
.rk-rider-level-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rk-text-muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
}

.rk-rider-level-trigger:hover {
  color: var(--rk-accent);
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {
  .single-product .main_content {
    margin-top: 90px !important;
  }

  .rk-hero-inner {
    padding: 36px 24px 40px;
  }

  .rk-hero-title {
    font-size: 42px;
    max-width: 100%;
  }

  .rk-hero-desc {
    font-size: 17px;
    max-width: 100%;
  }

  .rk-section-title {
    font-size: 24px;
  }

  .rk-price-amount {
    font-size: 30px;
  }

  .rk-btn-dark,
  .rk-btn-outline {
    font-size: 16px;
  }

  .rk-btn-white {
    margin-left: 0;
  }

  .rk-content-wrapper .container-fluid {
    padding: 0 16px;
  }

  .rk-sidebar {
    position: static;
    margin-top: 32px;
  }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  .single-product .main_content {
    margin-top: 75px !important;
  }

  .rk-hero {
    min-height: 320px;
  }

  .rk-hero-inner {
    padding: 28px 16px 32px;
  }

  .rk-hero-title {
    font-size: 28px;
    max-width: 100%;
  }

  .rk-hero-desc {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .rk-hero-price-badge {
    font-size: 13px;
    padding: 5px 14px;
  }

  .rk-section-title {
    font-size: 20px;
  }

  .rk-price-amount {
    font-size: 28px;
  }

  .rk-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .rk-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 20px;
  }

  .rk-btn-dark,
  .rk-btn-outline {
    font-size: 15px;
  }

  .rk-btn-white {
    margin-left: 0;
  }

  .rk-bring-grid {
    grid-template-columns: 1fr;
  }

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

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

  .rk-content-wrapper {
    padding: 24px 0 36px;
  }

  .rk-deadline-card {
    flex-direction: column;
    gap: 12px;
  }

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

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

  .rk-bring-label {
    font-size: 15px;
  }

  .rk-deadline-date {
    font-size: 16px;
  }

  .rk-deadline-info {
    font-size: 14px;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .single-product .main_content {
    margin-top: 65px !important;
  }

  .rk-hero {
    min-height: 280px;
  }

  .rk-hero-inner {
    padding: 20px 14px 24px;
  }

  .rk-hero-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .rk-hero-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .rk-hero-price-badge {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .rk-section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .rk-price-amount {
    font-size: 26px;
  }

  .rk-card {
    padding: 16px 12px;
  }

  .rk-price-card {
    padding: 16px 12px;
  }

  .rk-content-wrapper {
    padding: 20px 0 28px;
  }

  .rk-content-wrapper .container-fluid {
    padding: 0 12px;
  }

  .rk-ed-label {
    font-size: 10px;
  }

  .rk-ed-value {
    font-size: 13px;
  }

  .rk-detail-label {
    font-size: 12px;
  }

  .rk-detail-value {
    font-size: 14px;
  }

  .rk-btn {
    font-size: 14px;
    padding: 14px 16px;
  }

  .rk-included-content ul li {
    font-size: 14px;
    gap: 10px;
  }

  .rk-bring-icon,
  .rk-why-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .rk-ed-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

}