/* =========================================================
   CANINE CARDIO — MASTER CUSTOM STYLES
   ========================================================= */


/* ---------------------------------------------------------
   GLOBAL BRAND VARIABLES
--------------------------------------------------------- */

:root {

  --cc-green: #00e0b8;
  --cc-green-hover: #20f0ca;

  --cc-black: #050505;
  --cc-surface: #0b0b0b;
  --cc-surface-2: #0f1513;

  --cc-white: #ffffff;
  --cc-muted: rgba(255, 255, 255, 0.80);

  --cc-border: rgba(255, 255, 255, 0.10);
  --cc-green-border: rgba(0, 224, 184, 0.28);
  --cc-green-soft: rgba(0, 224, 184, 0.10);
  --cc-green-glow: rgba(0, 224, 184, 0.28);

  --cc-content-width: 1200px;

  --cc-radius-sm: 12px;
  --cc-radius-md: 18px;
  --cc-radius-lg: 24px;

}


/* ---------------------------------------------------------
   SHARED TYPOGRAPHY
--------------------------------------------------------- */

.cc-section {

  position: relative;

  background: var(--cc-black);
  color: var(--cc-white);

  font-family:
    'Inter',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

}

.cc-wrap {

  width: min(100% - 32px, var(--cc-content-width));

  margin-inline: auto;

}

.cc-eyebrow {

  display: inline-block;

  margin-bottom: .85rem;

  color: var(--cc-green);

  font-size: .8rem;

  font-weight: 700;

  letter-spacing: .13em;

  text-transform: uppercase;

}

.cc-heading,
.cc-section h1,
.cc-section h2,
.cc-section h3,
.cc-section h4 {

  color: var(--cc-white);

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

}

.cc-heading {

  margin: 0;

  font-weight: 800;

  line-height: .98;

  text-transform: uppercase;

}

.cc-copy {

  color: var(--cc-white);

  line-height: 1.7;

}


/* ---------------------------------------------------------
   SHARED CARDS
--------------------------------------------------------- */

.cc-card {

  background:
    linear-gradient(
      160deg,
      var(--cc-surface),
      var(--cc-surface-2)
    );

  border: 1px solid var(--cc-border);

  border-radius: var(--cc-radius-md);

}

.cc-card-green {

  background:
    linear-gradient(
      150deg,
      var(--cc-green-soft),
      rgba(0, 224, 184, 0.02)
    );

  border: 1px solid var(--cc-green-border);

  border-radius: var(--cc-radius-md);

}


/* ---------------------------------------------------------
   SHARED BUTTONS
--------------------------------------------------------- */

.cc-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 48px;

  padding: .95rem 1.65rem;

  border-radius: 999px;

  font-weight: 800;

  line-height: 1.2;

  text-align: center;

  text-decoration: none !important;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;

}

.cc-btn-primary {

  background: var(--cc-green);

  color: #000 !important;

  box-shadow:
    0 10px 28px rgba(0, 224, 184, .24);

}

.cc-btn-primary:hover {

  background: var(--cc-green-hover);

  color: #000 !important;

  transform: translateY(-2px);

}

.cc-btn-secondary {

  border: 2px solid var(--cc-green);

  background: transparent;

  color: var(--cc-green) !important;

}

.cc-btn-secondary:hover {

  background: var(--cc-green);

  color: #000 !important;

}


/* ---------------------------------------------------------
   SHARED BADGES
--------------------------------------------------------- */

.cc-badge {

  display: inline-flex;

  align-items: center;

  gap: .45rem;

  padding: .5rem .75rem;

  border-radius: 999px;

  background: var(--cc-green);

  color: #000;

  font-size: .7rem;

  font-weight: 800;

  letter-spacing: .08em;

  text-transform: uppercase;

}


/* ---------------------------------------------------------
   SHARED MODALS
--------------------------------------------------------- */

body.cc-modal-open {

  overflow: hidden;

}

.cc-modal {

  position: fixed;

  inset: 0;

  z-index: 999999;

  display: none;

  align-items: center;

  justify-content: center;

  padding: 1rem;

}
/* ---------------------------------------------------------
   MOBILE TRAILER ZIP MODAL
--------------------------------------------------------- */

.cc-modal-dialog h3,
.cc-mobile-area-group h4 {
  color: #ffffff !important;
}

.cc-modal-dialog h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.cc-mobile-area-group h4 {
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.cc-mobile-modal-intro,
.cc-mobile-area-group p,
.cc-mobile-modal-note p {
  color: #ffffff !important;
}

.cc-mobile-modal-actions {
  margin-top: 1.25rem;
}

.cc-mobile-modal-actions .cc-btn {
  width: auto;
}

@media (max-width: 640px) {

  .cc-mobile-modal-actions .cc-btn {
    width: 100%;
  }

}
.cc-modal.cc-is-open {

  display: flex;

}

.cc-modal-backdrop {

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, .82);

  backdrop-filter: blur(5px);

}

.cc-modal-dialog {

  position: relative;

  z-index: 2;

  width: min(720px, 100%);

  max-height: 90vh;

  overflow-y: auto;

  padding:
    clamp(1.5rem, 4vw, 2.5rem);

  border: 1px solid var(--cc-green-border);

  border-radius: var(--cc-radius-lg);

  background:
    linear-gradient(
      160deg,
      #0c0c0c,
      var(--cc-surface-2)
    );

  color: var(--cc-white);

  box-shadow:
    0 35px 100px rgba(0, 0, 0, .7);

}

.cc-modal-close {

  position: absolute;

  top: 1rem;

  right: 1rem;

  width: 42px;

  height: 42px;

  border: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, .08);

  color: #fff;

  font-size: 1.8rem;

  line-height: 1;

  cursor: pointer;

}

.cc-modal-close:hover {

  background: var(--cc-green);

  color: #000;

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

  .cc-wrap {

    width:
      min(
        100% - 24px,
        var(--cc-content-width)
      );

  }

  .cc-btn {

    width: 100%;

  }

}

/* =========================================================
   MOBILE TRAILER PAGE
   ========================================================= */


/* ---------------------------------------------------------
   PAGE WRAPPER / BACKGROUND
--------------------------------------------------------- */

.cc-mobile-trailer {
  position: relative;
  overflow: hidden;
  background: var(--cc-black);
  padding:
    clamp(3.5rem, 7vw, 6rem)
    clamp(1rem, 4vw, 1.5rem);
}

.cc-mobile-trailer::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse 80% 40% at 50% -10%,
      rgba(0, 224, 184, 0.20),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 45%,
      rgba(0, 224, 184, 0.05),
      transparent 55%
    );
}

.cc-mobile-trailer > .cc-wrap {
  position: relative;
  z-index: 2;
}


/* ---------------------------------------------------------
   INTRO + ADDRESS CHECKER
--------------------------------------------------------- */

.cc-mobile-top {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(360px, 0.9fr);

  gap: clamp(2rem, 5vw, 4rem);

  align-items: start;

  margin-bottom:
    clamp(3.5rem, 7vw, 5.5rem);
}

.cc-mobile-copy h2 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}

.cc-mobile-copy .cc-intro {
  color: var(--cc-white);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  max-width: 44rem;
}

.cc-mobile-home-box {
  margin-top: 1.8rem;
  padding: 1.6rem;

  border-radius: var(--cc-radius-md);

  background:
    linear-gradient(
      160deg,
      rgba(0, 224, 184, 0.11),
      rgba(0, 224, 184, 0.025)
    );

  border:
    1px solid var(--cc-green-border);
}

.cc-mobile-home-box h3 {
  color: var(--cc-green) !important;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.cc-mobile-home-box p {
  color: var(--cc-white);
  line-height: 1.7;
  margin: 0;
}


/* ---------------------------------------------------------
   ADDRESS CHECKER CARD
--------------------------------------------------------- */

.cc-mobile-address-card {
  position: sticky;
  top: 2rem;

  padding:
    clamp(1.5rem, 3vw, 2rem);

  border-radius: var(--cc-radius-lg);

  background:
    linear-gradient(
      160deg,
      #0d0d0d,
      #0d1714
    );

  border:
    1px solid var(--cc-green-border);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 70px -25px var(--cc-green-glow);
}

.cc-mobile-address-card h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.cc-mobile-address-card > p {
  color: var(--cc-white);
  line-height: 1.65;
  margin: 0 0 1.3rem;
}

.cc-mobile-checker {
  margin-top: 1rem;
}

.cc-mobile-checker-placeholder {
  min-height: 125px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1.5rem;

  border-radius: var(--cc-radius-sm);

  border:
    2px dashed rgba(0, 224, 184, 0.28);

  color: rgba(255, 255, 255, 0.65);

  text-align: center;
}

.cc-mobile-zip-link {
  appearance: none;

  display: inline-flex;
  align-items: center;

  gap: 0.55rem;

  margin-top: 1.15rem;

  padding: 0;

  border: 0;

  background: none;

  color: var(--cc-green);

  font-family: inherit;

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 0.07em;

  text-transform: uppercase;

  cursor: pointer;
}

.cc-mobile-zip-link:hover {
  text-decoration: underline;
}


/* ---------------------------------------------------------
   SERVING NORTHERN VIRGINIA
--------------------------------------------------------- */

.cc-mobile-serving {
  width: 100%;

  margin-bottom:
    clamp(4rem, 8vw, 7rem);

  padding:
    clamp(2rem, 4vw, 3rem);

  border-radius: var(--cc-radius-lg);

  background:
    linear-gradient(
      140deg,
      rgba(0, 224, 184, 0.11),
      rgba(0, 224, 184, 0.025)
    );

  border:
    1px solid var(--cc-green-border);
}

.cc-mobile-serving h3 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.cc-mobile-serving-lead {
  max-width: 800px;

  color: var(--cc-white);

  font-size: 1.06rem;

  line-height: 1.7;

  margin: 0;
}

.cc-mobile-serving-note {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 2rem;

  margin-top: 1.8rem;

  padding-top: 1.6rem;

  border-top:
    1px solid rgba(255, 255, 255, 0.11);
}

.cc-mobile-serving-note > div {
  max-width: 760px;
}

.cc-mobile-serving-note h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.cc-mobile-serving-note p {
  color: var(--cc-white);
  line-height: 1.65;
  margin: 0;
}


/* ---------------------------------------------------------
   SHARED MOBILE PAGE SECTION HEADINGS
--------------------------------------------------------- */

.cc-mobile-section {
  margin-bottom:
    clamp(4rem, 8vw, 7rem);
}

.cc-mobile-section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cc-mobile-section-heading h3 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.cc-mobile-section-heading p {
  color: var(--cc-white);
  line-height: 1.7;
  margin: 0;
}


/* ---------------------------------------------------------
   HOW IT WORKS
--------------------------------------------------------- */

.cc-mobile-step-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 1rem;
}

.cc-mobile-step {
  position: relative;

  min-height: 220px;

  padding: 1.5rem;

  border-radius: var(--cc-radius-md);

  background: var(--cc-surface);

  border:
    1px solid var(--cc-border);

  overflow: hidden;
}

.cc-mobile-step::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 3px;

  background:
    linear-gradient(
      180deg,
      var(--cc-green),
      rgba(0, 224, 184, 0.2)
    );
}

.cc-mobile-step-number {
  display: block;

  color: var(--cc-green);

  font-size: 0.75rem;

  font-weight: 800;

  margin-bottom: 0.75rem;
}

.cc-mobile-step h4 {
  font-size: 1.55rem;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.cc-mobile-step p {
  color: var(--cc-white);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}


/* ---------------------------------------------------------
   PRICING
--------------------------------------------------------- */

.cc-mobile-pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 1rem;

  align-items: stretch;
}

.cc-mobile-price-card {
  position: relative;

  display: flex;

  flex-direction: column;

  padding: 1.6rem;

  border-radius: var(--cc-radius-md);

  background:
    linear-gradient(
      160deg,
      #0b0b0b,
      #0d1210
    );

  border:
    1px solid var(--cc-border);

  overflow: hidden;
}

.cc-mobile-price-card::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--cc-green),
      rgba(0, 224, 184, 0.15)
    );
}

.cc-mobile-price-card.is-featured {
  border-color:
    rgba(0, 224, 184, 0.35);

  background:
    linear-gradient(
      160deg,
      rgba(0, 224, 184, 0.10),
      #0b0d0c 55%
    );

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.25);
}

.cc-mobile-price-badge {
  display: inline-block;

  align-self: flex-start;

  margin-bottom: 1rem;

  padding:
    0.48rem
    0.72rem;

  border-radius: 999px;

  background: var(--cc-green);

  color: #000;

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.cc-mobile-price-label {
  display: block;

  color: var(--cc-white);

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size: 1.55rem;

  font-weight: 800;

  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 0.8rem;
}

.cc-mobile-price {
  color: var(--cc-green);

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    clamp(3rem, 5vw, 4rem);

  font-weight: 800;

  line-height: 0.9;

  margin-bottom: 0.4rem;
}

.cc-mobile-price-sub {
  color: var(--cc-white);

  font-size: 0.88rem;

  font-weight: 700;
}

.cc-mobile-price-card > p {
  color: var(--cc-white);

  font-size: 0.94rem;

  line-height: 1.65;

  margin:
    0
    0
    0.75rem;
}

.cc-mobile-price-note {
  margin-top: auto !important;

  padding-top: 0.85rem;

  border-top:
    1px solid rgba(255, 255, 255, 0.09);

  color:
    rgba(255, 255, 255, 0.82) !important;

  font-size:
    0.84rem !important;
}

.cc-mobile-savings {
  display: inline-block;

  align-self: flex-start;

  margin:
    0
    0
    1rem;

  padding:
    0.4rem
    0.65rem;

  border-radius: 0.55rem;

  background:
    rgba(0, 224, 184, 0.12);

  color: var(--cc-green);

  font-size: 0.8rem;

  font-weight: 800;
}


/* ADDITIONAL DOG */

.cc-mobile-additional-dog {
  margin-top: 1rem;

  padding:
    1.5rem
    1.7rem;

  border-radius: var(--cc-radius-md);

  background:
    rgba(0, 224, 184, 0.08);

  border:
    1px solid rgba(0, 224, 184, 0.22);
}

.cc-mobile-additional-dog h4 {
  font-size:
    clamp(1.7rem, 3vw, 2.2rem);

  text-transform: uppercase;

  margin:
    0
    0
    0.4rem;
}

.cc-mobile-additional-dog p {
  color: var(--cc-white);

  line-height: 1.6;

  margin: 0;
}


/* PACKAGE BENEFITS */

.cc-mobile-package-benefits {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 2rem;

  margin-top: 1rem;

  padding:
    clamp(1.7rem, 4vw, 2.6rem);

  border-radius: var(--cc-radius-lg);

  background:
    linear-gradient(
      145deg,
      rgba(0, 224, 184, 0.10),
      rgba(0, 224, 184, 0.025)
    );

  border:
    1px solid rgba(0, 224, 184, 0.22);
}

.cc-mobile-package-benefits h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.cc-mobile-package-benefits p {
  color: var(--cc-white);
  line-height: 1.7;
  margin: 0;
}

.cc-mobile-redemption-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 1rem;
}

.cc-mobile-redemption-card {
  padding: 1.35rem;

  border-radius: var(--cc-radius-sm);

  background:
    rgba(0, 0, 0, 0.32);

  border:
    1px solid rgba(255, 255, 255, 0.09);
}

.cc-mobile-redemption-number {
  display: block;

  color: var(--cc-green);

  font-size: 0.72rem;

  font-weight: 800;

  margin-bottom: 0.6rem;
}

.cc-mobile-redemption-card h4 {
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

.cc-mobile-redemption-card p {
  color: var(--cc-white);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}


/* ---------------------------------------------------------
   FREE POP-UP EVENTS
--------------------------------------------------------- */

.cc-mobile-popup {
  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr;

  gap: 2rem;

  margin-bottom:
    clamp(4rem, 8vw, 7rem);

  padding:
    clamp(2rem, 5vw, 3.5rem);

  border-radius: var(--cc-radius-lg);

  background:
    linear-gradient(
      135deg,
      rgba(0, 224, 184, 0.13),
      rgba(0, 224, 184, 0.025)
    );

  border:
    1px solid var(--cc-green-border);
}

.cc-mobile-popup h3 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.cc-mobile-popup p {
  color: var(--cc-white);
  line-height: 1.7;
}

.cc-mobile-popup-card {
  padding: 2rem;

  border-radius: var(--cc-radius-md);

  background: #080c0a;

  border:
    1px solid rgba(0, 224, 184, 0.22);
}

.cc-mobile-popup-free {
  display: block;

  color: var(--cc-green);

  font-family:
    'Barlow Condensed',
    sans-serif;

  font-weight: 800;

  font-size:
    clamp(4rem, 8vw, 6rem);

  line-height: 0.8;

  margin-bottom: 1.3rem;
}

.cc-mobile-popup-card h4 {
  font-size: 1.9rem;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.cc-mobile-popup-card p {
  color: var(--cc-white);
  line-height: 1.65;
  margin: 0;
}


/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */

.cc-mobile-faq-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 1rem;
}

.cc-mobile-faq-item {
  padding: 1.6rem;

  border-radius: var(--cc-radius-md);

  background: var(--cc-surface);

  border:
    1px solid var(--cc-border);
}

.cc-mobile-faq-item h4 {
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.cc-mobile-faq-item p {
  color: var(--cc-white);
  line-height: 1.65;
  margin: 0;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.cc-mobile-final-cta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 2rem;

  padding:
    clamp(2rem, 5vw, 3.5rem);

  border-radius: var(--cc-radius-lg);

  background:
    linear-gradient(
      135deg,
      rgba(0, 224, 184, 0.18),
      rgba(0, 224, 184, 0.035)
    );

  border:
    1px solid var(--cc-green-border);
}

.cc-mobile-final-copy {
  max-width: 700px;
}

.cc-mobile-final-cta h3 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.cc-mobile-final-cta p {
  color: var(--cc-white);
  line-height: 1.65;
  margin: 0;
}

.cc-mobile-final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}


/* ---------------------------------------------------------
   ZIP MODAL CONTENT
--------------------------------------------------------- */

.cc-mobile-modal-intro {
  color: var(--cc-white);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.cc-mobile-area-group {
  padding: 1rem 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.11);
}

.cc-mobile-area-group:last-child {
  border-bottom: 0;
}

.cc-mobile-area-group h4 {
  font-size: 1.35rem;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.cc-mobile-area-group p {
  color: var(--cc-white);
  line-height: 1.6;
  margin: 0;
}

.cc-mobile-modal-note {
  margin-top: 1.5rem;

  padding: 1.2rem;

  border-radius: var(--cc-radius-sm);

  background:
    rgba(0, 224, 184, 0.10);

  border:
    1px solid rgba(0, 224, 184, 0.24);
}

.cc-mobile-modal-note strong {
  color: var(--cc-white);
}

.cc-mobile-modal-note p {
  color: var(--cc-white);
  line-height: 1.6;
  margin: 0.35rem 0 0;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 980px) {

  .cc-mobile-top {
    grid-template-columns: 1fr;
  }

  .cc-mobile-address-card {
    position: static;
  }

  .cc-mobile-step-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .cc-mobile-pricing-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .cc-mobile-package-benefits {
    grid-template-columns: 1fr;
  }

  .cc-mobile-popup {
    grid-template-columns: 1fr;
  }

  .cc-mobile-serving-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-mobile-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 640px) {

  .cc-mobile-trailer {
    padding:
      3rem
      1rem;
  }

  .cc-mobile-copy h2 {
    font-size:
      clamp(2.6rem, 13vw, 3.6rem);
  }

  .cc-mobile-step-grid,
  .cc-mobile-pricing-grid,
  .cc-mobile-redemption-grid,
  .cc-mobile-faq-grid {
    grid-template-columns: 1fr;
  }

  .cc-mobile-home-box,
  .cc-mobile-address-card,
  .cc-mobile-step,
  .cc-mobile-price-card,
  .cc-mobile-additional-dog,
  .cc-mobile-package-benefits,
  .cc-mobile-popup-card,
  .cc-mobile-faq-item {
    padding: 1.25rem;
  }

  .cc-mobile-serving,
  .cc-mobile-popup,
  .cc-mobile-final-cta {
    padding: 1.5rem;
  }

  .cc-mobile-final-buttons {
    width: 100%;
  }

}

/* =========================================================
   WEEKEND DAYCARE
   ========================================================= */


/* ---------------------------------------------------------
   PAGE WRAPPER / BACKGROUND
--------------------------------------------------------- */

.cc-weekend-daycare {
  position: relative;
  overflow: hidden;
  background: var(--cc-black);

  padding:
    clamp(3.5rem, 7vw, 5.5rem)
    clamp(1rem, 4vw, 1.25rem);
}

.cc-weekend-daycare::before {
  content: "";
  pointer-events: none;

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse 80% 50% at 50% -20%,
      var(--cc-green-glow),
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 50%,
      rgba(0, 224, 184, 0.06),
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 35% at 0% 80%,
      rgba(0, 224, 184, 0.05),
      transparent 45%
    );

  opacity: 0.95;
}

.cc-weekend-daycare > .cc-wrap {
  position: relative;
  z-index: 1;
}


/* ---------------------------------------------------------
   TOP
--------------------------------------------------------- */

.cc-weekend-top {
  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap:
    clamp(1.5rem, 3vw, 2rem);

  align-items: start;

  margin-bottom:
    clamp(2.5rem, 5vw, 3.5rem);
}

.cc-weekend-copy h2 {
  font-size:
    clamp(2.75rem, 5.5vw, 4.5rem);

  line-height: 0.95;

  margin:
    0
    0
    1.125rem;

  text-transform: uppercase;
}

.cc-weekend-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--cc-white);
  margin: 0 0 1.5rem;
  max-width: 43rem;
}


/* ---------------------------------------------------------
   APPROACH
--------------------------------------------------------- */

.cc-weekend-highlight {
  background:
    linear-gradient(
      165deg,
      rgba(0, 224, 184, 0.11) 0%,
      rgba(0, 224, 184, 0.03) 100%
    );

  border:
    1px solid var(--cc-green-border);

  border-radius:
    var(--cc-radius-md);

  padding:
    1.5rem;
}

.cc-weekend-highlight h3 {
  font-size: 1.625rem;

  margin:
    0
    0
    0.5rem;

  color:
    var(--cc-green) !important;
}

.cc-weekend-highlight p {
  margin: 0;

  color:
    var(--cc-white);

  line-height:
    1.7;
}


/* ---------------------------------------------------------
   STRUCTURED WEEKEND FUN CARD
--------------------------------------------------------- */

.cc-weekend-preview {
  display: flex;
}

.cc-weekend-preview-card {
  width: 100%;

  background:
    linear-gradient(
      165deg,
      #0d0d0d 0%,
      var(--cc-surface-2) 100%
    );

  border:
    1px solid rgba(0, 224, 184, 0.24);

  border-radius:
    var(--cc-radius-lg);

  padding:
    1.75rem
    1.5rem;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 80px -20px var(--cc-green-glow);
}

.cc-weekend-preview-card h3 {
  font-size:
    clamp(1.75rem, 3vw, 2.25rem);

  line-height:
    1;

  margin:
    0
    0
    0.875rem;
}

.cc-weekend-preview-card > p {
  color:
    var(--cc-white);

  line-height:
    1.7;

  margin:
    0
    0
    1.375rem;
}


/* ---------------------------------------------------------
   FEATURED PRICE
--------------------------------------------------------- */

.cc-weekend-feature-price {
  margin:
    0
    0
    1.25rem;

  padding:
    1rem
    1.1rem;

  background:
    linear-gradient(
      165deg,
      rgba(0, 224, 184, 0.13),
      rgba(0, 224, 184, 0.04)
    );

  border:
    1px solid rgba(0, 224, 184, 0.28);

  border-radius:
    var(--cc-radius-sm);
}

.cc-weekend-feature-price-label {
  display: block;

  margin-bottom:
    0.25rem;

  color:
    rgba(255, 255, 255, 0.72);

  font-size:
    0.72rem;

  font-weight:
    700;

  letter-spacing:
    0.08em;

  text-transform:
    uppercase;
}

.cc-weekend-feature-price strong {
  display: block;

  color:
    var(--cc-green);

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    clamp(2rem, 4vw, 2.75rem);

  font-weight:
    800;

  line-height:
    1;

  text-transform:
    uppercase;
}


/* ---------------------------------------------------------
   STATS
--------------------------------------------------------- */

.cc-weekend-stats-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    0.875rem;
}

.cc-weekend-stat-box {
  background:
    rgba(0, 0, 0, 0.35);

  border:
    1px solid var(--cc-border);

  border-radius:
    var(--cc-radius-sm);

  padding:
    1rem;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cc-weekend-stat-box:hover {
  border-color:
    rgba(0, 224, 184, 0.35);

  transform:
    translateY(-2px);
}

.cc-weekend-stat-name {
  display: block;

  color:
    rgba(255, 255, 255, 0.72);

  font-size:
    0.75rem;

  margin-bottom:
    0.5rem;

  text-transform:
    uppercase;

  letter-spacing:
    0.06em;

  font-weight:
    600;
}

.cc-weekend-stat-box strong {
  display: block;

  color:
    var(--cc-green);

  font-size:
    0.95rem;

  line-height:
    1.4;
}

.cc-weekend-note {
  margin-top:
    1rem;

  padding-top:
    1rem;

  border-top:
    1px solid var(--cc-border);

  color:
    rgba(255, 255, 255, 0.75);

  font-size:
    0.875rem;

  line-height:
    1.6;
}


/* ---------------------------------------------------------
   WHAT YOUR DOG CAN EXPECT
--------------------------------------------------------- */

.cc-weekend-expect {
  margin-bottom:
    clamp(2.5rem, 5vw, 3.5rem);
}

.cc-weekend-expect > h3 {
  font-size:
    clamp(1.75rem, 3.5vw, 2.25rem);

  margin:
    0
    0
    1.125rem;
}

.cc-weekend-expect-grid {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap:
    1rem;
}

.cc-weekend-expect-card {
  position: relative;

  background:
    var(--cc-surface);

  border:
    1px solid var(--cc-border);

  border-radius:
    var(--cc-radius-md);

  padding:
    1.375rem
    1.125rem
    1.375rem
    1.5rem;

  overflow:
    hidden;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.cc-weekend-expect-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width:
    3px;

  background:
    linear-gradient(
      180deg,
      var(--cc-green),
      rgba(0, 224, 184, 0.25)
    );
}

.cc-weekend-expect-card:hover {
  transform:
    translateY(-3px);

  border-color:
    rgba(0, 224, 184, 0.22);
}

.cc-weekend-number {
  display: block;

  font-family:
    'Barlow Condensed',
    sans-serif;

  font-size:
    0.75rem;

  font-weight:
    800;

  letter-spacing:
    0.05em;

  color:
    var(--cc-green);

  margin-bottom:
    0.5rem;
}

.cc-weekend-expect-card h4 {
  margin:
    0
    0
    0.5rem;

  font-size:
    clamp(1.25rem, 2vw, 1.65rem);

  line-height:
    1.05;
}

.cc-weekend-expect-card p {
  margin:
    0;

  color:
    var(--cc-white);

  font-size:
    0.9rem;

  line-height:
    1.6;
}


/* ---------------------------------------------------------
   BOOKING CTA
--------------------------------------------------------- */

.cc-weekend-booking {
  display: grid;

  grid-template-columns:
    1fr
    auto;

  gap:
    2rem;

  align-items:
    center;

  background:
    linear-gradient(
      165deg,
      rgba(0, 224, 184, 0.12),
      rgba(0, 224, 184, 0.03)
    );

  border:
    1px solid var(--cc-green-border);

  border-radius:
    var(--cc-radius-lg);

  padding:
    clamp(1.5rem, 3vw, 2rem);

  margin-bottom:
    1.25rem;
}

.cc-weekend-booking h3 {
  font-size:
    clamp(1.9rem, 4vw, 2.75rem);

  line-height:
    1;

  margin:
    0
    0
    0.65rem;
}

.cc-weekend-booking p {
  margin:
    0;

  max-width:
    48rem;

  color:
    var(--cc-white);

  line-height:
    1.7;
}


/* ---------------------------------------------------------
   COMING SOON
--------------------------------------------------------- */

.cc-weekend-coming {
  width:
    100%;

  background:
    linear-gradient(
      145deg,
      rgba(0, 224, 184, 0.10),
      rgba(0, 0, 0, 0.2)
    );

  border:
    1px solid var(--cc-green-border);

  border-radius:
    var(--cc-radius-lg);

  padding:
    clamp(1.5rem, 3vw, 2rem);
}

.cc-weekend-coming h3 {
  margin:
    0
    0
    0.875rem;

  font-size:
    clamp(1.8rem, 3.5vw, 2.5rem);

  line-height:
    1;
}

.cc-weekend-coming p {
  color:
    var(--cc-white);

  line-height:
    1.7;

  margin:
    0
    0
    0.875rem;
}

.cc-weekend-coming p:last-child {
  margin-bottom:
    0;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1100px) {

  .cc-weekend-expect-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}

@media (max-width: 980px) {

  .cc-weekend-top {
    grid-template-columns:
      1fr;
  }

  .cc-weekend-booking {
    grid-template-columns:
      1fr;
  }

  .cc-weekend-button-wrap {
    text-align:
      left;
  }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

  .cc-weekend-expect-grid {
    grid-template-columns:
      1fr;
  }

  .cc-weekend-stats-grid {
    grid-template-columns:
      1fr 1fr;
  }

}

@media (max-width: 520px) {

  .cc-weekend-daycare {
    padding:
      3rem
      1rem;
  }

  .cc-weekend-stats-grid {
    grid-template-columns:
      1fr;
  }

  .cc-weekend-preview-card,
  .cc-weekend-highlight,
  .cc-weekend-booking,
  .cc-weekend-coming {
    padding:
      1.25rem;
  }

}

/* =========================================================
   LEADERBOARD / COMPETITION
   ========================================================= */


/* ---------------------------------------------------------
   SECTION WRAPPER / BACKGROUND
--------------------------------------------------------- */

.cc-leaderboard-section {
  position: relative;
  overflow: hidden;
  background: var(--cc-black);

  padding:
    clamp(3rem, 6vw, 4.375rem)
    clamp(1rem, 4vw, 1.25rem);
}

.cc-leaderboard-section::before {
  content: "";
  pointer-events: none;

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse 80% 50% at 50% -20%,
      var(--cc-green-glow),
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 50%,
      rgba(0, 224, 184, 0.06),
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 35% at 0% 80%,
      rgba(0, 224, 184, 0.05),
      transparent 45%
    );

  opacity: 0.9;
}

.cc-leaderboard-section > .cc-wrap {
  position: relative;
  z-index: 1;
}


/* ---------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------- */

.cc-sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* ---------------------------------------------------------
   TOP
--------------------------------------------------------- */

.cc-leaderboard-top {
  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap:
    clamp(1.5rem, 3vw, 2rem);

  align-items: start;

  margin-bottom:
    clamp(2rem, 4vw, 2.125rem);
}

.cc-leaderboard-copy h2 {
  font-size:
    clamp(2rem, 5vw, 3.25rem);

  line-height: 0.98;

  margin:
    0
    0
    1.125rem;

  text-transform: uppercase;
}

.cc-leaderboard-intro {
  font-size: 1.125rem;

  line-height: 1.65;

  color: var(--cc-white);

  margin:
    0
    0
    1.5rem;

  max-width: 42rem;
}


/* ---------------------------------------------------------
   HOW IT WORKS
--------------------------------------------------------- */

.cc-leaderboard-how {
  background:
    linear-gradient(
      165deg,
      rgba(0, 224, 184, 0.11) 0%,
      rgba(0, 224, 184, 0.03) 100%
    );

  border:
    1px solid var(--cc-green-border);

  border-radius:
    var(--cc-radius-md);

  padding:
    1.5rem
    1.375rem;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cc-leaderboard-how h3 {
  font-size: 1.625rem;

  margin:
    0
    0
    0.5rem;

  color:
    var(--cc-green) !important;

  text-transform:
    uppercase;
}

.cc-leaderboard-how p {
  margin: 0;

  color:
    var(--cc-white);

  font-size:
    1rem;

  line-height:
    1.65;
}


/* ---------------------------------------------------------
   LIVE RANKINGS CARD
--------------------------------------------------------- */

.cc-leaderboard-preview {
  display: flex;

  position: sticky;

  top: 1.5rem;
}

.cc-leaderboard-preview-card {
  width: 100%;

  background:
    linear-gradient(
      165deg,
      #0d0d0d 0%,
      var(--cc-surface-2) 100%
    );

  border:
    1px solid rgba(0, 224, 184, 0.24);

  border-radius:
    var(--cc-radius-lg);

  padding:
    1.75rem
    1.5rem;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 80px -20px var(--cc-green-glow);
}

.cc-leaderboard-preview-card h3 {
  font-size:
    clamp(1.5rem, 3vw, 2.125rem);

  line-height:
    1.05;

  margin:
    0
    0
    0.875rem;

  text-transform:
    uppercase;
}

.cc-leaderboard-preview-card > p {
  color:
    var(--cc-white);

  font-size:
    1rem;

  line-height:
    1.65;

  margin:
    0
    0
    1.375rem;
}


/* ---------------------------------------------------------
   LIVE BADGE
--------------------------------------------------------- */

.cc-leaderboard-live-badge {
  display: inline-flex;

  align-items: center;

  gap:
    0.5rem;

  font-size:
    0.6875rem;

  font-weight:
    700;

  line-height:
    1;

  color:
    #000;

  background:
    var(--cc-green);

  padding:
    0.5rem
    0.75rem;

  border-radius:
    999px;

  margin-bottom:
    1rem;

  text-transform:
    uppercase;

  letter-spacing:
    0.08em;
}

.cc-leaderboard-pulse {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #000;

  box-shadow:
    0 0 0 0 rgba(0, 0, 0, 0.4);

  animation:
    cc-leaderboard-pulse-animation
    2s
    ease-out
    infinite;
}

@keyframes cc-leaderboard-pulse-animation {

  0% {
    box-shadow:
      0 0 0 0 rgba(0, 0, 0, 0.35);
  }

  70% {
    box-shadow:
      0 0 0 8px transparent;
  }

  100% {
    box-shadow:
      0 0 0 0 transparent;
  }

}


/* ---------------------------------------------------------
   RANKING STATS
--------------------------------------------------------- */

.cc-leaderboard-stats-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    0.875rem;
}

.cc-leaderboard-stat {
  background:
    rgba(0, 0, 0, 0.35);

  border:
    1px solid var(--cc-border);

  border-radius:
    var(--cc-radius-sm);

  padding:
    1rem
    0.875rem;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cc-leaderboard-stat:hover {
  border-color:
    rgba(0, 224, 184, 0.35);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25);

  transform:
    translateY(-2px);
}

.cc-leaderboard-stat-name {
  display: block;

  color:
    rgba(255, 255, 255, 0.72);

  font-size:
    0.75rem;

  margin-bottom:
    0.5rem;

  text-transform:
    uppercase;

  letter-spacing:
    0.06em;

  font-weight:
    600;
}

.cc-leaderboard-stat strong {
  display: block;

  color:
    var(--cc-green);

  font-size:
    0.9375rem;

  font-weight:
    700;

  line-height:
    1.35;
}


/* ---------------------------------------------------------
   ACTIVITIES
--------------------------------------------------------- */

.cc-leaderboard-activities {
  margin-top:
    0.5rem;

  margin-bottom:
    clamp(2rem, 4vw, 2.125rem);
}

.cc-leaderboard-activities > h3 {
  font-size:
    clamp(1.75rem, 3.5vw, 2.25rem);

  line-height:
    1.05;

  margin:
    0
    0
    1.125rem;

  text-transform:
    uppercase;
}

.cc-leaderboard-activities-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap:
    1.125rem;
}

.cc-leaderboard-activity {
  position: relative;

  background:
    var(--cc-surface);

  border:
    1px solid var(--cc-border);

  border-radius:
    var(--cc-radius-md);

  padding:
    1.375rem
    1.125rem
    1.375rem
    1.5rem;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;

  overflow:
    hidden;
}

.cc-leaderboard-activity::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width:
    3px;

  background:
    linear-gradient(
      180deg,
      var(--cc-green),
      rgba(0, 224, 184, 0.25)
    );
}

.cc-leaderboard-activity:hover {
  border-color:
    rgba(0, 224, 184, 0.22);

  transform:
    translateY(-3px);

  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.35);
}

.cc-leaderboard-activity-number {
  display: block;

  font-family:
    'Barlow Condensed',
    sans-serif;

  font-size:
    0.75rem;

  font-weight:
    800;

  letter-spacing:
    0.05em;

  color:
    var(--cc-green);

  margin-bottom:
    0.5rem;
}

.cc-leaderboard-activity h4 {
  margin:
    0
    0
    0.5rem;

  font-size:
    clamp(1.25rem, 2.2vw, 1.75rem);

  line-height:
    1.1;

  text-transform:
    uppercase;
}

.cc-leaderboard-activity-meta {
  font-weight:
    700;

  color:
    rgba(255, 255, 255, 0.62);

  text-transform:
    none;

  font-size:
    0.85em;
}

.cc-leaderboard-activity p {
  margin:
    0;

  color:
    var(--cc-white);

  font-size:
    0.9375rem;

  line-height:
    1.6;
}


/* ---------------------------------------------------------
   BUTTON ROWS
--------------------------------------------------------- */

.cc-leaderboard-button-row {
  text-align:
    center;

  margin-top:
    0.5rem;

  margin-bottom:
    clamp(2rem, 4vw, 2.125rem);
}

.cc-leaderboard-button-row.is-secondary {
  margin-bottom:
    1.5rem;
}


/* ---------------------------------------------------------
   COMPETITION PACKAGES
--------------------------------------------------------- */

.cc-leaderboard-packages {
  background:
    linear-gradient(
      165deg,
      #0a0a0a 0%,
      #0d1412 100%
    );

  border:
    1px solid rgba(0, 224, 184, 0.16);

  border-radius:
    var(--cc-radius-lg);

  padding:
    clamp(1.75rem, 4vw, 2.125rem)
    clamp(1.25rem, 3vw, 1.75rem);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cc-leaderboard-packages-header {
  text-align:
    center;

  max-width:
    42rem;

  margin:
    0
    auto
    1.125rem;
}

.cc-leaderboard-packages-header h3 {
  font-size:
    clamp(1.75rem, 3.5vw, 2.25rem);

  line-height:
    1.05;

  margin:
    0
    0
    1.125rem;

  text-transform:
    uppercase;
}

.cc-leaderboard-packages-header p {
  color:
    var(--cc-white);

  font-size:
    1rem;

  line-height:
    1.65;

  margin:
    0;
}


/* ---------------------------------------------------------
   PACKAGE TABLE
--------------------------------------------------------- */

.cc-leaderboard-table-wrap {
  overflow-x:
    auto;

  -webkit-overflow-scrolling:
    touch;

  border-radius:
    var(--cc-radius-md);

  background:
    #fff;

  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25);
}

.cc-leaderboard-table {
  width:
    100%;

  min-width:
    320px;

  border-collapse:
    collapse;

  background:
    #fff !important;

  border:
    1px solid rgba(0, 0, 0, 0.08);

  font-family:
    'Inter',
    system-ui,
    sans-serif;
}

.cc-leaderboard-table thead th {
  background:
    var(--cc-green) !important;

  color:
    #050505 !important;

  font-size:
    0.8125rem;

  font-weight:
    800;

  text-transform:
    uppercase;

  letter-spacing:
    0.06em;

  padding:
    1rem
    1.125rem;

  text-align:
    left;

  border-bottom:
    1px solid rgba(0, 0, 0, 0.12);
}

.cc-leaderboard-table tbody td {
  padding:
    1.125rem;

  border-bottom:
    1px solid rgba(0, 0, 0, 0.08) !important;

  color:
    #0f172a !important;

  background-color:
    #fff !important;

  font-size:
    1rem;

  vertical-align:
    middle;
}

.cc-leaderboard-table tbody tr:last-child td {
  border-bottom:
    none !important;
}

.cc-leaderboard-table tbody tr:hover td {
  background-color:
    #f0fdf6 !important;
}

.cc-leaderboard-table tbody td:nth-child(2),
.cc-leaderboard-table tbody td:nth-child(3) {
  white-space:
    nowrap;

  font-variant-numeric:
    tabular-nums;
}

.cc-leaderboard-value {
  color:
    #0d7a5c !important;

  font-weight:
    700;
}


/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .cc-leaderboard-pulse {
    animation:
      none;
  }

  .cc-leaderboard-activity,
  .cc-leaderboard-stat {
    transition:
      none;
  }

  .cc-leaderboard-activity:hover,
  .cc-leaderboard-stat:hover {
    transform:
      none;
  }

}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 980px) {

  .cc-leaderboard-top,
  .cc-leaderboard-activities-grid {
    grid-template-columns:
      1fr;
  }

  .cc-leaderboard-preview {
    position:
      static;
  }

  .cc-leaderboard-stats-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* ---------------------------------------------------------
   MOBILE TABLE
--------------------------------------------------------- */

@media (max-width: 640px) {

  .cc-leaderboard-stats-grid {
    grid-template-columns:
      1fr;
  }

  .cc-leaderboard-table thead {
    display:
      none;
  }

  .cc-leaderboard-table tbody tr {
    display:
      grid;

    grid-template-columns:
      1fr
      auto;

    gap:
      0.25rem
      1rem;

    padding:
      1rem
      1.125rem;

    border-bottom:
      1px solid rgba(0, 0, 0, 0.08) !important;

    align-items:
      center;
  }

  .cc-leaderboard-table tbody tr:last-child {
    border-bottom:
      none !important;
  }

  .cc-leaderboard-table tbody td {
    display:
      block;

    padding:
      0.25rem
      0;

    border:
      none !important;

    white-space:
      normal;

    color:
      #0f172a !important;

    background-color:
      transparent !important;
  }

  .cc-leaderboard-table tbody tr:hover td {
    background-color:
      transparent !important;
  }

  .cc-leaderboard-table tbody tr:hover {
    background:
      #f0fdf6;
  }

  .cc-leaderboard-table tbody td:first-child {
    grid-column:
      1 / -1;

    font-weight:
      700;

    font-size:
      1.0625rem;

    padding-bottom:
      0.5rem;
  }

  .cc-leaderboard-table tbody td:nth-child(2)::before,
  .cc-leaderboard-table tbody td:nth-child(3)::before {
    content:
      attr(data-label) ": ";

    display:
      block;

    margin-bottom:
      0.25rem;

    font-size:
      0.75rem;

    font-weight:
      600;

    text-transform:
      uppercase;

    letter-spacing:
      0.05em;
  }

  .cc-leaderboard-table tbody td:nth-child(2)::before {
    color:
      #047857 !important;
  }

  .cc-leaderboard-table tbody td:nth-child(3)::before {
    color:
      #64748b !important;
  }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

  .cc-leaderboard-packages,
  .cc-leaderboard-preview-card,
  .cc-leaderboard-how {
    padding:
      1.375rem
      1.125rem;
  }

}

/* =========================================================
   EVENTS / PRIVATE EVENT COMPARISON
   ========================================================= */


/* ---------------------------------------------------------
   SECTION
--------------------------------------------------------- */

.cc-event-comparison {
  width: 100%;
  margin: 50px auto;

  color: var(--cc-white);

  font-family:
    'Inter',
    system-ui,
    sans-serif;
}

.cc-event-comparison * {
  box-sizing: border-box;
}

.cc-comparison-heading {
  margin:
    0
    0
    24px;

  color:
    var(--cc-white) !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    clamp(30px, 4vw, 48px);

  line-height:
    1;

  font-weight:
    900;

  text-transform:
    uppercase;

  letter-spacing:
    -1px;
}

.cc-comparison-heading span {
  color:
    var(--cc-green);
}


/* ---------------------------------------------------------
   DESKTOP COMPARISON TABLE
--------------------------------------------------------- */

.cc-comparison-wrap {
  overflow:
    hidden;

  border:
    1px solid var(--cc-green-border);

  border-radius:
    var(--cc-radius-lg);

  background:
    radial-gradient(
      circle at top right,
      rgba(0, 224, 184, 0.10),
      transparent 34%
    ),
    var(--cc-surface);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.45);
}

.cc-comparison-table {
  width:
    100%;

  border-collapse:
    collapse;

  table-layout:
    fixed;
}

.cc-comparison-table th,
.cc-comparison-table td {
  padding:
    20px
    24px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.09);

  text-align:
    center;

  vertical-align:
    middle;
}

.cc-comparison-table th:first-child,
.cc-comparison-table td:first-child {
  width:
    40%;

  text-align:
    left;
}

.cc-comparison-table thead th {
  padding-top:
    28px;

  padding-bottom:
    28px;

  background:
    rgba(0, 0, 0, 0.25);
}

.cc-comparison-table thead th:first-child {
  color:
    var(--cc-green) !important;

  font-size:
    13px;

  font-weight:
    800;

  text-transform:
    uppercase;

  letter-spacing:
    1.5px;
}

.cc-package-name {
  display:
    block;

  color:
    var(--cc-white) !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    25px;

  line-height:
    1.05;

  font-weight:
    900;

  text-transform:
    uppercase;
}

.cc-package-price {
  display:
    block;

  margin-top:
    9px;

  color:
    var(--cc-green);

  font-size:
    14px;

  line-height:
    1.5;

  font-weight:
    800;
}

.cc-feature-name {
  color:
    var(--cc-white) !important;

  font-size:
    16px;

  font-weight:
    700;
}

.cc-feature-value {
  color:
    var(--cc-white) !important;

  font-size:
    16px;

  font-weight:
    800;
}

.cc-check {
  display:
    inline-flex;

  width:
    28px;

  height:
    28px;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid var(--cc-green);

  border-radius:
    50%;

  background:
    rgba(0, 224, 184, 0.12);

  color:
    var(--cc-green);

  font-size:
    16px;

  font-weight:
    900;
}

.cc-dash {
  color:
    rgba(255, 255, 255, 0.35);

  font-size:
    20px;
}

.cc-comparison-table tbody tr:last-child td {
  border-bottom:
    0;
}

.cc-comparison-table tbody tr:hover {
  background:
    rgba(0, 224, 184, 0.045);
}


/* ---------------------------------------------------------
   EVENT CTA BUTTON
--------------------------------------------------------- */

.cc-table-cta {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  min-height:
    48px;

  padding:
    13px
    20px;

  border:
    1px solid var(--cc-green);

  border-radius:
    999px;

  background:
    var(--cc-green);

  color:
    #06110d !important;

  font-size:
    14px;

  font-weight:
    900;

  text-decoration:
    none !important;

  text-transform:
    uppercase;

  letter-spacing:
    0.5px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cc-table-cta:hover {
  background:
    transparent;

  color:
    var(--cc-green) !important;

  transform:
    translateY(-1px);
}


/* ---------------------------------------------------------
   MOBILE PACKAGE CARDS
--------------------------------------------------------- */

.cc-mobile-packages {
  display:
    none;
}


/* ---------------------------------------------------------
   BOOKING TERMS
--------------------------------------------------------- */

.cc-booking-terms {
  margin-top:
    28px;

  padding:
    28px;

  border:
    1px solid var(--cc-green-border);

  border-radius:
    var(--cc-radius-lg);

  background:
    radial-gradient(
      circle at top left,
      rgba(0, 224, 184, 0.09),
      transparent 38%
    ),
    var(--cc-surface);
}

.cc-booking-terms__eyebrow {
  display:
    block;

  margin-bottom:
    8px;

  color:
    var(--cc-green);

  font-size:
    13px;

  font-weight:
    900;

  text-transform:
    uppercase;

  letter-spacing:
    1.5px;
}

.cc-booking-terms h3 {
  margin:
    0
    0
    20px;

  color:
    var(--cc-white) !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    clamp(24px, 3vw, 34px);

  line-height:
    1.1;

  font-weight:
    900;

  text-transform:
    uppercase;
}

.cc-booking-terms__grid {
  display:
    grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    14px;
}

.cc-booking-term {
  position:
    relative;

  padding:
    20px
    20px
    20px
    58px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius:
    15px;

  background:
    rgba(255, 255, 255, 0.035);
}

.cc-booking-term__icon {
  position:
    absolute;

  top:
    19px;

  left:
    18px;

  display:
    inline-flex;

  width:
    28px;

  height:
    28px;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid var(--cc-green);

  border-radius:
    50%;

  background:
    rgba(0, 224, 184, 0.12);

  color:
    var(--cc-green);

  font-size:
    13px;

  font-weight:
    900;
}

.cc-booking-term h4 {
  margin:
    0
    0
    6px;

  color:
    var(--cc-white) !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    17px;

  line-height:
    1.25;

  font-weight:
    900;

  text-transform:
    uppercase;
}

.cc-booking-term p {
  margin:
    0;

  color:
    var(--cc-white);

  font-size:
    15px;

  line-height:
    1.55;
}

.cc-booking-term--wide {
  grid-column:
    1 / -1;
}


/* ---------------------------------------------------------
   CANCELLATION POLICY
--------------------------------------------------------- */

.cc-cancellation-list {
  display:
    grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    10px;

  margin-top:
    12px;
}

.cc-cancellation-item {
  padding:
    13px;

  border-radius:
    10px;

  background:
    rgba(255, 255, 255, 0.05);
}

.cc-cancellation-item strong {
  display:
    block;

  margin-bottom:
    4px;

  color:
    var(--cc-green);

  font-size:
    14px;
}

.cc-cancellation-item span {
  color:
    var(--cc-white);

  font-size:
    14px;

  line-height:
    1.4;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

  .cc-event-comparison {
    width:
      100%;

    margin:
      30px
      0;

    padding:
      0;
  }

  .cc-comparison-heading {
    margin-bottom:
      22px;

    font-size:
      clamp(29px, 9vw, 39px);

    line-height:
      0.95;

    letter-spacing:
      -0.8px;
  }


  /* Hide desktop table */

  .cc-comparison-wrap {
    display:
      none;
  }


  /* Show cards */

  .cc-mobile-packages {
    display:
      grid;

    grid-template-columns:
      1fr;

    gap:
      18px;
  }

  .cc-mobile-package {
    overflow:
      hidden;

    width:
      100%;

    border:
      1px solid var(--cc-green-border);

    border-radius:
      var(--cc-radius-md);

    background:
      radial-gradient(
        circle at top right,
        rgba(0, 224, 184, 0.11),
        transparent 35%
      ),
      var(--cc-surface);
  }

  .cc-mobile-package__header {
    padding:
      24px
      20px
      21px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.1);

    background:
      rgba(0, 0, 0, 0.24);
  }

  .cc-mobile-package__name {
    display:
      block;

    margin-bottom:
      8px;

    color:
      var(--cc-white) !important;

    font-family:
      'Barlow Condensed',
      'Inter',
      sans-serif;

    font-size:
      24px;

    line-height:
      1.05;

    font-weight:
      900;

    text-transform:
      uppercase;
  }

  .cc-mobile-package__price {
    color:
      var(--cc-green);

    font-size:
      15px;

    line-height:
      1.5;

    font-weight:
      800;
  }

  .cc-mobile-package__features {
    margin:
      0;

    padding:
      0;

    list-style:
      none;
  }

  .cc-mobile-package__features li {
    display:
      flex;

    gap:
      14px;

    align-items:
      center;

    justify-content:
      space-between;

    min-height:
      57px;

    padding:
      13px
      18px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.085);
  }

  .cc-mobile-package__features li:last-child {
    border-bottom:
      0;
  }

  .cc-mobile-feature-label {
    flex:
      1 1 auto;

    min-width:
      0;

    color:
      var(--cc-white);

    font-size:
      15px;

    line-height:
      1.35;

    font-weight:
      700;
  }

  .cc-mobile-feature-value {
    flex:
      0 0 auto;

    max-width:
      47%;

    color:
      var(--cc-white);

    font-size:
      14px;

    line-height:
      1.35;

    font-weight:
      800;

    text-align:
      right;
  }

  .cc-mobile-package__footer {
    padding:
      18px;
  }

  .cc-mobile-package__footer .cc-table-cta {
    display:
      flex;

    width:
      100%;

    padding:
      15px
      18px;

    text-align:
      center;
  }


  /* Booking terms */

  .cc-booking-terms {
    margin-top:
      22px;

    padding:
      20px
      16px;

    border-radius:
      var(--cc-radius-md);
  }

  .cc-booking-terms h3 {
    font-size:
      26px;
  }

  .cc-booking-terms__grid {
    grid-template-columns:
      1fr;
  }

  .cc-booking-term,
  .cc-booking-term--wide {
    grid-column:
      auto;

    padding:
      20px
      17px
      20px
      55px;
  }

  .cc-booking-term__icon {
    left:
      16px;
  }

  .cc-booking-term h4 {
    font-size:
      16px;
  }

  .cc-booking-term p {
    font-size:
      14px;
  }

  .cc-cancellation-list {
    grid-template-columns:
      1fr;
  }

}

/* =========================================================
   EVENTS / FOOD, DRINKS & DOG TREATS
   ========================================================= */


/* ---------------------------------------------------------
   SECTION WRAPPER
--------------------------------------------------------- */

.ccc-event-menus {
  background:
    #343d46;

  color:
    var(--cc-white);

  padding:
    85px
    24px;

  font-family:
    'Inter',
    system-ui,
    sans-serif;
}

.ccc-event-menus,
.ccc-event-menus * {
  box-sizing:
    border-box;
}

.ccc-event-menus__inner {
  width:
    min(1160px, 100%);

  margin:
    0 auto;
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.ccc-event-menus__intro {
  max-width:
    810px;

  margin:
    0
    auto
    70px;

  text-align:
    center;
}

.ccc-event-menus__intro h2 {
  margin:
    0
    0
    18px;

  color:
    var(--cc-white) !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    clamp(34px, 5vw, 58px);

  font-weight:
    900;

  letter-spacing:
    -0.035em;

  line-height:
    1;

  text-transform:
    uppercase;
}

.ccc-event-menus__intro p {
  margin:
    0;

  color:
    var(--cc-white);

  font-size:
    18px;

  line-height:
    1.7;
}


/* ---------------------------------------------------------
   MENU ROWS
--------------------------------------------------------- */

.ccc-menu-row {
  display:
    grid;

  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(380px, 1.1fr);

  gap:
    clamp(55px, 8vw, 115px);

  align-items:
    center;

  margin-bottom:
    90px;
}

.ccc-menu-row:last-of-type {
  margin-bottom:
    70px;
}

.ccc-menu-row--reverse .ccc-menu-row__image {
  order:
    2;
}

.ccc-menu-row--reverse .ccc-menu-row__content {
  order:
    1;
}

.ccc-menu-row__image {
  display:
    flex;

  justify-content:
    center;

  align-items:
    center;
}

.ccc-menu-row__circle {
  position:
    relative;

  display:
    flex;

  width:
    min(430px, 100%);

  aspect-ratio:
    1 / 1;

  align-items:
    center;

  justify-content:
    center;

  overflow:
    hidden;

  border-radius:
    50%;

  background:
    #000;
}

.ccc-menu-row__circle::after {
  position:
    absolute;

  inset:
    0;

  border:
    2px solid rgba(255, 255, 255, 0.09);

  border-radius:
    inherit;

  content:
    "";

  pointer-events:
    none;
}

.ccc-menu-row__circle img {
  display:
    block;

  width:
    108%;

  height:
    108%;

  object-fit:
    contain;

  object-position:
    center;
}

.ccc-menu-row__content {
  max-width:
    590px;
}

.ccc-menu-row__content h3 {
  margin:
    0
    0
    14px;

  color:
    var(--cc-white) !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    clamp(27px, 3vw, 40px);

  font-weight:
    900;

  letter-spacing:
    -0.025em;

  line-height:
    1.05;

  text-transform:
    uppercase;
}

.ccc-menu-row__content p {
  margin:
    0
    0
    25px;

  color:
    var(--cc-white);

  font-size:
    18px;

  line-height:
    1.55;
}

.ccc-menu-row__content a:not(.ccc-menu-button) {
  color:
    var(--cc-white);

  font-weight:
    900;

  text-decoration:
    underline;
}

.ccc-menu-row__note {
  padding-left:
    15px;

  border-left:
    4px solid var(--cc-green);

  font-size:
    15px !important;

  line-height:
    1.55 !important;

  opacity:
    0.95;
}


/* ---------------------------------------------------------
   MENU BUTTON
--------------------------------------------------------- */

.ccc-menu-button {
  display:
    inline-flex;

  min-height:
    51px;

  align-items:
    center;

  justify-content:
    center;

  gap:
    9px;

  padding:
    13px
    22px;

  border:
    2px solid var(--cc-green);

  border-radius:
    999px;

  background:
    var(--cc-green);

  color:
    #000 !important;

  font-size:
    18px;

  font-weight:
    800;

  line-height:
    1.2;

  text-decoration:
    none !important;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.ccc-menu-button::after {
  content:
    "»";

  font-size:
    22px;

  font-weight:
    400;

  line-height:
    1;
}

.ccc-menu-button:hover {
  background:
    transparent;

  color:
    var(--cc-white) !important;

  transform:
    translateY(-2px);
}


/* ---------------------------------------------------------
   FOOD & BEVERAGE POLICY
--------------------------------------------------------- */

.ccc-food-policy {
  overflow:
    hidden;

  margin-top:
    30px;

  border-radius:
    var(--cc-radius-lg);

  background:
    var(--cc-green);

  color:
    #000;
}

.ccc-food-policy__header {
  padding:
    45px
    40px
    28px;

  text-align:
    center;
}

.ccc-food-policy__header span {
  display:
    inline-block;

  margin-bottom:
    12px;

  font-size:
    14px;

  font-weight:
    900;

  letter-spacing:
    0.11em;

  text-transform:
    uppercase;
}

.ccc-food-policy__header h3 {
  margin:
    0
    0
    13px;

  color:
    #000 !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    clamp(31px, 4.5vw, 50px);

  font-weight:
    900;

  letter-spacing:
    -0.035em;

  line-height:
    1.05;

  text-transform:
    uppercase;
}

.ccc-food-policy__header p {
  max-width:
    790px;

  margin:
    0 auto;

  color:
    #000;

  font-size:
    18px;

  line-height:
    1.6;
}

.ccc-food-policy__body {
  padding:
    0
    40px
    45px;
}

.ccc-food-policy__grid {
  display:
    grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    18px;
}


/* ---------------------------------------------------------
   POLICY ITEMS
--------------------------------------------------------- */

.ccc-policy-item {
  position:
    relative;

  min-height:
    145px;

  padding:
    25px
    25px
    24px
    70px;

  border-radius:
    15px;

  background:
    #fff;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.08);
}

.ccc-policy-item__icon {
  position:
    absolute;

  top:
    24px;

  left:
    23px;

  display:
    flex;

  width:
    32px;

  height:
    32px;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    #000;

  color:
    #fff;

  font-size:
    17px;

  font-weight:
    900;

  line-height:
    1;
}

.ccc-policy-item h4 {
  margin:
    0
    0
    7px;

  color:
    #000 !important;

  font-family:
    'Barlow Condensed',
    'Inter',
    sans-serif;

  font-size:
    18px;

  font-weight:
    900;

  line-height:
    1.25;

  text-transform:
    uppercase;
}

.ccc-policy-item p {
  margin:
    0;

  color:
    #000;

  font-size:
    15px;

  line-height:
    1.55;
}

.ccc-policy-item a {
  color:
    #000;

  font-weight:
    900;

  text-decoration:
    underline;
}


/* WIDE ITEM */

.ccc-policy-item--wide {
  grid-column:
    1 / -1;

  min-height:
    auto;

  background:
    #000;

  color:
    #fff;
}

.ccc-policy-item--wide .ccc-policy-item__icon {
  background:
    var(--cc-green);

  color:
    #000;
}

.ccc-policy-item--wide h4,
.ccc-policy-item--wide p {
  color:
    #fff !important;
}


/* ---------------------------------------------------------
   POLICY FOOTER
--------------------------------------------------------- */

.ccc-food-policy__footer {
  padding:
    23px
    30px;

  background:
    rgba(0, 0, 0, 0.09);

  text-align:
    center;
}

.ccc-food-policy__footer p {
  margin:
    0;

  color:
    #000;

  font-size:
    15px;

  font-weight:
    700;

  line-height:
    1.55;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

  .ccc-event-menus {
    padding:
      65px
      22px;
  }

  .ccc-event-menus__intro {
    margin-bottom:
      55px;
  }

  .ccc-menu-row,
  .ccc-menu-row--reverse {
    grid-template-columns:
      1fr;

    gap:
      35px;

    margin-bottom:
      75px;

    text-align:
      center;
  }

  .ccc-menu-row--reverse .ccc-menu-row__image,
  .ccc-menu-row--reverse .ccc-menu-row__content {
    order:
      initial;
  }

  .ccc-menu-row__content {
    max-width:
      690px;

    margin:
      0 auto;
  }

  .ccc-menu-row__note {
    max-width:
      590px;

    margin-right:
      auto !important;

    margin-left:
      auto !important;

    padding-left:
      0;

    border-left:
      0;
  }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 650px) {

  .ccc-event-menus {
    padding:
      50px
      17px;
  }

  .ccc-event-menus__intro {
    margin-bottom:
      45px;
  }

  .ccc-event-menus__intro p,
  .ccc-menu-row__content p {
    font-size:
      16px;
  }

  .ccc-menu-row {
    gap:
      28px;

    margin-bottom:
      60px;
  }

  .ccc-menu-row__circle {
    width:
      min(340px, 100%);
  }

  .ccc-menu-button {
    width:
      100%;
  }

  .ccc-food-policy {
    border-radius:
      17px;
  }

  .ccc-food-policy__header {
    padding:
      35px
      21px
      24px;
  }

  .ccc-food-policy__header p {
    font-size:
      16px;
  }

  .ccc-food-policy__body {
    padding:
      0
      15px
      25px;
  }

  .ccc-food-policy__grid {
    grid-template-columns:
      1fr;

    gap:
      13px;
  }

  .ccc-policy-item,
  .ccc-policy-item--wide {
    grid-column:
      auto;

    min-height:
      auto;

    padding:
      22px
      19px
      22px
      61px;
  }

  .ccc-policy-item__icon {
    top:
      21px;

    left:
      18px;
  }

  .ccc-food-policy__footer {
    padding:
      20px;
  }

}

/* =========================================================
   SITEWIDE IMPORTANT UPDATE BANNER
   ========================================================= */

.cc-important-banner {
  position: relative;
  z-index: 9999;

  width: calc(100% - 208px);
  margin-left: 208px;

  box-sizing: border-box;

  background: var(--cc-green);

  border-bottom:
    2px solid #000;
}

.cc-banner-inner {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  max-width: 1400px;

  margin: 0 auto;

  padding:
    10px
    28px;
}

.cc-banner-message {
  flex: 1;

  color:
    #000 !important;

  text-decoration:
    none !important;

  font-size:
    15px;

  line-height:
    1.35;

  text-align:
    center;

  font-weight:
    500;
}

.cc-banner-message:hover {
  color:
    #000 !important;
}

.cc-banner-message strong {
  font-weight:
    800;
}

.cc-banner-btn {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 42px;

  padding:
    10px
    20px;

  border-radius:
    999px;

  background:
    #000;

  color:
    #fff !important;

  text-decoration:
    none !important;

  font-size:
    14px;

  font-weight:
    800;

  line-height:
    1.2;

  white-space:
    nowrap;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.cc-banner-btn:hover {
  background:
    #222;

  color:
    #fff !important;

  transform:
    translateY(-1px);
}


/* ---------------------------------------------------------
   MOBILE / TABLET
--------------------------------------------------------- */

@media (max-width: 980px) {

  .cc-important-banner {
    width: 100%;
    margin-left: 0;
  }

  .cc-banner-inner {
    flex-direction: column;

    gap: 12px;

    padding:
      16px;

    text-align:
      center;
  }

  .cc-banner-btn {
    width: 100%;
  }

}
/* =========================================================
   A LA CARTE SERVICES TABLE
   ========================================================= */

.cc-alacarte-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cc-alacarte-table {
  width: 100%;
  border-collapse: collapse;

  background: #fff;

  border: 2px solid #000;
}

.cc-alacarte-table th,
.cc-alacarte-table td {
  color: #000 !important;
  opacity: 1 !important;

  border: 2px solid #000;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.cc-alacarte-table thead tr {
  background: var(--cc-green);
}

.cc-alacarte-table thead th {
  padding:
    10px
    15px;

  font-family:
    'Mayonice',
    cursive;

  font-size:
    1.8em;

  font-weight:
    200;
}

.cc-alacarte-table thead th:last-child {
  width:
    60px;

  text-align:
    center;
}


/* ---------------------------------------------------------
   SERVICE ROWS
--------------------------------------------------------- */

.cc-alacarte-service {
  padding:
    10px
    15px;

  font-family:
    'Bebas Neue',
    sans-serif;

  font-size:
    1.6em;

  font-weight:
    600;
}

.cc-alacarte-service-note {
  font-family:
    'Century Gothic',
    sans-serif;

  font-size:
    0.7em;

  font-weight:
    400;
}

.cc-alacarte-price {
  padding:
    10px
    15px;

  text-align:
    center;

  vertical-align:
    top;

  font-family:
    'Bebas Neue',
    sans-serif;

  font-size:
    1.8em;

  font-weight:
    600;
}


/* ---------------------------------------------------------
   DROP-IN DETAILS
--------------------------------------------------------- */

.cc-alacarte-dropin-title {
  display:
    block;

  font-family:
    'Bebas Neue',
    sans-serif;

  font-size:
    1.6em;

  font-weight:
    600;
}

.cc-alacarte-dropin-details {
  margin-top:
    1rem;

  text-align:
    center;

  font-family:
    'Century Gothic',
    sans-serif;

  font-size:
    1.25em;

  line-height:
    1.55;
}

.cc-alacarte-dropin-note {
  display:
    block;

  margin-bottom:
    1rem;

  font-style:
    italic;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 640px) {

  .cc-alacarte-table thead th {
    font-size:
      1.45em;
  }

  .cc-alacarte-service,
  .cc-alacarte-dropin-title {
    font-size:
      1.35em;
  }

  .cc-alacarte-price {
    font-size:
      1.5em;

    white-space:
      nowrap;
  }

  .cc-alacarte-dropin-details {
    font-size:
      1em;
  }

}

/* ---------------------------------------------------------
   A LA CARTE TABLE BORDER VARIANTS
--------------------------------------------------------- */

.cc-alacarte-table--thin,
.cc-alacarte-table--thin th,
.cc-alacarte-table--thin td {
  border-width: 1px;
}