@charset "UTF-8";
/* =====================================================================
   POLISHED PRO — TOKEN DEFAULTS
   DB-driven vars get overridden by the inline <style> block in the layout.
   All values below are Theme A (Slate & Citrus) fallbacks.
   ===================================================================== */
/* line 7, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 8, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

/* line 9, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
body.cp-template {
  font-family: var(--body-font);
  line-height: 1.5;
  overflow-x: clip;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* line 18, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
body.cp-template button,
body.cp-template select,
body.cp-template input,
body.cp-template textarea {
  font-family: var(--body-font);
}

/* line 22, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
body.cp-template img {
  display: block;
}

/* line 23, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
body.cp-template a {
  text-decoration: none;
}

/* line 24, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
body.cp-template a:not([class]) {
  color: inherit;
}

/* line 26, app/assets/stylesheets/customers/clean_pro/_tokens.scss */
:root {
  /* DB-driven — layout <style> overrides these */
  --accent:          #B8D433;
  --accent-bright:   #CAEA44;
  --dark:            #2D3A4A;
  --ground:          #F8F7F2;
  --nav-bg:          #F8F7F2;
  --dark-mid:        #3A4A5C;
  --ground-dark:     #EDEDEA;
  --ground-warm:     #F2EDE4;
  --card:            #FBF9F4;
  --body-text:       rgba(45,58,74,0.62);
  --light-text:      rgba(248,247,242,0.72);
  --hero-overlay:    linear-gradient(105deg,rgba(45,58,74,0.72) 0%,rgba(45,58,74,0.48) 50%,rgba(45,58,74,0.15) 100%);
  --cat-overlay:     linear-gradient(to top,rgba(45,58,74,0.95) 0%,rgba(45,58,74,0.35) 55%,transparent 100%);
  --footer-bg:       #3A4A5C;
  --faq-border:      #EDEDEA;
  --faq-icon-bg:     #EDEDEA;
  --faq-icon-active: #2D3A4A;
  --cta-bg:          #B8D433;
  --nav-dot-radius:  1px;
  /* Typography tokens */
  --display-font:     'Fraunces', Georgia, serif;
  --body-font:        'Plus Jakarta Sans', system-ui, sans-serif;
  --headline-weight:  900;
  --headline-spacing: -0.03em;
  --headline-case:    none;
  --logo-size:        20px;
  --logo-weight:      700;
  --logo-spacing:     -0.02em;
  --logo-case:        none;
  /* Fixed palette helpers */
  --accent-10:  rgba(184,212,51,0.10);
  --dark-06:    rgba(45,58,74,0.06);
  --dark-12:    rgba(45,58,74,0.12);
  --dark-30:    rgba(45,58,74,0.30);
  --dark-60:    rgba(45,58,74,0.60);
  --r-pill:     999px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --orange:     var(--accent);
  /* maps shared modal spinner color to accent */
  --font-body:  var(--body-font);
  /* alias for _bb_product_detail shared partial */
  /* Checkout tokens */
  --co-section-num-bg:           var(--dark);
  --co-cp-num-active-bg:         var(--dark);
  --co-cp-label-active:          var(--dark);
  --co-cp-bar:                   rgba(0,0,0,0.08);
  --co-input-focus:              var(--accent);
  --co-form-accent:              var(--accent);
  --co-surface-on-border:        var(--accent);
  --co-surface-on-bg:            color-mix(in srgb, var(--accent) 8%, transparent);
  --co-surface-on-price:         var(--accent);
  --co-waiver-toggle-checked:    var(--accent);
  --co-place-order-shadow:       4px 4px 0 var(--accent);
  --co-place-order-hover-shadow: 6px 6px 0 var(--accent);
  --co-tip-on-border:            var(--accent);
  --co-tip-on-bg:                color-mix(in srgb, var(--accent) 8%, transparent);
  --co-tip-on-color:             var(--dark);
  --co-coupon-btn-bg:            var(--dark);
  --co-coupon-input-focus:       var(--accent);
  --co-order-border:             var(--ground-dark);
  --co-order-h3:                 var(--dark);
  --co-due-today-bg:             color-mix(in srgb, var(--accent) 8%, transparent);
  --co-due-today-border:         var(--accent);
  --co-due-today-amount:         var(--dark);
  --booking-panel-border-color:  var(--ground-dark);
  --cart-cta-bg:                 var(--dark);
  --cart-change-date-color:      var(--dark);
  --page-header-bg:              var(--ground);
}

/* =====================================================================
   POLISHED PRO — LAYOUT (nav, footer, flash, toast, modals)
   ===================================================================== */
/* ---- NAV ---- */
/* line 6, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--ground-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* line 16, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
/* line 28, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

/* line 35, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* line 43, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-logo-text {
  font-family: var(--display-font);
  font-size: var(--logo-size);
  font-weight: var(--logo-weight);
  letter-spacing: var(--logo-spacing);
  text-transform: var(--logo-case);
  color: var(--dark);
  line-height: 1;
}

/* line 53, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-logo-img {
  display: block;
  width: auto;
  object-fit: contain;
  max-height: 40px;
}

/* line 60, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-logo--small .cp-logo-img {
  max-height: 28px;
}

/* line 61, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-logo--medium .cp-logo-img {
  max-height: 40px;
}

/* line 62, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-logo--large .cp-logo-img {
  max-height: 52px;
}

/* Nav links */
/* line 65, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

/* line 73, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-link {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  position: relative;
  white-space: nowrap;
}

/* line 85, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--nav-dot-radius);
  transform: scaleX(0);
  transition: transform 0.2s;
}

/* line 97, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-link:hover {
  color: var(--dark);
}

/* line 98, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-link.on {
  color: var(--dark);
  font-weight: 700;
}

/* line 101, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-link.on::after {
  transform: scaleX(1);
}

/* Nav right side */
/* line 106, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-r {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* line 113, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

/* line 126, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-call:hover {
  background: var(--accent-bright);
}

/* line 129, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--dark);
  border-radius: 8px;
  transition: background 0.15s;
}

/* line 139, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-cart:hover {
  background: var(--ground-dark);
}

/* line 142, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  color: var(--dark);
  transition: background 0.15s;
}

/* line 154, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-toggle:hover {
  background: var(--ground-dark);
}

/* line 155, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-toggle .cp-close-icon {
  display: none;
}

/* line 156, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-toggle.open .cp-hamburger-icon {
  display: none;
}

/* line 157, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-nav-toggle.open .cp-close-icon {
  display: block;
}

/* line 160, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* line 176, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cart-badge.pulse {
  animation: cpBadgePulse 0.4s ease;
}

@keyframes cpBadgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile menu */
/* line 186, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  padding: 8px 20px 20px;
  gap: 0;
  z-index: 199;
}

/* line 199, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-mobile-menu.open {
  display: flex;
}

/* line 202, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-mobile-link {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 15px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

/* line 209, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-mobile-link:last-child {
  border-bottom: none;
}

/* line 210, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-mobile-link.on {
  color: var(--accent) !important;
  font-weight: 700;
}

/* line 213, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-mobile-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

@media (max-width: 900px) {
  /* line 229, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-nav-links {
    display: none;
  }
  /* line 230, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-nav-call {
    display: none;
  }
  /* line 231, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-nav-toggle {
    display: flex;
  }
}

/* ---- FOOTER ---- */
/* line 235, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer {
  background: var(--footer-bg);
  color: var(--light-text);
  padding: 60px 28px 0;
}

/* line 241, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* line 251, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-brand-logo {
  display: block;
  max-height: 40px;
  width: auto;
  margin-bottom: 16px;
}

/* line 258, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-brand-name {
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: var(--logo-weight);
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: var(--logo-spacing);
  text-transform: var(--logo-case);
  line-height: 1.1;
}

/* line 269, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.2s;
}

/* line 282, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-phone:hover {
  background: var(--accent-bright);
}

/* line 285, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 291, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  text-decoration: none;
  transition: border-color 0.2s;
}

/* line 302, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-soc:hover {
  border-color: var(--accent);
}

/* line 305, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 16px;
  line-height: 1.6;
}

/* line 312, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

/* line 321, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 326, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-links a {
  font-size: 14px;
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.15s;
}

/* line 331, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-links a:hover {
  color: #fff;
}

/* line 335, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

/* line 348, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-bar-links {
  display: flex;
  gap: 20px;
}

/* line 351, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-bar-links a {
  color: rgba(255, 255, 255, 0.28);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}

/* line 356, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-footer-bar-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  /* line 361, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  /* line 367, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-footer {
    padding: 36px 18px 20px;
  }
  /* line 370, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  /* Brand block — full-width, centered */
  /* line 375, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-footer-inner > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* line 382, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-footer-inner > div:first-child .cp-footer-socials {
    justify-content: center;
  }
  /* Contact column — full-width */
  /* line 386, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-footer-inner > div:last-child {
    grid-column: 1 / -1;
  }
  /* Bottom bar — stacked */
  /* line 390, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-footer-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 900px) {
  /* line 399, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-mobile-call {
    background: var(--accent);
    color: var(--dark);
  }
}

/* ---- INNER HERO (shared by products, cart, checkout, about, contact) ---- */
/* line 406, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-inner-hero {
  position: relative;
  background: var(--dark);
  padding: 52px 28px 48px;
  overflow: hidden;
}

/* line 413, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

/* line 421, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-inner-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}

/* line 432, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}

/* line 439, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* line 446, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-inner-hero h1,
.cp-inner-hero-h {
  font-family: var(--display-font);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: #fff;
  line-height: 1.05;
}

/* line 457, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-inner-hero-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--light-text);
  margin-top: 8px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  /* line 466, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-inner-hero {
    padding: 40px 18px 36px;
  }
  /* line 467, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-inner-hero h1,
.cp-inner-hero-h {
    font-size: clamp(26px, 8vw, 36px);
  }
  /* line 469, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-inner-hero-sub {
    font-size: 14px;
  }
}

/* ---- FLASH MESSAGES ---- */
@keyframes cpFlashIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cpFlashOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-14px);
  }
}

/* line 482, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-flash {
  position: fixed;
  top: 86px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 16px 22px;
  border-radius: 12px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  animation: cpFlashIn .28s ease forwards;
}

/* line 500, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-flash.cp-flash-hiding {
  animation: cpFlashOut .28s ease forwards;
}

/* line 501, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-flash.cp-flash-notice {
  border-left: 5px solid var(--accent);
}

/* line 502, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-flash.cp-flash-alert {
  border-left: 5px solid #ef4444;
}

/* line 503, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-flash button {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.35;
  padding: 0;
  color: var(--dark);
  flex-shrink: 0;
  margin-left: auto;
}

/* line 514, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-flash button:hover {
  opacity: 0.7;
}

@media (max-width: 528px) {
  /* line 518, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  .cp-flash {
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ---- COMPAT: Bootstrap alert divs from product detail page ---- */
/* line 522, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div,
body.cp-template .success_message_div {
  position: fixed;
  top: 86px;
  right: 24px;
  z-index: 9998;
  max-width: 420px;
  font-family: var(--body-font);
  animation: cpFlashIn .28s ease forwards;
}

/* line 532, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .alert,
body.cp-template .success_message_div .alert {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 16px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow-lg);
  border: none;
  margin: 0;
}

/* line 546, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .alert.alert-danger,
body.cp-template .success_message_div .alert.alert-danger {
  border-left: 5px solid #ef4444;
}

/* line 547, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .alert.alert-warning,
body.cp-template .success_message_div .alert.alert-warning {
  border-left: 5px solid #f59e0b;
}

/* line 548, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .alert.alert-info,
body.cp-template .success_message_div .alert.alert-info {
  border-left: 5px solid #3b82f6;
}

/* line 549, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .alert.alert-success,
body.cp-template .success_message_div .alert.alert-success {
  border-left: 5px solid var(--accent);
}

/* line 551, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .message,
body.cp-template .success_message_div .message {
  flex: 1;
}

/* line 553, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .close,
body.cp-template .success_message_div .close {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.35;
  padding: 0;
  color: var(--dark);
  float: none;
  flex-shrink: 0;
  margin-left: auto;
  font-weight: 400;
  text-shadow: none;
}

/* line 568, app/assets/stylesheets/customers/clean_pro/_layout.scss */
body.cp-template .alert_message_div .close:hover,
body.cp-template .success_message_div .close:hover {
  opacity: 0.7;
}

@media (max-width: 528px) {
  /* line 571, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  body.cp-template .alert_message_div,
body.cp-template .success_message_div {
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ---- TOAST CART ---- */
/* line 576, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-cart {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--ground-dark);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 18px 20px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(120%) scale(0.96);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s;
}

/* line 593, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-cart.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* line 596, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* line 603, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* line 617, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
}

/* line 624, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--body-text);
  line-height: 1;
}

/* line 631, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-close:hover {
  color: var(--dark);
}

/* line 634, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-item {
  font-size: 13px;
  color: var(--body-text);
  margin-bottom: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 644, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-actions {
  display: flex;
  gap: 8px;
}

/* line 649, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s;
}

/* line 660, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-btn:hover {
  opacity: 0.85;
}

/* line 661, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-btn.cp-toast-btn-secondary {
  background: var(--ground-dark);
  color: var(--dark);
}

/* line 665, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-toast-btn.cp-toast-btn-primary {
  background: var(--cp-btn-bg);
  color: var(--accent);
}

/* ---- PAGE HEADER BLOCK (cart, checkout) ---- */
/* line 672, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-page-header-block {
  background: var(--page-header-bg);
  padding: 32px 28px 28px;
  border-bottom: 1px solid var(--ground-dark);
}

/* line 676, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-page-header-block h1 {
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  line-height: 1.1;
}

/* line 685, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-page-header-block p {
  font-size: 14px;
  color: var(--body-text);
  margin-top: 6px;
}

/* line 692, app/assets/stylesheets/customers/clean_pro/_layout.scss */
.cp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Chat widget — lift above mobile sticky bars ---- */
@media (max-width: 900px) {
  /* line 700, app/assets/stylesheets/customers/clean_pro/_layout.scss */
  body.cp-template #chat-widget-container {
    bottom: 80px !important;
  }
}

/* =====================================================================
   POLISHED PRO — HOME PAGE
   ===================================================================== */
/* ---- HERO ---- */
/* line 6, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero {
  position: relative;
  height: 68vh;
  min-height: 640px;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* line 16, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-slide {
  position: absolute;
  inset: 0;
}

/* line 19, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* line 27, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-slide img.active {
  opacity: 1;
}

/* line 31, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* line 40, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--cp-hero-overlay, var(--hero-overlay));
}

/* line 46, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
}

/* line 55, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* line 60, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-eyebrow span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* line 67, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-eyebrow p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-family: var(--body-font);
}

/* line 77, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-headline {
  font-family: var(--display-font);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  line-height: 1.0;
  margin-bottom: 28px;
  max-width: 640px;
}

/* line 88, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-tagline {
  color: var(--light-text);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
  font-family: var(--body-font);
}

/* line 97, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-date-bar {
  display: flex;
  align-items: stretch;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 6px;
  max-width: 480px;
  margin-bottom: 18px;
}

/* line 109, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-date-label {
  display: block;
  flex: 1;
  min-width: 0;
  cursor: text;
  color: var(--ground);
}

/* line 117, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-date-hint {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 16px 2px;
}

/* line 127, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-date-bar input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 2px 16px 10px;
  font-size: 15px;
  font-weight: 500;
  min-width: 0;
  color: var(--ground);
}

/* line 138, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-date-bar input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 141, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* line 157, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-cta-btn:hover {
  background: var(--accent-bright);
}

/* line 160, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-skip {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: underline;
  margin-top: 14px;
  display: inline-block;
}

/* line 166, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-skip:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* line 169, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

/* line 179, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s, background 0.3s;
}

/* line 188, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-hero-dot.active {
  width: 24px;
  background: var(--accent);
}

/* ---- CATEGORY SECTION ---- */
/* line 195, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-section {
  background: var(--ground);
  padding: 80px 0 20px;
  overflow: hidden;
}

/* line 201, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}

/* line 208, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-header h2 {
  font-family: var(--display-font);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  line-height: 1.0;
}

/* line 219, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--body-font);
  margin-bottom: 10px;
}

/* line 230, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  text-decoration: none;
  align-self: flex-end;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

/* line 243, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-view-all:hover {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}

/* line 246, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-count-label {
  font-size: 13px;
  color: var(--body-text);
  font-family: var(--body-font);
}

/* Cat card shared */
/* line 253, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark-mid);
  text-decoration: none;
  cursor: pointer;
}

/* line 261, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

/* line 270, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-card:hover img {
  transform: scale(1.06);
}

/* line 273, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-overlay {
  position: absolute;
  inset: 0;
  background: var(--cat-overlay);
}

/* line 279, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 291, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-card:hover .cp-cat-top-line {
  transform: scaleX(1);
}

/* line 293, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-family: var(--display-font);
  font-weight: 900;
  opacity: 0.08;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  color: var(--accent);
  transition: opacity 0.45s;
  letter-spacing: -0.06em;
}

/* line 308, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-card:hover .cp-cat-num {
  opacity: 0.18;
}

/* line 310, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 26px 28px;
  z-index: 2;
}

/* line 319, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-name-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

/* line 326, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

/* line 338, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-bar {
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 8px;
  border-radius: 1px;
}

/* line 346, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-card:hover .cp-cat-bar {
  width: 100%;
}

/* line 348, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-count {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--body-font);
}

/* line 358, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-name {
  font-family: var(--display-font);
  color: #F8F7F2;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: var(--headline-spacing);
}

/* line 366, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 14px;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── CATEGORY IMAGE STYLE MODIFIERS ── */
/* Hidden by default; floats at top of overlay card for title_above_cta_below */
/* line 382, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat-title-header {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px 18px;
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 700;
  color: #F8F7F2;
  letter-spacing: var(--headline-spacing);
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

/* ── CATEGORY IMAGE STYLE MODIFIERS ── */
/* line 402, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat--image-only .cp-cat-overlay,
.cp-cat--image-only .cp-cat-num,
.cp-cat--image-only .cp-cat-body,
.cp-cat--image-only .cp-cat-top-line {
  display: none;
}

/* title_above_cta_below: name floats at top, CTA stays at bottom — overlay intact */
/* line 410, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat--title-above .cp-cat-title-header {
  display: block;
}

/* line 411, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat--title-above .cp-cat-name-row {
  display: none;
}

/* line 412, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cat--title-above .cp-cat-name {
  display: none;
}

/* Mode A: 2-3 cats */
/* line 418, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cats-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  height: clamp(380px, 48vw, 560px);
}

/* line 424, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-hero {
  grid-row: 1 / span 2;
}

/* line 426, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-hero .cp-cat-name {
  font-size: clamp(24px, 2.6vw, 34px);
}

/* line 427, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-hero .cp-cat-num {
  font-size: clamp(140px, 18vw, 200px);
}

/* line 429, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-small {
  border-radius: 10px;
}

/* line 431, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-small .cp-cat-name {
  font-size: clamp(14px, 1.4vw, 18px);
}

/* line 432, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-small .cp-cat-num {
  font-size: clamp(70px, 9vw, 110px);
}

/* line 433, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-small .cp-cat-body {
  padding: 14px 16px 16px;
}

/* line 434, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-a .cp-container .cp-cat-small .cp-cat-count {
  margin-bottom: 5px;
  letter-spacing: 0.12em;
}

/* Mode B: 4-5 cats */
/* line 442, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cats-grid {
  display: grid;
  gap: 14px;
  height: clamp(440px, 54vw, 620px);
}

/* line 448, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cat-hero .cp-cat-name {
  font-size: clamp(24px, 2.6vw, 34px);
}

/* line 449, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cat-hero .cp-cat-num {
  font-size: clamp(140px, 18vw, 200px);
}

/* line 451, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cat-small {
  border-radius: 10px;
}

/* line 453, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cat-small .cp-cat-name {
  font-size: clamp(14px, 1.4vw, 18px);
}

/* line 454, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cat-small .cp-cat-num {
  font-size: clamp(70px, 9vw, 110px);
}

/* line 455, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cat-small .cp-cat-body {
  padding: 14px 16px 16px;
}

/* line 456, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-b .cp-container .cp-cat-small .cp-cat-count {
  margin-bottom: 5px;
  letter-spacing: 0.12em;
}

/* Mode C: 6+ cats */
/* line 463, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cats-scroll-wrap {
  display: flex;
  gap: 14px;
  align-items: stretch;
  height: clamp(520px, 62vw, 700px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 472, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-hero-col {
  flex: 0 0 clamp(260px, 28%, 340px);
}

/* line 474, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-hero-col .cp-cat-name {
  font-size: clamp(24px, 2.6vw, 34px);
}

/* line 475, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-hero-col .cp-cat-num {
  font-size: clamp(140px, 18vw, 200px);
}

/* line 477, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cats-track-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* line 482, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cats-track {
  display: flex;
  gap: 14px;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

/* line 490, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cats-track::-webkit-scrollbar {
  display: none;
}

/* line 492, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cats-col {
  flex: 1 0 180px;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
}

/* line 500, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-small {
  border-radius: 10px;
}

/* line 502, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-small .cp-cat-name {
  font-size: clamp(14px, 1.4vw, 18px);
}

/* line 503, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-small .cp-cat-num {
  font-size: clamp(70px, 9vw, 110px);
}

/* line 504, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-small .cp-cat-body {
  padding: 14px 16px 16px;
}

/* line 505, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-mode-c .cp-cat-small .cp-cat-count {
  margin-bottom: 5px;
  letter-spacing: 0.12em;
}

/* line 509, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-dots {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px 0;
  align-items: center;
}

/* line 519, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: var(--ground-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s, background 0.3s, opacity 0.3s;
  opacity: 0.3;
}

/* line 529, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cats-dot.active {
  width: 20px;
  background: var(--accent);
  opacity: 1;
}

/* ---- FEATURED RENTALS ---- */
/* line 533, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-section {
  background: var(--ground);
  padding: 72px 0 80px;
}

/* line 538, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: 14px;
  text-decoration: none;
  background: var(--dark-mid);
}

/* line 547, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

/* line 553, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-card:hover img {
  transform: scale(1.04);
}

/* line 556, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.78) 100%);
}

/* line 562, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: var(--body-font);
}

/* line 577, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-body {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  padding: 28px 32px 32px;
  text-align: right;
  z-index: 2;
}

/* line 587, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--body-font);
}

/* line 597, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-name {
  font-family: var(--display-font);
  color: #fff;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  line-height: 1.05;
  margin-bottom: 16px;
}

/* line 608, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: nowrap;
}

/* line 617, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-hero-price {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
  white-space: nowrap;
}

/* line 625, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s;
  max-width: 100%;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}

/* line 640, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-book-btn:hover {
  background: var(--accent-bright);
}

/* line 643, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-book-btn-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* line 650, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-book-btn-sm {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 5px;
  flex-shrink: 1;
}

/* line 657, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* line 663, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  text-decoration: none;
  background: var(--dark-mid);
}

/* line 671, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* line 677, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-card:hover img {
  transform: scale(1.05);
}

/* line 680, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}

/* line 686, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}

/* line 695, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-name {
  font-family: var(--display-font);
  color: #fff;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  letter-spacing: var(--headline-spacing);
  line-height: 1.1;
  margin-bottom: 8px;
}

/* line 705, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
}

/* line 713, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-feat-shelf-price {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
  white-space: nowrap;
}

/* line 721, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-section-sub {
  font-size: 15px;
  color: var(--body-text);
  margin-top: 8px;
  font-family: var(--body-font);
  line-height: 1.6;
}

/* ---- GALLERY STRIP ---- */
/* line 730, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-section {
  background: var(--dark);
  overflow: hidden;
}

/* line 735, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-header {
  padding: 48px 28px 36px;
  max-width: 1280px;
  margin: 0 auto;
}

/* line 741, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-heading {
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--ground);
  line-height: 1.05;
}

/* line 751, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-subheading {
  font-size: 15px;
  color: var(--light-text);
  margin-top: 10px;
  font-family: var(--body-font);
  line-height: 1.65;
  max-width: 520px;
}

/* line 760, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-row {
  display: flex;
  gap: 5px;
}

/* line 765, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-photo {
  flex: 1;
  height: clamp(280px, 34vw, 440px);
  position: relative;
  overflow: hidden;
}

/* line 770, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

/* line 779, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-photo:hover img {
  transform: scale(1.04);
}

/* line 782, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-gallery-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  z-index: 2;
}

/* ---- TESTIMONIALS ---- */
/* line 793, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-section {
  background: var(--ground-warm);
  padding: 80px 0;
}

/* line 798, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}

/* line 805, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-header h2 {
  font-family: var(--display-font);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  line-height: 1.0;
}

/* line 816, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-header-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* line 822, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-accent-bar {
  width: 5px;
  min-height: 60px;
  background: var(--accent);
  border-radius: 3px;
  flex-shrink: 0;
  align-self: stretch;
}

/* line 831, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ground-dark);
  border-radius: 10px;
  padding: 10px 16px;
  flex-shrink: 0;
}

/* line 842, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-google-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

/* line 852, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-google-count {
  font-size: 12px;
  color: var(--body-text);
}

/* line 857, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* line 864, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* line 870, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-card {
  border-radius: 10px;
  padding: 28px;
  position: relative;
  background: var(--card);
  border: 1px solid var(--ground-dark);
}

/* line 878, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-card-feat {
  background: var(--dark);
  border-color: transparent;
  border-left: 4px solid var(--accent);
}

/* line 882, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-card-feat .cp-review-text {
  color: var(--light-text);
}

/* line 883, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-card-feat .cp-review-name {
  color: #fff;
}

/* line 884, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-card-feat .cp-review-source {
  color: rgba(255, 255, 255, 0.45);
}

/* line 885, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-card-feat .cp-review-avatar {
  color: #fff;
}

/* Second card in top row (desktop) + all bottom row cards: dark bg, accent initials */
/* line 889, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-reviews-top > div:not(.cp-review-card-feat) .cp-review-avatar,
.cp-reviews-bottom .cp-review-avatar {
  background: var(--dark);
  color: var(--accent);
}

/* line 895, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #F59E0B;
  font-size: 14px;
}

/* line 903, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 20px;
}

/* line 910, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-avatar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 916, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

/* line 930, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-avatar--sm {
  width: 26px;
  height: 26px;
  background: var(--dark);
  color: var(--accent);
  font-size: 9px;
}

/* line 938, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-mob-review {
  display: none;
}

/* line 940, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-text--clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* line 947, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* line 953, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-review-source {
  font-size: 11px;
  color: var(--body-text);
  margin-top: 2px;
}

/* ---- FAQ ---- */
/* line 960, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-section {
  background: var(--ground);
  padding: 80px 0;
}

/* line 965, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 971, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

/* line 976, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* line 984, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-rule {
  flex: 1;
  height: 1px;
  background: var(--faq-border);
  max-width: 80px;
}

/* line 991, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-family: var(--body-font);
  white-space: nowrap;
}

/* line 1001, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-section-title {
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
}

/* line 1010, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-item {
  border-bottom: 1px solid var(--faq-border);
}

/* line 1014, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

/* line 1027, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--body-font);
}

/* line 1034, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--faq-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

/* line 1044, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-icon svg {
  transition: transform 0.3s;
}

/* line 1045, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-icon.open {
  background: var(--faq-icon-active);
}

/* line 1047, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-icon.open svg {
  transform: rotate(180deg);
}

/* line 1047, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-icon.open svg path {
  stroke: #fff;
}

/* line 1051, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-faq-answer {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body-text);
  padding-bottom: 20px;
  display: none;
}

/* ---- CTA STRIP ---- */
/* line 1060, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-section {
  background: var(--cta-bg);
  padding: 100px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* line 1066, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-section .cp-cta-btn {
  color: var(--accent);
}

/* line 1069, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.07);
}

/* line 1077, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

/* line 1084, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

/* line 1091, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-rule {
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--dark);
  opacity: 0.3;
}

/* line 1099, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.55;
  font-family: var(--body-font);
}

/* line 1109, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-headline {
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  line-height: 1.0;
  margin-bottom: 20px;
}

/* line 1120, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-sub {
  color: rgba(0, 0, 0, 0.55);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 44px;
  max-width: 500px;
  font-family: var(--body-font);
}

/* line 1129, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-btn {
  display: inline-block;
  background: var(--cp-btn-bg);
  color: var(--accent);
  padding: 16px 48px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--body-font);
  text-decoration: none;
  transition: color 0.2s;
}

/* line 1140, app/assets/stylesheets/customers/clean_pro/_home.scss */
.cp-cta-btn:hover {
  color: var(--accent-bright);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  /* Hero */
  /* line 1147, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero {
    height: auto;
    min-height: auto;
  }
  /* line 1148, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-content {
    padding: 56px 20px 52px;
  }
  /* line 1149, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-headline {
    font-size: clamp(36px, 11vw, 52px);
    margin-bottom: 12px;
  }
  /* line 1150, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-tagline {
    font-size: 15px;
    margin-bottom: 24px;
  }
  /* line 1151, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-date-bar {
    max-width: 100%;
    flex-direction: column;
    padding: 14px;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  /* line 1159, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-date-label {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }
  /* line 1160, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-date-hint {
    padding: 0 0 2px;
  }
  /* line 1161, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-date-bar input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 7px;
    padding: 0 12px;
    height: 48px;
    font-size: 16px;
  }
  /* line 1169, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-cta-btn {
    width: 100%;
    height: 48px;
    justify-content: center;
    border-radius: 7px;
    font-size: 13px;
  }
  /* line 1176, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-hero-dots {
    bottom: 16px;
  }
  /* Category section — horizontal scroll strip */
  /* line 1179, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-section {
    padding: 32px 0 28px;
  }
  /* line 1180, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-header {
    padding: 0 16px;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  /* line 1186, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-header > div:first-child {
    flex: 1;
    min-width: 0;
  }
  /* line 1187, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-header h2 {
    font-size: clamp(22px, 6vw, 28px);
  }
  /* line 1188, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-count-label {
    display: none;
  }
  /* All modes collapse to scroll strip */
  /* line 1191, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-container,
.cp-cats-mode-b .cp-container {
    padding: 0;
  }
  /* line 1194, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cats-grid,
.cp-cats-mode-b .cp-cats-grid {
    display: flex !important;
    gap: 10px;
    padding: 0 16px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    height: auto !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
  }
  /* line 1207, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cats-grid::-webkit-scrollbar,
.cp-cats-mode-b .cp-cats-grid::-webkit-scrollbar {
    display: none;
  }
  /* line 1210, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cat-hero,
.cp-cats-mode-a .cp-cat-small,
.cp-cats-mode-b .cp-cat-hero,
.cp-cats-mode-b .cp-cat-small {
    flex: 0 0 150px !important;
    width: 150px !important;
    height: 150px !important;
    min-height: unset !important;
    border-radius: 10px;
    scroll-snap-align: start;
    grid-row: unset !important;
  }
  /* Mode A small cards wrapper — undo the sub-grid */
  /* line 1223, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cats-grid > div[style] {
    display: contents !important;
  }
  /* line 1226, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cat-body,
.cp-cats-mode-b .cp-cat-body {
    padding: 12px 14px 14px;
  }
  /* line 1228, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cat-num,
.cp-cats-mode-b .cp-cat-num,
.cp-cats-mode-c .cp-cat-num {
    display: none;
  }
  /* line 1231, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cat-name,
.cp-cats-mode-b .cp-cat-name {
    font-size: 14px;
  }
  /* line 1233, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cat-count,
.cp-cats-mode-b .cp-cat-count {
    font-size: 9px;
    margin-bottom: 4px;
  }
  /* line 1235, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cat-arrow-btn,
.cp-cats-mode-b .cp-cat-arrow-btn {
    display: none;
  }
  /* line 1237, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-a .cp-cat-bar,
.cp-cats-mode-b .cp-cat-bar {
    display: none;
  }
  /* Mode C mobile — collapse into single-row horizontal scroll */
  /* line 1241, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cats-scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 0 16px 4px;
    height: 150px;
    gap: 10px;
  }
  /* line 1250, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cats-scroll-wrap::-webkit-scrollbar {
    display: none;
  }
  /* Hero col — 150×150 tile */
  /* line 1253, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col {
    flex: 0 0 150px;
    height: 150px;
  }
  /* line 1256, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col .cp-cat-card {
    height: 150px !important;
    border-radius: 10px !important;
  }
  /* line 1260, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col .cp-cat-body {
    padding: 12px 14px 14px;
  }
  /* line 1261, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col .cp-cat-bar {
    display: none;
  }
  /* line 1262, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col .cp-cat-num {
    display: none;
  }
  /* line 1263, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col .cp-cat-arrow-btn {
    display: none;
  }
  /* line 1264, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col .cp-cat-name {
    font-size: 14px;
  }
  /* line 1265, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-hero-col .cp-cat-count {
    font-size: 9px;
    margin-bottom: 4px;
  }
  /* Track wrap — let parent handle scroll */
  /* line 1268, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cats-track-wrap {
    flex: none;
    overflow: visible;
    height: 150px;
  }
  /* line 1273, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cats-track {
    height: 150px;
    overflow-x: visible;
  }
  /* Flatten 2-row columns into direct flex children */
  /* line 1278, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cats-col {
    display: contents;
  }
  /* line 1281, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-small {
    flex: 0 0 150px !important;
    width: 150px !important;
    height: 150px !important;
    scroll-snap-align: start;
    border-radius: 10px;
  }
  /* line 1287, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-small .cp-cat-name {
    font-size: 14px;
  }
  /* line 1288, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-small .cp-cat-body {
    padding: 12px 14px 14px;
  }
  /* line 1289, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-small .cp-cat-bar {
    display: none;
  }
  /* line 1290, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-mode-c .cp-cat-small .cp-cat-num {
    display: none;
  }
  /* line 1292, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-dots {
    display: none;
  }
  /* Featured Rentals */
  /* line 1295, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-section {
    padding: 32px 0 40px;
  }
  /* line 1296, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-hero-card {
    aspect-ratio: unset;
    height: clamp(180px, 46vw, 230px);
  }
  /* line 1297, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-hero-body {
    width: 100%;
    text-align: left;
    padding: 16px 18px 18px;
  }
  /* line 1298, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-hero-cat {
    display: none;
  }
  /* line 1299, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-hero-name {
    font-size: 18px;
  }
  /* line 1300, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-hero-price {
    font-size: 22px;
  }
  /* line 1301, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-hero-price-row {
    justify-content: space-between;
  }
  /* line 1302, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-hero-card .cp-book-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
  /* line 1306, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-shelf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
  }
  /* line 1312, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-shelf-body {
    padding: 12px;
  }
  /* line 1313, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-shelf-name {
    font-size: 13px;
  }
  /* line 1314, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-shelf-price {
    font-size: 13px;
  }
  /* line 1315, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-shelf-row {
    column-gap: 6px;
  }
  /* line 1316, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-shelf-grid .cp-book-btn-sm {
    padding: 6px 8px;
    font-size: 9px;
  }
  /* line 1321, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-shelf-grid .cp-book-btn-sm svg {
    display: none;
  }
  /* Gallery — 2-col grid: banner + 2 cells */
  /* line 1324, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-gallery-header {
    padding: 32px 16px 14px;
  }
  /* line 1325, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-gallery-heading {
    font-size: clamp(22px, 6vw, 28px);
  }
  /* line 1326, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  /* line 1331, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-gallery-photo {
    height: clamp(120px, 30vw, 160px);
    flex: unset;
  }
  /* line 1335, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-gallery-photo:first-child {
    grid-column: 1 / -1;
    height: clamp(160px, 40vw, 200px);
  }
  /* line 1339, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-gallery-accent-bar {
    height: 3px;
  }
  /* Testimonials */
  /* line 1342, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-section {
    padding: 40px 16px;
  }
  /* line 1343, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  /* line 1350, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-header h2 {
    font-size: clamp(22px, 6vw, 28px);
  }
  /* line 1351, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-header-left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  /* line 1356, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-accent-bar {
    display: none;
  }
  /* Featured card full-width; hide second card from top row (it appears in the 2-col grid below) */
  /* line 1359, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-top {
    grid-template-columns: 1fr;
  }
  /* line 1360, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-top > div:not(.cp-review-card-feat) {
    display: none;
  }
  /* 2-col grid: cp-mob-review (review[1]) + first normal card (review[2]) */
  /* line 1363, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-mob-review {
    display: block;
  }
  /* line 1364, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  /* Hide the 3rd child onward (review[3], review[4]) — keep only review[1] + review[2] */
  /* line 1370, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-bottom > div:nth-child(n+3) {
    display: none;
  }
  /* line 1372, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-bottom .cp-review-card {
    padding: 16px;
  }
  /* line 1373, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-reviews-top .cp-review-card-feat {
    padding: 22px;
  }
  /* FAQ */
  /* line 1376, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-section {
    padding: 40px 0;
  }
  /* line 1377, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-inner {
    padding: 0 16px;
  }
  /* line 1378, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-header {
    text-align: left;
    margin-bottom: 28px;
  }
  /* line 1379, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-eyebrow-wrap {
    justify-content: flex-start;
  }
  /* line 1380, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-rule {
    display: none;
  }
  /* line 1381, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-section-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  /* line 1382, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-q {
    font-size: 15px;
  }
  /* line 1383, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-faq-answer {
    font-size: 14px;
  }
  /* CTA strip */
  /* line 1386, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cta-section {
    padding: 48px 20px;
  }
  /* line 1387, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cta-headline {
    font-size: clamp(26px, 7vw, 34px);
    margin-bottom: 14px;
  }
  /* line 1388, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cta-eyebrow-wrap {
    margin-bottom: 16px;
  }
  /* line 1389, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cta-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }
  /* line 1390, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cta-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
  }
  /* Fan Favorites before Browse Categories on mobile (Rule 8) */
  /* line 1393, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-feat-wrap {
    display: flex;
    flex-direction: column;
  }
  /* line 1394, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-feat-section {
    order: 1;
  }
  /* line 1395, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cats-section {
    order: 2;
  }
}

@media (max-width: 640px) {
  /* CTA rings — smaller on mobile */
  /* line 1400, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cta-section .cp-cta-ring:first-child {
    top: -60px !important;
    right: -50px !important;
    width: 200px !important;
    height: 200px !important;
    border-width: 30px !important;
  }
  /* line 1404, app/assets/stylesheets/customers/clean_pro/_home.scss */
  .cp-cta-section .cp-cta-ring:nth-child(2) {
    bottom: -70px !important;
    left: -60px !important;
    width: 240px !important;
    height: 240px !important;
    border-width: 36px !important;
  }
}

/* =====================================================================
   POLISHED PRO — PRODUCTS (listing, card, detail, booking panel)
   ===================================================================== */
/* ---- BROWSE INNER HERO ---- */
/* line 6, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* line 14, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inner-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

/* line 19, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inner-hero-eyebrow span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* line 27, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inner-hero-eyebrow p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--body-font);
}

/* line 37, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* line 50, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  font-family: var(--body-font);
  letter-spacing: 0.04em;
}

/* line 59, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--body-font);
  cursor: pointer;
  min-width: 120px;
}

/* line 69, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* line 72, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-cta {
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: 5px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--body-font);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

/* line 84, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-cta:hover {
  opacity: 0.88;
}

/* line 87, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-clear {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  white-space: nowrap;
}

/* line 93, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-date-clear:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---- BROWSE TWO-PANEL ---- */
/* line 97, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-wrap {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 0 64px;
  gap: 0;
}

/* Sidebar */
/* line 106, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar {
  flex: 0 0 220px;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
  scrollbar-width: none;
}

/* line 115, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-inner {
  background: var(--ground-dark);
  min-height: 100%;
  padding: 24px 16px;
}

/* line 121, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.35;
  margin-bottom: 12px;
  padding: 0 8px;
  font-family: var(--body-font);
}

/* line 133, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.75;
  font-family: var(--body-font);
  text-align: left;
  transition: background 0.15s, opacity 0.15s;
  margin-bottom: 2px;
  text-decoration: none;
}

/* line 152, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  opacity: 1;
}

/* line 153, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-btn.active {
  background: var(--accent);
  color: #fff;
  opacity: 1;
  font-weight: 800;
}

/* line 161, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-btn--all {
  margin-bottom: 16px;
}

/* line 165, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  opacity: 0.4;
  background: rgba(0, 0, 0, 0.07);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

/* line 174, app/assets/stylesheets/customers/clean_pro/_products.scss */
.active .cp-sidebar-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  opacity: 1;
}

/* line 177, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Browse main */
/* line 184, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-main {
  flex: 1;
  min-width: 0;
  padding: 24px;
}

/* Price updated label */
/* line 187, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-price-updated-msg {
  display: none;
  color: #e53e3e;
  font-weight: 700;
  font-size: 11px;
}

/* Browse grid */
/* line 190, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-browse-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Product card */
/* line 197, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

/* line 208, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* line 211, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-bundle-icon {
  display: inline-block;
  height: 28px;
  width: 28px;
  vertical-align: middle;
  margin-left: 6px;
}

/* line 213, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--ground-dark);
}

/* line 218, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

/* line 225, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-card:hover .cp-prod-img-wrap img {
  transform: scale(1.04);
}

/* line 227, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22) 0%, transparent 52%);
  pointer-events: none;
}

/* line 234, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-accent-bar {
  width: 100%;
  height: 4px;
  display: block;
  flex-shrink: 0;
  background: var(--accent);
}

/* line 242, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 261, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-body {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* line 268, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-name {
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  text-transform: var(--headline-case);
  letter-spacing: var(--headline-spacing);
  line-height: 1.2;
  margin-bottom: 8px;
}

/* line 279, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
}

/* line 286, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-price {
  font-size: 26px;
  font-weight: 900;
  font-family: var(--display-font);
  color: var(--dark);
}

/* line 293, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-per-day {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.45;
  flex-shrink: 0;
}

/* line 302, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-cta-wrap {
  padding: 12px 16px 16px;
}

/* line 306, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cp-btn-bg);
  color: var(--accent);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s;
  width: 100%;
  font-family: var(--body-font);
  overflow: hidden;
}

/* line 322, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-btn:hover {
  color: var(--accent-bright);
}

/* line 325, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-prod-btn-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* ---- PRODUCT DETAIL ---- */
/* line 333, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 720px) 400px;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 28px 80px;
}

/* line 342, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-main-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

/* line 350, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-main-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 353, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-thumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

/* line 359, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-thumb {
  width: 80px;
  height: 62px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  opacity: 0.65;
  overflow: hidden;
  padding: 0;
  background: none;
  flex-shrink: 0;
}

/* line 371, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-thumb.active, .cp-detail-thumb:hover {
  border-color: var(--accent);
  opacity: 1;
}

/* line 372, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 375, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-cat-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--accent);
  margin-bottom: 14px;
}

/* line 388, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-name {
  font-family: var(--display-font);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 12px;
}

/* line 399, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-price {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 900;
  font-family: var(--display-font);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

/* line 408, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-specs {
  border-radius: 10px;
  border: 1px solid var(--ground-dark);
  overflow: hidden;
  margin-bottom: 20px;
}

/* line 415, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  border-bottom: 1px solid var(--ground-dark);
  font-size: 13px;
}

/* line 422, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-spec-row:last-child {
  border-bottom: none;
}

/* line 423, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-spec-row:nth-child(even) {
  background: rgba(0, 0, 0, 0.025);
}

/* line 426, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-spec-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
}

/* line 436, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-spec-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* line 447, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-spec-val {
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
}

/* line 453, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-long-desc {
  border-radius: 10px;
  padding: 22px 26px;
  background: var(--ground-warm);
  border-left: 4px solid var(--accent);
  margin-top: 24px;
}

/* line 459, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-long-desc p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 10px;
}

/* line 464, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-long-desc p:last-child {
  margin-bottom: 0;
}

/* line 466, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-long-desc strong {
  font-weight: 700;
  color: var(--dark);
}

/* Booking panel */
/* line 470, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-panel {
  border-radius: 12px;
  border: 1px solid var(--booking-panel-border-color);
  border-top: 3px solid var(--accent);
  background: var(--card);
  overflow: hidden;
  position: sticky;
  top: 88px;
}

/* line 480, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-body {
  padding: 24px;
}

/* line 482, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* line 490, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

/* line 497, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 499, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
}

/* line 507, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-input {
  border: 1.5px solid var(--ground-dark);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

/* line 517, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-input:focus {
  border-color: var(--accent);
}

/* line 520, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-cta {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  background: var(--cp-btn-bg);
  color: var(--accent);
  transition: color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  overflow: hidden;
  white-space: nowrap;
}

/* line 538, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-cta:hover {
  color: var(--accent-bright);
  transform: translateY(-1px);
}

/* line 541, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-cta-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* line 548, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 16px;
}

/* line 556, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
}

/* line 562, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ground-dark);
  border-radius: var(--r-pill);
  overflow: visible;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
}

/* line 572, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-ctrl .quantity__minus {
  border-radius: var(--r-pill) 0 0 var(--r-pill);
}

/* line 573, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-ctrl .quantity__plus {
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
}

/* line 576, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-btn {
  padding: 8px 14px;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s;
  flex-shrink: 0;
}

/* line 586, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-btn:hover:not(.is-disabled) {
  background: var(--ground-dark);
}

/* line 587, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* line 590, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-btn[data-tooltip] {
  position: relative;
}

/* line 591, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-btn[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  left: auto;
  transform: none;
  background: var(--dark);
  color: var(--ground);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 200;
}

/* line 609, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-qty-val {
  width: 48px;
  padding: 8px 4px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--ground-dark);
  color: var(--dark);
  flex-shrink: 0;
  background: #fff;
  outline: none;
  appearance: none;
}

/* line 623, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-dur-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* line 630, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-dur-radio {
  border: 1.5px solid var(--ground-dark);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
  color: var(--body-text);
}

/* line 642, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-dur-radio input {
  display: none;
}

/* line 643, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-dur-radio.on {
  background: var(--cp-btn-bg);
  color: var(--accent);
  border-color: var(--cp-btn-bg);
}

/* line 644, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-dur-radio:hover:not(.on) {
  border-color: var(--accent);
  color: var(--dark);
}

/* ---- DETAIL STICKY BAR ---- */
/* line 648, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--ground-dark);
  padding: 10px 18px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  justify-content: space-between;
  align-items: center;
  z-index: 997;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  gap: 14px;
}

/* line 663, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-sticky-bar.show {
  display: flex;
}

/* line 665, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.modal-open .cp-detail-sticky-bar {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

/* line 667, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-sticky-info {
  min-width: 0;
  flex: 1;
}

/* line 669, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-sticky-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 678, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-sticky-price {
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
}

/* line 686, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-sticky-btn {
  background: var(--cp-btn-bg);
  color: var(--accent);
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  flex-shrink: 0;
  overflow: hidden;
  max-width: 160px;
  white-space: nowrap;
  transition: color 0.2s;
}

/* line 701, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-sticky-btn:hover {
  color: var(--accent-bright);
}

/* Add-ons grid (detail page) */
/* line 705, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addons-section {
  padding: 56px 28px 64px;
  border-top: 1px solid var(--ground-dark);
  background: var(--ground-warm);
}

/* line 711, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addons-header {
  max-width: 1280px;
  margin: 0 auto 32px;
}

/* line 716, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addons-heading {
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  color: var(--dark);
  margin-top: 8px;
}

/* line 725, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 24px auto 0;
}

/* line 733, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ground-dark);
  background: var(--card);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* line 741, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* line 744, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-img {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
}

/* line 750, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-body {
  padding: 14px 16px 16px;
}

/* line 752, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 4px;
  max-width: 50%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 765, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 777, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* line 784, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
}

/* line 786, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-btn {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border: none;
  cursor: pointer;
  background: var(--cp-btn-bg);
  color: var(--accent) !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
  text-decoration: none;
  display: inline-block;
}

/* line 801, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-addon-btn:hover {
  color: var(--accent-bright) !important;
}

/* ---- BOOKING PANEL DETAIL ELEMENTS ---- */
/* line 805, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-fee {
  font-size: 12px;
  color: var(--body-text);
  background: var(--ground-dark);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* line 813, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-fee strong {
  color: var(--dark);
  font-weight: 700;
}

/* line 816, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-duration {
  font-size: 12px;
  color: var(--body-text);
  margin: 10px 0;
  line-height: 1.6;
}

/* line 821, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-duration .font-bold {
  font-weight: 700;
  color: var(--dark);
}

/* line 824, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-readonly {
  background: var(--ground-dark);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text);
  border: 1.5px solid var(--ground-dark);
}

/* line 834, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-dur-section {
  margin-bottom: 14px;
}

/* line 836, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-dur-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 8px;
}

/* line 846, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-variant-section {
  margin-bottom: 14px;
}

/* line 848, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-variant-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 6px;
}

/* line 858, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-variant-select {
  width: 100%;
  border: 1.5px solid var(--ground-dark);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  outline: none;
  font-family: var(--body-font);
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.15s;
}

/* line 871, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-variant-select:focus {
  border-color: var(--accent);
}

/* line 874, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-variant-price-msg {
  font-size: 12px;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 8px;
}

/* line 881, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-items {
  border: 1px solid var(--ground-dark);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

/* line 888, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-text);
  padding: 12px 14px;
  border-bottom: 1px solid var(--ground-dark);
  background: var(--ground-dark);
}

/* line 900, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ground-dark);
}

/* line 907, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-item:last-child {
  border-bottom: none;
}

/* line 910, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-thumb {
  width: 52px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
}

/* line 915, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 918, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* line 925, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-included-select-display {
  font-size: 11px;
  color: var(--body-text);
  margin-top: 3px;
}

/* line 931, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-choose-variant-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  border: 1.5px solid var(--accent);
  background: none;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

/* line 942, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-choose-variant-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* line 945, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inline-dropdown-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ground-dark);
}

/* line 952, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inline-dropdown-item:last-child {
  border-bottom: none;
}

/* line 955, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inline-dropdown-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

/* line 961, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inline-dropdown-qty {
  font-size: 11px;
  font-weight: 700;
  color: var(--body-text);
}

/* line 967, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-inline-dropdown-select {
  width: 100%;
  margin-top: 4px;
  border: 1.5px solid var(--ground-dark);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  background: #fff;
  font-family: var(--body-font);
  color: var(--dark);
  outline: none;
  cursor: pointer;
}

/* Overnight add-on card */
/* line 983, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-card {
  border: 1.5px solid var(--ground-dark);
  border-radius: 10px;
  padding: 14px;
  margin-top: 14px;
}

/* line 988, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-card.hidden {
  display: none;
}

/* line 991, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

/* line 998, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-checkbox {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* line 1000, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
  cursor: pointer;
}

/* line 1008, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

/* line 1014, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-desc {
  font-size: 12px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* line 1021, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-pickup {
  font-size: 11px;
  color: var(--body-text);
  margin-bottom: 8px;
}

/* line 1023, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* line 1025, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-overnight-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: var(--ground-dark);
  color: var(--body-text);
}

/* Specs "ITEM DETAILS" header */
/* line 1035, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-specs-header {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.4;
  padding: 12px 18px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Detail spec table */
/* line 1047, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-detail-spec--full {
  grid-column: 1 / -1;
}

/* "Starting at" row in booking panel */
/* line 1050, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-booking-starting-at {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ground-dark);
  padding: 12px 0;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 1060, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-starting-at-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-text);
}

/* line 1068, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-panel-price {
  font-size: 20px;
  font-weight: 900;
  font-family: var(--display-font);
  color: var(--accent);
}

/* ---- TIME PICKER DROPDOWN ---- */
/* line 1076, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-wrap {
  position: relative;
  width: 100%;
}

/* line 1081, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--ground-dark);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--body-font);
  transition: border-color 0.15s;
}

/* line 1095, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-trigger:focus, .bb-time-wrap.open .bb-time-trigger {
  border-color: var(--accent);
  outline: none;
}

/* line 1098, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-trigger-left {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* line 1104, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-clock {
  color: var(--body-text);
  flex-shrink: 0;
}

/* line 1106, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-trigger-label {
  color: var(--dark);
  font-weight: 600;
}

/* line 1111, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-chevron {
  color: var(--body-text);
  flex-shrink: 0;
  transition: transform 0.2s;
}

/* line 1115, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-wrap.open .bb-time-chevron {
  transform: rotate(180deg);
}

/* line 1118, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border: 1.5px solid var(--ground-dark);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* line 1132, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-wrap.open .bb-time-panel {
  display: block;
}

/* line 1135, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-list {
  list-style: none;
  margin: 0;
  padding: 4px;
}

/* line 1141, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

/* line 1152, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-item:hover {
  background: var(--ground-dark);
}

/* line 1153, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-item.bb-selected {
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
}

/* line 1156, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-fee-badge {
  font-size: 10px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.07);
  padding: 2px 7px;
  border-radius: var(--r-pill);
  color: var(--body-text);
  white-space: nowrap;
}

/* line 1164, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-time-item.bb-selected .bb-fee-badge {
  background: rgba(0, 0, 0, 0.12);
  color: var(--dark);
}

/* ---- ADDITIONAL FEES NOTICE ---- */
/* line 1168, app/assets/stylesheets/customers/clean_pro/_products.scss */
#additional-fees:not(:empty) {
  background: var(--ground-dark);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

/* line 1175, app/assets/stylesheets/customers/clean_pro/_products.scss */
#additional-fees:not(:empty) p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  margin-top: 0;
}

/* line 1185, app/assets/stylesheets/customers/clean_pro/_products.scss */
#additional-fees:not(:empty) .bb-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* line 1193, app/assets/stylesheets/customers/clean_pro/_products.scss */
#additional-fees:not(:empty) .bb-fee-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 1196, app/assets/stylesheets/customers/clean_pro/_products.scss */
#additional-fees:not(:empty) .bb-fee-row-amount {
  font-weight: 900;
  flex-shrink: 0;
  color: var(--accent);
}

/* ---- BB VARIANT MODAL ---- */
/* line 1204, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

/* line 1212, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-overlay.open {
  display: flex;
}

/* line 1215, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  width: 90%;
  max-width: 420px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

/* line 1227, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-title {
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

/* line 1235, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-sub {
  font-size: 13px;
  color: var(--body-text);
  margin-bottom: 18px;
}

/* line 1239, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-sub strong {
  color: var(--dark);
  font-weight: 700;
}

/* line 1242, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--body-text);
  line-height: 1;
  padding: 4px 6px;
}

/* line 1253, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-close:hover {
  color: var(--dark);
}

/* line 1256, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-variant-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 10px;
  border: 2px solid var(--ground-dark);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

/* line 1266, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-variant-option:hover {
  border-color: var(--accent);
}

/* line 1267, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-variant-option.selected {
  border-color: var(--accent);
  background: rgba(184, 212, 51, 0.08);
}

/* line 1268, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-variant-option input[type=radio] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  pointer-events: none;
}

/* line 1271, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-variant-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

/* line 1273, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-confirm {
  background: var(--cp-btn-bg);
  color: var(--accent);
  width: 100%;
  padding: 14px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: color 0.2s;
}

/* line 1285, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-modal-confirm:hover {
  color: var(--accent-bright);
}

/* ---- CP DATERANGEPICKER OVERRIDES ---- */
/* line 1289, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker {
  border: 2px solid var(--ground-dark);
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
  font-family: var(--body-font);
  padding: 8px;
}

/* line 1296, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker:before {
  border-bottom-color: var(--ground-dark);
}

/* line 1297, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker:after {
  border-bottom-color: #fff;
}

/* line 1298, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker .calendar-table {
  border: none;
  background: transparent;
}

/* line 1299, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker .calendar-table th,
body.cp-template .daterangepicker .calendar-table td {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
}

/* line 1304, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker .calendar-table th {
  color: var(--body-text);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* line 1308, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.available:hover,
body.cp-template .daterangepicker th.available:hover {
  background: rgba(184, 212, 51, 0.12);
  color: var(--dark);
  border-color: transparent;
}

/* line 1312, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.off,
body.cp-template .daterangepicker td.off.in-range,
body.cp-template .daterangepicker td.off.start-date,
body.cp-template .daterangepicker td.off.end-date {
  color: var(--body-text);
  background: transparent;
}

/* line 1318, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.active,
body.cp-template .daterangepicker td.active:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: transparent;
}

/* line 1322, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.in-range {
  background: rgba(184, 212, 51, 0.12);
  color: var(--dark);
  border-color: transparent;
  border-radius: 0;
}

/* line 1325, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.start-date {
  border-radius: 8px 0 0 8px;
}

/* line 1326, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.end-date {
  border-radius: 0 8px 8px 0;
}

/* line 1327, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.start-date.end-date {
  border-radius: 8px;
}

/* line 1328, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.today:not(.active) {
  font-weight: 900;
  color: var(--accent);
}

/* line 1329, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker td.disabled,
body.cp-template .daterangepicker td.off.disabled {
  text-decoration: line-through;
  color: var(--body-text);
}

/* line 1331, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker .prev span,
body.cp-template .daterangepicker .next span {
  border-color: var(--accent);
}

/* line 1333, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker select.monthselect,
body.cp-template .daterangepicker select.yearselect {
  border: 1.5px solid var(--ground-dark);
  border-radius: 7px;
  padding: 4px 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--body-font);
  background: #fff;
  cursor: pointer;
}

/* line 1339, app/assets/stylesheets/customers/clean_pro/_products.scss */
body.cp-template .daterangepicker select.monthselect:focus,
body.cp-template .daterangepicker select.yearselect:focus {
  border-color: var(--accent);
  outline: none;
}

/* ---- COLLAPSIBLE LONG DESCRIPTION — base (toggle injected by JS, hidden at desktop) ---- */
/* line 1343, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-long-desc-toggle {
  display: none;
}

/* Qty error — drops to its own line so it doesn't push the ctrl off-center */
/* line 1346, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-error-quantity {
  flex-basis: 100%;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
}

/* Required star */
/* line 1354, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-required-star {
  color: var(--accent);
  font-weight: 900;
}

/* No durations note */
/* line 1357, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-no-durations-note {
  font-size: 12px;
  color: var(--body-text);
  font-style: italic;
  margin: 8px 0;
}

/* Long desc block title */
/* line 1360, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-long-desc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 12px;
}

/* Visibility classes used by booking panel JS */
/* line 1370, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-visible-date {
  display: block;
}

/* line 1371, app/assets/stylesheets/customers/clean_pro/_products.scss */
.bb-visible-time {
  display: block;
}

/* ---- EVENT BAR (legacy — kept for potential reuse) ---- */
/* line 1374, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-event-bar {
  background: var(--card);
  border: 1px solid var(--ground-dark);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 1386, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-event-bar-cta,
.cp-event-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cp-btn-bg);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--body-font);
  transition: color 0.2s;
  white-space: nowrap;
}

/* line 1403, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-event-bar-cta:hover,
.cp-event-bar-btn:hover {
  color: var(--accent-bright);
}

/* line 1406, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-event-bar-clear {
  font-size: 12px;
  font-weight: 600;
  color: var(--body-text);
  text-decoration: none;
  white-space: nowrap;
}

/* line 1412, app/assets/stylesheets/customers/clean_pro/_products.scss */
.cp-event-bar-clear:hover {
  color: var(--dark);
  text-decoration: underline;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1280px) {
  /* line 1417, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 980px) {
  /* Browse sidebar → horizontal chip strip */
  /* line 1422, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-wrap {
    flex-direction: column;
  }
  /* line 1423, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-sidebar {
    flex: none;
    position: static;
    height: auto;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }
  /* line 1432, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-sidebar-inner {
    display: flex;
    flex-direction: row;
    min-height: auto;
    padding: 12px 16px;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
  }
  /* line 1440, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-sidebar-inner > .cp-sidebar-heading {
    display: none;
  }
  /* line 1442, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-sidebar-cats {
    flex-direction: row;
    gap: 6px;
  }
  /* line 1443, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-sidebar-btn {
    flex: 0 0 auto;
    width: auto;
    border-radius: var(--r-pill);
    padding: 7px 14px;
    white-space: nowrap;
    margin-bottom: 0;
    opacity: 1;
  }
  /* line 1452, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-sidebar-btn--all {
    margin-bottom: 0;
  }
  /* line 1453, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-main {
    padding: 16px;
  }
  /* line 1454, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  /* Product detail → single column */
  /* line 1457, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* line 1458, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-panel {
    position: relative;
    top: auto;
  }
  /* line 1459, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* line 1463, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  /* line 1468, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-hero-content .cp-inner-hero-eyebrow {
    justify-content: center;
  }
  /* line 1469, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-hero-content .cp-inner-hero-h {
    text-align: center;
  }
  /* line 1470, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-date-panel {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 14px;
    gap: 8px;
  }
  /* line 1477, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-date-label {
    text-align: center;
  }
  /* line 1478, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-date-input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 7px;
    padding: 12px 14px;
    font-size: 15px;
    min-width: 0;
  }
  /* line 1486, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-date-cta {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    border-radius: 7px;
    text-align: center;
  }
  /* line 1493, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  /* line 1494, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-prod-img-wrap {
    aspect-ratio: 4/3;
  }
  /* line 1495, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-prod-name {
    font-size: 14px;
  }
  /* line 1496, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-prod-cta-wrap {
    padding: 8px 12px 12px;
  }
}

/* ---- MOBILE ≤ 640px ---- */
@media (max-width: 640px) {
  /* Product detail layout */
  /* line 1503, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-wrap {
    padding: 16px 16px 100px;
    gap: 16px;
  }
  /* line 1507, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-main-img {
    border-radius: 10px;
    margin-bottom: 10px;
  }
  /* line 1511, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-thumbs {
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  /* line 1517, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-thumbs::-webkit-scrollbar {
    display: none;
  }
  /* line 1519, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-thumb {
    width: 62px;
    height: 48px;
    flex-shrink: 0;
  }
  /* line 1524, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-cat-pill {
    font-size: 9px;
    padding: 4px 12px;
  }
  /* line 1528, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-name {
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 700;
  }
  /* line 1532, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-price {
    font-size: clamp(30px, 8vw, 40px);
  }
  /* line 1535, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-specs {
    margin-top: 14px;
  }
  /* line 1538, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-spec-row {
    padding: 10px 16px;
  }
  /* Long-desc block */
  /* line 1543, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-long-desc {
    padding: 18px;
    margin-top: 20px;
  }
  /* line 1547, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-long-desc-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  /* line 1551, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-long-desc.collapsed {
    max-height: 240px;
    overflow: hidden;
    position: relative;
  }
  /* line 1555, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-long-desc.collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(242, 237, 228, 0) 0%, rgba(242, 237, 228, 0.96) 80%);
    pointer-events: none;
    border-radius: 0 0 10px 10px;
  }
  /* line 1565, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-long-desc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin: 12px 0 0;
    padding: 11px;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--r-pill);
    color: rgba(0, 0, 0, 0.65);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    letter-spacing: 0.02em;
    font-family: var(--body-font);
    transition: all 0.15s;
  }
  /* line 1583, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-long-desc-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  /* Booking panel */
  /* line 1587, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-panel {
    border-radius: 10px;
  }
  /* line 1588, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-body {
    padding: 18px;
  }
  /* line 1589, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
  /* line 1590, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-row {
    gap: 8px;
    margin-bottom: 8px;
  }
  /* line 1591, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-input {
    padding: 11px 12px;
  }
  /* line 1592, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-fee {
    font-size: 12px;
    padding: 9px 12px;
  }
  /* line 1593, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-duration {
    font-size: 12px;
  }
  /* line 1594, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-dur-radio {
    padding: 0 14px;
    font-size: 12px;
    height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* line 1601, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-qty-btn {
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  /* line 1610, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-qty-val {
    padding: 0 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  /* line 1616, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-overnight-card {
    padding: 12px;
  }
  /* line 1617, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-overnight-desc,
.cp-overnight-pickup,
.cp-overnight-tags {
    margin-left: 0;
  }
  /* line 1620, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-variant-price-msg {
    font-size: 13px;
  }
  /* line 1621, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-included-item,
.cp-inline-dropdown-item {
    padding: 10px 12px;
  }
  /* line 1623, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-included-thumb {
    width: 32px;
    height: 32px;
  }
  /* line 1624, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-included-name,
.cp-inline-dropdown-name {
    font-size: 12px;
  }
  /* line 1626, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-choose-variant-btn {
    font-size: 11px;
    padding: 7px 12px;
  }
  /* Add-ons section */
  /* line 1629, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-addons-section {
    padding: 28px 16px 80px;
  }
  /* line 1630, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  /* line 1631, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-addon-img {
    aspect-ratio: 4/3;
  }
  /* line 1632, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-addon-body {
    padding: 12px 14px 14px;
  }
  /* line 1633, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-addon-btn {
    padding: 8px 14px;
    font-size: 11px;
  }
  /* iOS zoom prevention — inputs ≥ 16px to prevent auto-zoom on focus */
  /* line 1636, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-input,
.cp-variant-select,
.cp-inline-dropdown-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    font-size: 16px !important;
  }
  /* Tactile press feedback */
  /* line 1647, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-booking-cta:active,
.cp-prod-card:active,
.cp-detail-sticky-btn:active,
.cp-addon-btn:active {
    transform: scale(0.99);
    filter: brightness(0.97);
  }
}

/* ---- EXTRA SMALL ≤ 380px ---- */
@media (max-width: 380px) {
  /* line 1655, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-browse-grid {
    gap: 10px;
  }
  /* line 1656, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-name {
    font-size: 20px;
  }
  /* line 1657, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-price {
    font-size: 28px;
  }
  /* line 1658, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-detail-sticky-price {
    font-size: 17px;
  }
  /* line 1659, app/assets/stylesheets/customers/clean_pro/_products.scss */
  .cp-addons-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   POLISHED PRO — ABOUT PAGE
   ===================================================================== */
/* Inner hero row layout (eyebrow+h1 left, badge right) */
/* line 6, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-inner-hero-content--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ---- STORY SECTION ---- */
/* line 15, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 28px 80px;
}

/* Outer wrapper is position:relative so the accent corner can be absolute */
/* line 26, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-story-img {
  position: relative;
  padding-bottom: 16px;
}

/* line 31, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-story-img-inner {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
}

/* line 38, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-story-img-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Decorative accent corner — bleeds 16px outside bottom-right of image */
/* line 48, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-img-corner {
  position: absolute;
  bottom: 0;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background: var(--accent);
  z-index: 0;
}

/* line 59, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-h2 {
  font-family: var(--display-font);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 20px;
}

/* line 70, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-text);
}

/* line 74, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-body p {
  margin-bottom: 14px;
}

/* line 74, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-body p:last-child {
  margin-bottom: 0;
}

/* Story CTA buttons */
/* line 78, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* line 86, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--dark);
  color: var(--accent) !important;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

/* line 98, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-btn-primary:hover {
  background: var(--dark-mid);
  color: var(--accent-bright) !important;
}

/* line 101, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-btn-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

/* line 110, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-btn-link:hover {
  color: var(--accent) !important;
}

/* ---- TESTIMONIALS / VALUES STRIP ---- */
/* line 114, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-values {
  background: var(--ground-dark);
  padding: 72px 0;
}

/* line 119, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* line 125, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-values-header {
  text-align: center;
  margin-bottom: 48px;
}

/* line 128, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-values-header .cp-about-h2 {
  margin-bottom: 0;
}

/* Centered double-rule eyebrow used in values strip header */
/* line 132, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-eyebrow-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* line 140, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-eyebrow-rule {
  display: block;
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* line 149, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--body-font);
  white-space: nowrap;
}

/* line 159, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* line 165, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-review-card {
  background: var(--card);
  border-radius: 12px;
  padding: 24px 20px;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  height: 250px;
}

/* line 175, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* line 180, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-review-stars span {
  color: var(--accent);
  font-size: 14px;
}

/* line 183, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-review-body {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-text);
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* line 194, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-shrink: 0;
}

/* line 202, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display-font);
  flex-shrink: 0;
}

/* line 217, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-review-name {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* ---- FAQ SECTION ---- */
/* line 225, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-faq-section {
  padding: 72px 28px;
}

/* line 229, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-about-faq-inner {
  border-radius: 12px;
  padding: 40px 48px;
  background: var(--ground-dark);
  max-width: 1280px;
  margin: 0 auto;
}

/* ---- HERO GOOGLE REVIEWS BADGE ---- */
/* line 238, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-inner-hero-reviews-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  flex-shrink: 0;
}

/* line 250, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-badge-stars-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

/* line 257, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-badge-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
}

/* line 263, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-badge-rating {
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 900;
  color: var(--accent);
}

/* line 270, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-badge-count {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- CUSTOM CMS PAGE ---- */
/* line 278, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body {
  grid-template-columns: 1fr;
  align-items: start;
}

/* line 283, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* line 288, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body ul, .cp-custom-page-body .cp-about-body ol {
  margin: 0 0 14px 20px;
}

/* line 289, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body li {
  margin-bottom: 6px;
}

/* line 290, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body a {
  color: var(--dark);
  text-decoration: underline;
}

/* line 291, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body h2, .cp-custom-page-body .cp-about-body h3, .cp-custom-page-body .cp-about-body h4 {
  font-family: var(--display-font);
  color: var(--dark);
  margin: 24px 0 10px;
  line-height: 1.2;
}

/* line 297, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body h2 {
  font-size: 24px;
}

/* line 298, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body h3 {
  font-size: 19px;
}

/* line 299, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-body .cp-about-body h4 {
  font-size: 16px;
}

/* line 303, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-embed {
  margin-top: 32px;
}

/* line 305, app/assets/stylesheets/customers/clean_pro/_about.scss */
.cp-custom-page-embed iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 12px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  /* line 316, app/assets/stylesheets/customers/clean_pro/_about.scss */
  .cp-about-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* line 322, app/assets/stylesheets/customers/clean_pro/_about.scss */
  .cp-about-story {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 20px 64px;
  }
  /* line 327, app/assets/stylesheets/customers/clean_pro/_about.scss */
  .cp-about-faq-section {
    padding: 48px 20px;
  }
  /* line 330, app/assets/stylesheets/customers/clean_pro/_about.scss */
  .cp-about-faq-inner {
    padding: 28px 20px;
  }
  /* line 333, app/assets/stylesheets/customers/clean_pro/_about.scss */
  .cp-about-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* line 337, app/assets/stylesheets/customers/clean_pro/_about.scss */
  .cp-about-values {
    padding: 52px 0;
  }
  /* Badge stays inline beside the heading — flex-wrap handles the overflow */
  /* line 341, app/assets/stylesheets/customers/clean_pro/_about.scss */
  .cp-inner-hero-content--row {
    gap: 16px;
  }
}

/* =====================================================================
   POLISHED PRO — CONTACT PAGE
   ===================================================================== */
/* Centered max-width container */
/* line 6, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 28px 96px;
}

/* 2-col grid: left info (1fr) smaller, right form (1.4fr) larger */
/* line 13, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* ── LEFT PANEL ── */
/* line 21, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-left {
  background: var(--dark);
  color: var(--ground);
  border-radius: 12px;
  padding: 48px 40px;
  position: sticky;
  top: 90px;
}

/* line 30, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-left-eyebrow-wrap {
  margin-bottom: 28px;
}

/* ── CONTACT DETAIL ROWS ── */
/* line 35, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 43, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-detail--align-top {
  align-items: flex-start;
}

/* Icon boxes */
/* line 48, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 58, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-icon--phone {
  background: var(--accent);
  color: #fff;
}

/* line 63, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-icon--info {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* line 68, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-icon--mt {
  margin-top: 2px;
}

/* Detail label */
/* line 73, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-text);
  opacity: 0.45;
  margin-bottom: 4px;
}

/* Phone value — accent, display font, large */
/* line 84, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-phone-val {
  display: block;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}

/* line 92, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-phone-val:hover {
  opacity: 0.8;
}

/* Email value — ground color, body font */
/* line 96, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-email-val {
  display: block;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 800;
  color: var(--ground);
  text-decoration: none;
  transition: opacity 0.15s;
}

/* line 104, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-email-val:hover {
  opacity: 0.8;
}

/* Address value — ground color, body font, readable line-height */
/* line 108, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-address-val {
  display: block;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--ground);
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.15s;
}

/* line 117, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-address-val:hover {
  opacity: 0.8;
}

/* Google reviews badge on contact left panel */
/* line 121, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-google-reviews {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* line 127, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-gr-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
}

/* line 137, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-gr-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

/* line 144, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-gr-rating {
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

/* line 152, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-gr-count {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

/* ── RIGHT PANEL (FORM) ── */
/* line 159, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-right {
  background: var(--card);
  border-radius: 12px;
  padding: 48px 40px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

/* line 166, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-right-h {
  font-family: var(--display-font);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  margin-bottom: 6px;
}

/* line 176, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-right-sub {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 32px;
}

/* ── FORM ELEMENTS ── */
/* line 185, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-form-group {
  margin-bottom: 14px;
}

/* line 189, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.55;
  margin-bottom: 5px;
}

/* line 200, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-req {
  color: #dc2626;
  opacity: 1;
}

/* line 205, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-input {
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: #fff;
  outline: none;
  font-family: var(--body-font);
  transition: border-color 0.15s;
}

/* line 217, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-input:focus {
  border-color: var(--accent);
}

/* line 220, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-textarea {
  min-height: 130px;
  resize: vertical;
}

/* line 225, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text);
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 24px;
  opacity: 1;
  line-height: 1.5;
}

/* line 237, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-check input[type=checkbox] {
  flex-shrink: 0;
  accent-color: var(--accent);
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

/* line 244, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-check span {
  opacity: 0.55;
}

/* line 247, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-submit {
  width: 100%;
  padding: 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  background: var(--dark);
  color: #fff;
  font-family: var(--body-font);
  transition: opacity 0.2s;
}

/* line 259, app/assets/stylesheets/customers/clean_pro/_contact.scss */
.cp-contact-submit:hover {
  opacity: 0.88;
}

/* line 262, app/assets/stylesheets/customers/clean_pro/_contact.scss */
label.error {
  display: block;
  color: #e53e3e;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* line 272, app/assets/stylesheets/customers/clean_pro/_contact.scss */
  .cp-contact-body {
    padding: 40px 20px 64px;
  }
  /* line 275, app/assets/stylesheets/customers/clean_pro/_contact.scss */
  .cp-contact-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* line 279, app/assets/stylesheets/customers/clean_pro/_contact.scss */
  .cp-contact-left {
    position: static;
    padding: 32px 24px;
  }
  /* line 283, app/assets/stylesheets/customers/clean_pro/_contact.scss */
  .cp-contact-right {
    padding: 32px 24px;
  }
}

/* =====================================================================
   POLISHED PRO — CART, CHECKOUT, THANK YOU
   ===================================================================== */
/* ---- CART ---- */
/* line 6, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-wrap {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 28px 60px;
}

/* line 12, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

/* line 19, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background: #fff;
}

/* line 32, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item-img {
  width: 88px;
  height: 66px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* line 41, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 5px;
}

/* line 50, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: var(--display-font);
  letter-spacing: var(--headline-spacing);
}

/* line 59, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item-meta {
  font-size: 12px;
  color: var(--body-text);
  font-weight: 600;
  margin-bottom: 4px;
}

/* line 66, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item-fees {
  font-size: 12px;
  color: var(--body-text);
  margin-bottom: 8px;
}

/* line 72, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-change-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  background: #fff;
  border: 1.5px solid var(--ground-dark);
  padding: 5px 11px;
  cursor: pointer;
  border-radius: var(--r-pill);
  color: var(--cart-change-date-color);
  transition: border-color 0.15s, color 0.15s;
}

/* line 85, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-change-date:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* line 88, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* line 95, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-item-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--dark);
}

/* line 101, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-qty-control {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1.5px solid var(--ground-dark);
  border-radius: var(--r-pill);
  overflow: visible;
  position: relative;
}

/* line 111, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-qty-btn-sm {
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

/* line 119, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-qty-btn-sm:hover:not(.is-disabled) {
  background: var(--ground-dark);
}

/* line 120, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-qty-btn-sm.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* line 122, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-qty-minus {
  border-radius: var(--r-pill) 0 0 var(--r-pill);
}

/* line 123, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-qty-plus {
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
}

/* line 125, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-qty-btn-sm[data-tooltip] {
  position: relative;
}

/* line 126, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-qty-btn-sm[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--ground);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 200;
}

/* line 143, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-qty-num {
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 800;
  border-left: 1px solid var(--ground-dark);
  border-right: 1px solid var(--ground-dark);
  color: var(--dark);
}

/* line 152, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-remove {
  font-size: 11px;
  font-weight: 700;
  color: var(--body-text);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.15s;
}

/* line 160, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-remove:hover {
  color: #e53e3e;
}

/* Cart summary */
/* line 164, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-summary {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--accent);
  border-radius: 10px;
  padding: 22px;
  position: sticky;
  top: 90px;
}

/* line 174, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-summary-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--display-font);
}

/* line 184, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 0;
  color: var(--body-text);
}

/* line 191, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-line.total {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  border-top: 1px solid var(--ground-dark);
  margin-top: 8px;
  padding-top: 14px;
}

/* line 198, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-line.total span:last-child {
  color: var(--accent);
}

/* line 202, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-cta {
  width: 100%;
  margin-top: 14px;
  padding: 15px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  background: var(--cart-cta-bg);
  color: var(--cart-cta-color) !important;
  font-family: var(--body-font);
  text-align: center;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s, background 0.2s;
}

/* line 221, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-cta:hover {
  background: var(--cart-cta-hover-bg) !important;
  color: var(--cart-cta-hover-color) !important;
}

/* line 224, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-continue-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--body-font);
  transition: border-color 0.15s, color 0.15s;
}

/* line 240, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-continue-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Cart empty state */
/* line 244, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-empty {
  text-align: center;
  padding: 64px 24px 96px;
  max-width: 480px;
  margin: 0 auto;
}

/* line 249, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-empty h2 {
  font-family: var(--display-font);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: var(--headline-weight);
  color: var(--dark);
  margin-bottom: 10px;
}

/* line 256, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-empty p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* line 259, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-empty-icon {
  font-size: 60px;
  margin-bottom: 8px;
  opacity: 0.45;
  line-height: 1;
}

/* Cart inline addons (inside left column) */
/* line 267, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-addons {
  margin-top: 32px;
}

/* line 271, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-addons-heading {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  font-family: var(--display-font);
  letter-spacing: var(--headline-spacing);
}

/* line 280, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* line 286, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cp-btn-bg);
  color: var(--accent);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}

/* line 298, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-empty-btn:hover {
  opacity: 0.85;
}

/* ---- DATE CHANGE MODAL (shared partial: _bb_edit_order_date) ---- */
/* line 302, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* line 312, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal-backdrop.on {
  display: flex;
}

@keyframes cpModalIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* line 320, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: cpModalIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  --orange: var(--accent);
}

/* line 332, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--body-text);
  line-height: 1;
  font-family: var(--body-font);
}

/* line 343, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal-close:hover {
  color: var(--dark);
}

/* line 346, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.01em;
  font-family: var(--body-font);
}

/* line 355, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-date-modal-loading,
.bb-popup-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 0;
  color: var(--body-text);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--body-font);
}

/* line 368, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-date-modal-content {
  max-height: 60vh;
  overflow-y: auto;
  padding-inline: 2px;
  scrollbar-gutter: stable;
  box-sizing: border-box;
}

/* line 376, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-date-modal-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  width: 100%;
  box-sizing: border-box;
  align-items: start;
  justify-items: stretch;
  grid-template-areas: "lbl-start lbl-end" "inp-start inp-end";
}

/* line 389, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-date-modal-label-start {
  grid-area: lbl-start;
}

/* line 390, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-date-modal-label-end {
  grid-area: lbl-end;
}

/* line 391, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-date-modal-input-start {
  grid-area: inp-start;
  min-width: 0;
  overflow: hidden;
}

/* line 392, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-date-modal-input-end {
  grid-area: inp-end;
  min-width: 0;
  overflow: hidden;
}

/* Shared classes used by _bb_product_detail inside the date modal */
/* line 395, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.booking-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 6px;
  font-family: var(--body-font);
}

/* line 405, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.booking-input {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  font-family: var(--body-font);
}

/* line 416, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.booking-input:focus {
  border-color: var(--accent);
}

/* line 419, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.bb-error-message {
  display: none;
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
  padding: 10px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
}

/* line 431, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal-save {
  width: 100%;
  background: var(--cp-btn-bg);
  color: var(--accent);
  padding: 14px;
  border: none;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--body-font);
  margin-top: 16px;
  transition: opacity .15s;
}

/* line 444, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal-save:hover {
  opacity: .88;
}

/* line 448, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal span.k-widget.k-datetimepicker.k-header {
  background: #fff !important;
  border: 2px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 10px !important;
  padding: 10px 12px !important;
  width: 100% !important;
  min-height: 46px !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  font-family: var(--body-font) !important;
}

/* line 460, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal span.k-widget.k-datetimepicker.k-header:focus-within {
  border-color: var(--accent) !important;
}

/* line 463, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal span.k-picker-wrap.k-state-default {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

/* line 472, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal .k-picker-wrap .k-input {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--dark) !important;
  width: 100% !important;
  font-family: var(--body-font) !important;
}

/* line 483, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal .k-datetimepicker .k-select {
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  background: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  flex-shrink: 0 !important;
}

/* line 493, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal .k-datetimepicker .k-select span.k-icon {
  font-size: 0 !important;
}

/* line 494, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal .bb-date-modal-fields {
  align-items: stretch;
}

/* line 495, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.date-modal .bb-date-modal-input-start,
.date-modal .bb-date-modal-input-end {
  display: flex;
  align-items: stretch;
}

/* ---- SUGGESTED ADD-ON POPUP (shared partial: _suggested_add_on_popup) ---- */
/* line 503, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* line 513, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup-overlay.open {
  display: flex;
}

/* line 516, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup {
  background: #fff;
  border-radius: 12px;
  border-top: 4px solid var(--accent);
  padding: 28px;
  max-width: 460px;
  width: calc(100% - 32px);
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: cpModalIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  --orange: var(--accent);
}

/* line 532, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup-close {
  position: absolute;
  top: 18px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
  opacity: 0.4;
  line-height: 1;
  z-index: 2;
  font-family: var(--body-font);
  transition: opacity .15s;
}

/* line 546, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup-close:hover {
  opacity: 0.9;
}

/* line 549, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup-scroll {
  overflow-y: auto;
  flex: 1;
  margin-bottom: 4px;
}

/* line 551, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  text-align: left;
  font-family: var(--display-font);
}

/* line 561, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.checkout-popup-sub {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.55;
  margin-bottom: 18px;
  text-align: left;
  font-family: var(--body-font);
}

/* line 573, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.popup-btns {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* line 579, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.popup-no-btn {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--body-font);
  color: var(--dark);
  transition: border-color .15s;
}

/* line 591, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.popup-no-btn:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

/* line 594, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.popup-yes-btn {
  flex: 1;
  padding: 12px;
  background: var(--cp-btn-bg);
  color: var(--accent);
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--body-font);
  transition: opacity .2s;
}

/* line 606, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.popup-yes-btn:hover {
  opacity: .88;
}

/* line 607, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.popup-yes-btn.active {
  opacity: .95;
}

/* line 610, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color .15s, background .15s;
  align-items: center;
}

/* line 621, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-item:hover {
  border-color: var(--accent);
}

/* line 622, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-item.checked {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.01);
}

/* line 628, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-check {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

/* line 636, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-img {
  width: 52px;
  height: 40px;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
  background-color: var(--ground-dark);
  flex-shrink: 0;
}

/* line 646, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-info {
  flex: 1;
  min-width: 0;
}

/* line 648, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--body-font);
  overflow-wrap: break-word;
  word-break: normal;
}

/* line 657, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  opacity: 0.6;
  font-family: var(--body-font);
}

/* line 663, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-price::before {
  content: '+';
}

/* line 666, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-price-sel {
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 5px 8px;
  outline: none;
  font-family: var(--body-font);
  color: var(--dark);
  background: #fff;
  max-width: 160px;
  flex-shrink: 0;
}

/* line 680, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* line 685, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  line-height: 1;
  flex-shrink: 0;
  transition: background .12s, border-color .12s;
}

/* line 702, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-qty button:hover {
  background: var(--ground-dark);
  border-color: rgba(0, 0, 0, 0.28);
}

/* line 704, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.upsell-popup-qty span {
  width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
}

/* ---- CHECKOUT ---- */
/* line 714, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-wrap {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 28px 60px;
}

/* line 720, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  column-gap: 28px;
  row-gap: 0;
  align-items: start;
}

/* line 726, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-grid > div:first-child {
  grid-column: 1;
  grid-row: 1;
}

/* line 727, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-grid #final_order {
  grid-column: 2;
  grid-row: 1 / 3;
}

/* line 728, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-grid > div:last-child {
  grid-column: 1;
  grid-row: 2;
}

/* line 731, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 20px;
}

/* line 742, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text);
  flex-shrink: 0;
}

/* line 750, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-step.active {
  color: var(--dark);
  font-weight: 700;
}

/* line 756, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* line 768, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.active .cp-checkout-step-num {
  background: var(--co-section-num-bg);
  color: #fff;
}

/* line 774, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-checkout-step-sep {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  margin: 0 8px;
}

/* line 781, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-section {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
}

/* line 789, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body-font);
}

/* line 800, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-section-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--co-section-num-bg);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 814, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-group {
  margin-bottom: 14px;
}

/* line 816, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 5px;
}

/* line 826, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-input {
  width: 100%;
  min-width: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  outline: none;
  font-family: var(--body-font);
  color: var(--dark);
  transition: border-color 0.15s;
}

/* line 839, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-input:focus {
  border-color: var(--co-input-focus);
}

/* line 840, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 500;
  opacity: 1;
}

/* line 843, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

/* line 849, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--body-text);
  margin-top: 10px;
  cursor: pointer;
}

/* line 857, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-form-check input[type=checkbox] {
  flex-shrink: 0;
  accent-color: var(--co-waiver-toggle-checked);
  margin-top: 2px;
}

/* Coupon */
/* line 861, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

/* line 867, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-input {
  flex: 1;
  border: 1.5px solid var(--ground-dark);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  outline: none;
  font-family: var(--body-font);
  color: var(--dark);
  transition: border-color 0.15s;
}

/* line 879, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-input:focus {
  border-color: var(--co-coupon-input-focus);
}

/* line 882, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-btn {
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: var(--co-coupon-btn-bg);
  color: var(--accent);
  font-family: var(--body-font);
  white-space: nowrap;
  transition: color 0.15s;
}

/* line 894, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-btn:hover {
  color: var(--accent-bright);
}

/* line 897, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-feedback {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
}

/* line 903, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-toggle {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  font-family: var(--body-font);
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
  transition: color 0.15s;
}

/* line 918, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-toggle:hover {
  color: var(--accent-bright);
}

/* line 921, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-reveal {
  display: none;
}

/* line 923, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-coupon-reveal.open {
  display: block;
}

/* Order summary (right column) */
/* line 927, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-summary {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 22px;
  position: sticky;
  top: 88px;
}

/* line 937, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--co-order-h3);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--display-font);
}

/* line 947, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-lines-wrap {
  border-top: 1px solid var(--co-order-border);
  margin-top: 8px;
  padding-top: 10px;
}

/* line 953, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 0;
  color: var(--body-text);
}

/* line 962, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-line--total {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  border-top: 1px solid var(--co-order-border);
  margin-top: 12px;
  padding-top: 14px;
  padding-bottom: 0;
}

/* line 970, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-line--total span:last-child {
  color: var(--accent);
}

/* line 973, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-due-today {
  background: var(--co-due-today-bg);
  border: 1px solid var(--co-due-today-border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  margin-top: 14px;
}

/* Place order */
/* line 983, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-place-order-btn {
  width: 100%;
  margin-top: 16px;
  padding: 15px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  letter-spacing: 0.02em;
  font-family: var(--body-font);
  transition: background 0.15s, transform 0.15s;
}

/* line 997, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-place-order-btn:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* line 1001, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-place-order-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ---- THANK YOU ---- */
/* line 1005, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 28px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: start;
}

/* line 1015, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-heading {
  font-family: var(--display-font);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  text-transform: var(--headline-case);
  color: var(--dark);
  margin-bottom: 8px;
}

/* line 1025, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-sub {
  font-size: 15px;
  color: var(--body-text);
  margin-bottom: 28px;
}

/* line 1031, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--ground-dark);
  font-size: 14px;
}

/* line 1037, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-detail-row:last-child {
  border-bottom: none;
}

/* line 1038, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-detail-row span:first-child {
  color: var(--body-text);
  font-weight: 600;
}

/* line 1039, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-detail-row span:last-child {
  color: var(--dark);
  font-weight: 700;
}

/* line 1042, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background: var(--cp-btn-bg);
  color: var(--accent);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}

/* line 1055, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-thankyou-back:hover {
  opacity: 0.85;
}

/* ---- ORDER ITEM THUMBNAILS (checkout + thank you) ---- */
/* line 1059, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

/* line 1066, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-item-img {
  width: 56px;
  height: 42px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: var(--ground-dark);
  flex-shrink: 0;
}

/* line 1076, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-item-info {
  flex: 1;
  min-width: 0;
}

/* line 1078, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  line-height: 1.3;
}

/* line 1086, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-item-date {
  font-size: 11px;
  color: var(--body-text);
  font-weight: 500;
  line-height: 1.5;
}

/* line 1093, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-order-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}

/* ---- DAMAGE WAIVER ---- */
/* line 1101, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-box {
  border: 1.5px solid var(--co-waiver-toggle-checked);
  border-radius: 12px;
  padding: 18px;
  background: color-mix(in srgb, var(--accent) 4%, transparent);
  margin-bottom: 14px;
}

/* line 1109, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* line 1116, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* line 1118, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex: 1;
}

/* line 1123, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-title a {
  color: var(--accent);
  text-decoration: underline;
}

/* line 1126, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

/* line 1131, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

/* line 1134, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-slider {
  position: absolute;
  inset: 0;
  background: var(--ground-dark);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.2s;
}

/* line 1141, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}

/* line 1152, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
input:checked ~ .cp-waiver-slider {
  background: var(--co-waiver-toggle-checked);
}

/* line 1153, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
input:checked ~ .cp-waiver-slider::before {
  transform: translateX(22px);
}

/* line 1156, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-body {
  font-size: 12px;
  color: var(--body-text);
  line-height: 1.7;
}

/* line 1160, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-body p {
  margin-bottom: 6px;
}

/* line 1160, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-waiver-body p:last-child {
  margin-bottom: 0;
}

/* ---- TIP SECTION ---- */
/* line 1164, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-tip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body-text);
  margin: 14px 0 8px;
}

/* line 1173, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-tip-opts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}

/* line 1180, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-tip-btn {
  padding: 9px 4px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  border: 1.5px solid var(--ground-dark);
  background: none;
  color: var(--body-text);
  cursor: pointer;
  font-family: var(--body-font);
  transition: all 0.15s;
}

/* line 1191, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-tip-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* line 1192, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-tip-btn.on {
  background: var(--cp-btn-bg);
  border-color: var(--cp-btn-bg);
  color: var(--accent);
}

/* ---- SURFACE OPTIONS ---- */
/* line 1196, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

/* line 1203, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  cursor: pointer;
  transition: all 0.15s;
  /* .on is applied by checkout.js and is the baseline selected state. */
}

/* line 1212, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt input[type=radio] {
  display: none;
}

/* line 1213, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt:hover {
  border-color: var(--accent);
}

/* line 1215, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt.on {
  border-color: var(--accent);
  background: var(--co-surface-on-bg);
}

/* line 1221, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt:has(input:checked) {
  border-color: var(--accent);
  background: var(--co-surface-on-bg);
}

/* line 1226, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

/* line 1235, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--body-text);
  flex-shrink: 0;
}

/* line 1242, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt.on .cp-surface-opt-price {
  color: var(--co-surface-on-price);
}

/* Separate rule — see note on .cp-surface-opt:has() above. */
/* line 1244, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-surface-opt:has(input:checked) .cp-surface-opt-price {
  color: var(--co-surface-on-price);
}

/* Cart sticky bar */
/* line 1247, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 1262, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-sticky-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 1268, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-sticky-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* line 1274, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-sticky-amount {
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
}

/* line 1280, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-sticky-btn {
  background: var(--accent);
  color: var(--dark);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

/* line 1290, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-cart-sticky-btn:hover {
  opacity: 0.9;
}

/* ---- THANK YOU page ---- */
/* line 1294, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-hero {
  text-align: center;
  padding: 72px 28px 28px;
}

/* line 1299, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-size: 38px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* line 1313, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-title {
  font-family: var(--display-font);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: var(--headline-weight);
  letter-spacing: var(--headline-spacing);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 12px;
}

/* line 1323, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-sub {
  font-size: 16px;
  color: var(--body-text);
  max-width: 520px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

/* line 1331, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-order-no {
  display: inline-block;
  background: rgba(0, 0, 0, 0.04);
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 900;
  color: var(--dark);
  opacity: 0.7;
  letter-spacing: 0.04em;
}

/* line 1344, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-body {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 28px 96px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* line 1354, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-summary {
  background: var(--card);
  border: 1px solid var(--ground-dark);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 22px;
  position: sticky;
  top: 90px;
}

/* line 1364, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-summary-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  font-family: var(--display-font);
}

/* line 1372, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1378, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 16px 18px;
}

/* line 1385, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 6px;
}

/* line 1394, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-card-body {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.6;
}

/* line 1399, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-card-body a {
  text-decoration: none;
}

/* line 1402, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  background: var(--cp-btn-bg);
  color: var(--accent);
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.15s;
}

/* line 1417, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-ty-home-btn:hover {
  color: var(--accent-bright);
}

/* Due today — thankyou version (stacked label/amount/note) */
/* line 1421, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-due-today-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 4px;
}

/* line 1430, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-due-today-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--co-due-today-amount);
  margin-bottom: 4px;
  font-family: var(--display-font);
}

/* line 1438, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-due-today-note {
  font-size: 12px;
  color: var(--body-text);
  font-weight: 500;
}

/* line 1444, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template a.terms-n-condition-popup {
  transition: color 0.15s;
}

/* line 1446, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template a.terms-n-condition-popup:hover {
  color: var(--accent-bright) !important;
}

/* ---- PAYMENT OPTIONS (shared _payment.html.erb restyled for CP) ---- */
/* line 1450, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.cp-template .hidden {
  display: none !important;
}

/* line 1452, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options {
  margin-bottom: 14px;
}

/* line 1455, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options h6 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

/* line 1464, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 1470, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid > div {
  flex: 1 1 100px;
  min-width: 80px;
  padding: 14px 10px;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s, color .15s;
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  height: auto;
  width: auto;
  /* .cp-pay-on is applied by checkout.js — baseline selected state. */
  /* :has() enhancement in its own rule so it can't invalidate .cp-pay-on
       on browsers without :has() support. */
}

/* line 1489, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid > div:hover {
  border-color: var(--accent);
}

/* line 1491, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid > div > div:first-child {
  display: none;
}

/* line 1492, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid > div > div:last-child {
  margin: 0;
}

/* line 1494, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid > div label {
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  cursor: pointer;
  margin: 0;
  line-height: 1.2;
}

/* line 1504, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid > div.cp-pay-on {
  border-color: var(--accent);
  background: var(--co-surface-on-bg);
  color: var(--accent);
}

/* line 1512, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-options .grid > div:has(input[type=radio]:checked) {
  border-color: var(--accent);
  background: var(--co-surface-on-bg);
  color: var(--accent);
}

/* line 1520, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-details {
  border: 1.5px solid var(--ground-dark);
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 20px;
}

/* line 1526, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-details > div:first-child {
  margin-bottom: 16px;
}

/* line 1527, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-details h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

/* line 1533, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-details > div:first-child > p {
  font-size: 13px;
  color: var(--body-text);
  font-weight: 600;
}

/* line 1538, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-details > div.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* line 1545, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-details > div.flex > div:first-child,
body.cp-template #payment-details > div.flex > div:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1551, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template #payment-details > div:last-child,
body.cp-template #payment-details .space-y-4 {
  margin-top: 16px;
}

/* line 1554, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
body.cp-template .bb-card-box {
  background: var(--ground);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 18px;
  margin-top: 14px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  /* line 1564, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  /* line 1565, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-summary {
    position: static;
  }
  /* line 1566, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  /* line 1567, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-grid > div:first-child,
.cp-checkout-grid #final_order,
.cp-checkout-grid > div:last-child {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
  }
  /* line 1570, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-order-summary {
    position: static;
  }
  /* line 1571, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-thankyou-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
  /* line 1572, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-ty-body {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  /* line 1576, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-sticky-bar {
    display: flex;
  }
}

@media (max-width: 640px) {
  /* line 1580, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  body.modal-open .cp-cart-sticky-bar {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
  }
  /* line 1582, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-steps {
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  /* line 1587, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-step {
    flex-shrink: 1;
    gap: 6px;
  }
  /* line 1588, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-step-label {
    display: none;
  }
  /* line 1589, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-step.active .cp-checkout-step-label {
    display: inline;
    font-size: 11px;
  }
  /* line 1590, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-step-num {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  /* line 1591, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-step-sep {
    margin: 0 4px;
    min-width: 8px;
  }
  /* line 1593, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-form-section {
    padding: 16px;
  }
  /* line 1594, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-form-section-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  /* line 1596, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-checkout-wrap {
    margin-top: 0;
    padding: 0 16px 28px;
  }
  /* line 1598, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-surface-opts {
    grid-template-columns: minmax(0, 1fr);
  }
  /* line 1600, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-tip-opts {
    gap: 4px;
  }
  /* line 1601, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-tip-btn {
    padding: 8px 2px;
    font-size: 10px;
  }
  /* line 1603, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-coupon-row {
    flex-direction: column;
  }
  /* line 1604, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-coupon-row > * {
    width: 100%;
  }
  /* line 1606, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-order-summary {
    padding: 16px;
  }
  /* line 1607, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-due-today-amount {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  /* line 1611, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-wrap {
    padding: 0 16px 60px;
  }
  /* line 1612, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    padding: 12px;
  }
  /* line 1619, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-item-img {
    width: 72px;
    height: 56px;
  }
  /* line 1620, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-item-right {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 8px;
    margin-top: 4px;
  }
  /* line 1630, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-item-name {
    font-size: 14px;
  }
  /* line 1631, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-item-meta,
.cp-cart-item-fees {
    font-size: 11px;
  }
  /* line 1633, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-item-price {
    font-size: 15px;
  }
  /* line 1634, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-cart-addons-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  /* line 1638, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-form-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  /* line 1639, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .cp-form-grid-2 > * {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  /* line 1643, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .checkout-popup {
    width: 94%;
    max-height: 88vh;
    border-radius: 12px;
  }
  /* line 1644, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .checkout-popup-title {
    font-size: 18px;
  }
  /* line 1645, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .popup-btns {
    flex-direction: column;
    gap: 8px;
  }
  /* line 1646, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .popup-btns button {
    width: 100%;
  }
  /* line 1648, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .upsell-popup-item {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  /* line 1649, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .upsell-popup-info {
    min-width: 140px;
  }
  /* line 1650, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
  .upsell-popup-qty {
    margin-left: auto;
  }
}

/* Pay in Full */
/* line 1655, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
}

/* line 1662, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block.hidden {
  display: none;
}

/* line 1666, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 12px;
}

/* line 1675, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.15s;
}

/* line 1688, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt:last-child {
  margin-bottom: 0;
}

/* line 1692, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

/* line 1696, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt.selected {
  border-color: var(--accent, #B8D433);
  background: rgba(0, 0, 0, 0.02);
}

/* line 1700, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt.selected .theme-pay-amount-radio {
  border-color: var(--accent, #B8D433);
  background: var(--accent, #B8D433);
}

/* line 1704, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt.selected .theme-pay-amount-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark, #111);
}

/* line 1718, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 1724, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-opt.featured .theme-pay-amount-price {
  color: var(--accent, #B8D433);
}

/* line 1729, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  background: #fff;
  transition: all 0.15s;
}

/* line 1741, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-body {
  flex: 1;
  min-width: 0;
}

/* line 1746, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

/* line 1753, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-price {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 4px;
}

/* line 1760, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-price-sub {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.55;
  color: var(--body-text);
}

/* line 1767, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.55;
  color: var(--body-text);
}

/* line 1774, app/assets/stylesheets/customers/clean_pro/_checkout.scss */
.theme-pay-amount-block .theme-pay-amount-badge {
  position: absolute;
  top: -9px;
  right: 12px;
  background: var(--cp-btn-bg);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
