/* =====================================================================
   Delivering a 5-Star Clean — page-specific styles
   Scoped under #five-star-clean wherever practical so nothing here
   leaks into global site styles.
   Uses existing CSS variables where available (falls back to sane
   defaults if a variable isn't defined site-wide, so this still
   renders correctly if run standalone).
   ===================================================================== */

#five-star-clean {
    --cn-green: var(--primary-green, #1a7a4c);
    --cn-green-dark: var(--primary-green-dark, #0f5c38);
    --cn-green-light: var(--light-green-bg, #eaf6ef);
    --cn-green-lighter: var(--lighter-green-bg, #f3faf6);
    --cn-navy: var(--heading-color, #0b2540);
    --cn-text: var(--body-text-color, #4a5568);
    --cn-border: var(--border-color, #e1e8e4);
    --cn-white: #fff;
    --cn-radius: 12px;
    --cn-radius-sm: 10px;
    --cn-shadow: 0 1px 2px rgba(11, 37, 64, 0.04), 0 1px 6px rgba(11, 37, 64, 0.04);
}

/* ---------------------------------------------------------------------
   Global safety nets (scoped to this page only)
   --------------------------------------------------------------------- */
#five-star-clean,
#five-star-clean * ,
#five-star-clean *::before,
#five-star-clean *::after {
    box-sizing: border-box;
}

#five-star-clean img,
#five-star-clean svg,
#five-star-clean video,
#five-star-clean iframe {
    max-width: 100%;
}

#five-star-clean img {
    display: block;
    height: auto;
}

#five-star-clean .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* ---------------------------------------------------------------------
   Breadcrumb
   --------------------------------------------------------------------- */
#five-star-clean .breadcrumb {
    padding: 20px 0 16px;
}

#five-star-clean .breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--cn-text);
}

#five-star-clean .breadcrumb a {
    color: var(--cn-text);
    text-decoration: none;
}

#five-star-clean .breadcrumb a:hover,
#five-star-clean .breadcrumb a:focus-visible {
    color: var(--cn-green);
    text-decoration: underline;
}

#five-star-clean .breadcrumb li[aria-current="page"] {
    color: var(--cn-navy);
    font-weight: 500;
}

#five-star-clean .breadcrumb__sep {
    color: #b7c2bd;
}

/* ---------------------------------------------------------------------
   Layout — two column desktop grid
   --------------------------------------------------------------------- */
#five-star-clean .resource-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 24px;
    align-items: start;
    padding-bottom: 48px;
}

#five-star-clean .resource-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#five-star-clean .resource-sidebar {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ---------------------------------------------------------------------
   Badges
   --------------------------------------------------------------------- */
#five-star-clean .badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

#five-star-clean .badge--category {
    background: var(--cn-green-light);
    color: var(--cn-green-dark);
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
#five-star-clean .hero {
    min-width: 0;
}

#five-star-clean .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: 40px;
    align-items: center;
}

#five-star-clean .hero__content {
    min-width: 0;
}

#five-star-clean .hero__title {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.15;
    color: var(--cn-navy);
    margin: 16px 0 12px;
    overflow-wrap: break-word;
}

#five-star-clean .hero__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--cn-navy);
    margin: 0 0 12px;
}

#five-star-clean .hero__description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--cn-text);
    margin: 0 0 20px;
    max-width: 60ch;
}

#five-star-clean .hero__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

#five-star-clean .hero__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cn-navy);
}

#five-star-clean .hero__meta-item:last-child {
    color: var(--cn-green);
}

#five-star-clean .hero__media {
    position: relative;
    min-width: 0;
}

#five-star-clean .hero__image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--cn-radius);
}

#five-star-clean .hero__note {
    position: absolute;
    top: -18px;
    right: -10px;
    background: var(--cn-green-lighter);
    border-radius: var(--cn-radius-sm);
    padding: 16px 18px;
    max-width: 160px;
    box-shadow: var(--cn-shadow);
}

#five-star-clean .hero__note p {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: var(--cn-navy);
    font-style: italic;
}

#five-star-clean .hero__note-heart,
#five-star-clean .media-note__heart {
    width: 18px;
    height: 18px;
    fill: var(--cn-green);
    margin-top: 8px;
}

/* ---------------------------------------------------------------------
   Icons (generic)
   --------------------------------------------------------------------- */
#five-star-clean .icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

#five-star-clean .icon--filled {
    fill: currentColor;
    stroke: none;
}

/* ---------------------------------------------------------------------
   Content sections (numbered)
   --------------------------------------------------------------------- */
#five-star-clean .content-section {
    min-width: 0;
}

/* Styling for the real <x-bookings.section-heading :number :title
   :description /> component, which renders these cbp-section__* classes
   (confirmed from your component source):
     <div class="cbp-section__head">
       <span class="cbp-section__number">{{ $number }}</span>
       <div class="cbp-section__head-text">
         <h2>{{ $title }}</h2>
         <p class="cbp-section__desc">{{ $description }}</p>
       </div>
     </div>
   Page-specific spacing/sizing only — safe to trim if the component
   already looks right site-wide. */
#five-star-clean .cbp-section__head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

#five-star-clean .cbp-section__number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cn-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#five-star-clean .cbp-section__head-text {
    min-width: 0;
    padding-top: 4px;
}

#five-star-clean .cbp-section__head-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--cn-navy);
    margin: 0 0 4px;
}

#five-star-clean .cbp-section__desc {
    font-size: 14px;
    color: var(--cn-text);
    margin: 0;
}

/* ---------------------------------------------------------------------
   Checklist + image layout (sections 1, 3, 5)
   --------------------------------------------------------------------- */
#five-star-clean .checklist-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 20px;
    align-items: stretch;
}

#five-star-clean .checklist-card {
    background: var(--cn-green-lighter);
    border-radius: var(--cn-radius);
    padding: 20px 24px;
    min-width: 0;
}

#five-star-clean .checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Fallback checklist-item styling */
#five-star-clean .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--cn-navy);
    line-height: 1.4;
}

#five-star-clean .checklist-item__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cn-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#five-star-clean .checklist-media {
    position: relative;
    min-width: 0;
}

#five-star-clean .checklist-media img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    border-radius: var(--cn-radius);
}

#five-star-clean .media-note {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: #fff;
    border-radius: var(--cn-radius-sm);
    padding: 12px 14px;
    box-shadow: var(--cn-shadow);
}

#five-star-clean .media-note p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.3;
    color: var(--cn-navy);
}

/* ---------------------------------------------------------------------
   Feature cards (sections 2, 4)
   --------------------------------------------------------------------- */
#five-star-clean .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

/* Fallback feature-card styling */
#five-star-clean .feature-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    background: var(--cn-green-lighter);
    border: 1px solid var(--cn-border);
    border-radius: var(--cn-radius-sm);
    padding: 20px;
}

#five-star-clean .feature-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    color: var(--cn-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

#five-star-clean .feature-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--cn-navy);
    margin: 0 0 6px;
}

#five-star-clean .feature-card__description {
    font-size: 13px;
    color: var(--cn-text);
    line-height: 1.5;
    margin: 0;
}

/* ---------------------------------------------------------------------
   Success banner
   --------------------------------------------------------------------- */
#five-star-clean .success-banner {
    background: var(--cn-green-lighter);
    border-radius: var(--cn-radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

#five-star-clean .success-banner__left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

#five-star-clean .success-banner__icon {
    width: 40px;
    height: 40px;
    color: var(--cn-green);
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

#five-star-clean .success-banner__text {
    font-size: 17px;
    font-weight: 700;
    color: var(--cn-navy);
    margin: 0;
}

#five-star-clean .success-banner__right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cn-navy);
    flex-shrink: 0;
}

#five-star-clean .success-banner__right .icon--filled {
    color: var(--cn-green);
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
#five-star-clean .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: break-word;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

#five-star-clean .btn--primary {
    background: var(--cn-green);
    color: #fff;
}

#five-star-clean .btn--primary:hover,
#five-star-clean .btn--primary:focus-visible {
    background: var(--cn-green-dark);
}

#five-star-clean .btn--outline {
    background: transparent;
    color: var(--cn-green);
    border-color: var(--cn-green);
}

#five-star-clean .btn--outline:hover,
#five-star-clean .btn--outline:focus-visible {
    background: var(--cn-green-light);
}

#five-star-clean .btn--block {
    width: 100%;
    max-width: 100%;
}

#five-star-clean .btn:focus-visible {
    outline: 2px solid var(--cn-green-dark);
    outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   Previous / Next navigation
   --------------------------------------------------------------------- */
#five-star-clean .navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

#five-star-clean .btn--nav {
    width: auto;
    max-width: 100%;
}

/* ---------------------------------------------------------------------
   Sidebar cards
   --------------------------------------------------------------------- */
#five-star-clean .sidebar-card {
    background: #fff;
    border: 1px solid var(--cn-border);
    border-radius: var(--cn-radius);
    padding: 20px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

#five-star-clean .sidebar-card h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cn-navy);
    margin: 0 0 16px;
}

/* ---- Progress card ---- */
#five-star-clean .progress-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

#five-star-clean .progress-card__header h2 {
    margin: 0;
}

#five-star-clean .progress-ring {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

#five-star-clean .progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#five-star-clean .progress-ring__bg {
    fill: none;
    stroke: var(--cn-green-light);
    stroke-width: 6;
}

#five-star-clean .progress-ring__fill {
    fill: none;
    stroke: var(--cn-green);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 169.6; /* 2 * PI * r(27) */
    stroke-dashoffset: calc(169.6 - (169.6 * var(--progress, 0) / 100));
    transition: stroke-dashoffset .3s ease;
}

#five-star-clean .progress-ring__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--cn-navy);
}

#five-star-clean .progress-steps {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Fallback progress-step styling */
#five-star-clean .progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cn-navy);
}

#five-star-clean .progress-step__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#five-star-clean .progress-step--completed .progress-step__icon {
    background: var(--cn-green);
    color: #fff;
}

#five-star-clean .progress-step--incomplete .progress-step__icon {
    border: 2px solid #d5dcd8;
    color: transparent;
}

#five-star-clean .progress-step--incomplete {
    color: var(--cn-text);
}

/* ---- Download resources ---- */
#five-star-clean .download-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#five-star-clean .download-item {
    display: flex;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cn-border);
}

#five-star-clean .download-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

#five-star-clean .download-item__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--cn-green-light);
    color: var(--cn-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

#five-star-clean .download-item__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

#five-star-clean .download-item__body {
    min-width: 0;
    flex: 1;
}

#five-star-clean .download-item__body h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--cn-navy);
    margin: 0 0 4px;
}

#five-star-clean .download-item__body p {
    font-size: 13px;
    color: var(--cn-text);
    line-height: 1.4;
    margin: 0 0 12px;
}

/* ---- Related resources ---- */
#five-star-clean .related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Styling for the real <x-bookings.related-resource :resource="$resource" />
   component, which renders these cbp-related__* classes. Kept here so the
   page-specific CSS still controls spacing/sizing inside the sidebar
   without touching the component's global styles. Safe to trim if the
   component already looks right site-wide — only .related-list (the
   wrapper this page adds) is required. */
#five-star-clean .cbp-related__item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

#five-star-clean .cbp-related__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

#five-star-clean .cbp-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#five-star-clean .cbp-related__body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#five-star-clean .cbp-related__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--cn-navy);
    line-height: 1.3;
}

#five-star-clean .cbp-related__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--cn-text);
}

#five-star-clean .cbp-related__type {
    color: var(--cn-green);
    font-weight: 600;
}

#five-star-clean .cbp-related__arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--cn-green);
    display: inline-flex;
}

/* The component's arrow <svg> has no width/height attributes of its
   own, only a viewBox — without this rule the browser falls back to
   its default unsized-SVG box (300x150px), which is what was blowing
   up the sidebar layout. */
#five-star-clean .cbp-related__arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---- Top tips ---- */
#five-star-clean .tip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Fallback tip-item styling */
#five-star-clean .tip-item {
    display: flex;
    gap: 12px;
}

#five-star-clean .tip-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--cn-green-light);
    color: var(--cn-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

#five-star-clean .tip-item__icon svg {
    width: 16px;
    height: 16px;
}

#five-star-clean .tip-item__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--cn-navy);
    margin: 0 0 2px;
}

#five-star-clean .tip-item__description {
    font-size: 13px;
    color: var(--cn-text);
    line-height: 1.4;
    margin: 0;
}

/* ---- Support card ---- */
#five-star-clean .support-card {
    text-align: left;
}

#five-star-clean .support-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cn-green-light);
    color: var(--cn-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

#five-star-clean .support-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

#five-star-clean .support-card h2 span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: var(--cn-text);
    margin-top: 2px;
}

#five-star-clean .support-card p {
    font-size: 13px;
    color: var(--cn-text);
    line-height: 1.5;
    margin: 0 0 16px;
}

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

/* ---- Large tablet: 992px–1199px ---- */
@media (max-width: 1199px) {
    #five-star-clean .resource-layout {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 20px;
    }
}

/* ---- Tablet: 768px–991px ---- */
@media (max-width: 991px) {
    #five-star-clean .resource-layout {
        grid-template-columns: minmax(0, 1fr) 250px;
        gap: 20px;
    }

    #five-star-clean .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #five-star-clean .hero__title {
        font-size: 36px;
    }

    #five-star-clean .checklist-layout {
        grid-template-columns: minmax(0, 1fr) 160px;
    }
}

/* Tablet: if content gets cramped, stack sidebar below main content */
@media (max-width: 850px) {
    #five-star-clean .resource-layout {
        display: block;
    }

    #five-star-clean .resource-sidebar {
        margin-top: 24px;
    }
}

/* ---- Mobile: <= 767px (true single column) ---- */
@media (max-width: 767px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    #five-star-clean .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 18px;
        padding-right: 18px;
    }

    #five-star-clean .resource-layout {
        display: block;
        width: 100%;
        max-width: 100%;
        padding-bottom: 32px;
    }

    #five-star-clean .resource-main {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 32px;
    }

    #five-star-clean .resource-sidebar {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-top: 24px;
    }

    #five-star-clean .breadcrumb ol {
        font-size: 12px;
        white-space: normal;
    }

    /* Hero */
    #five-star-clean .hero__grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    #five-star-clean .hero__content {
        order: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    #five-star-clean .hero__media {
        order: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-top: 20px;
    }

    #five-star-clean .hero__title {
        font-size: 30px;
    }

    #five-star-clean .hero__image {
        height: 260px;
    }

    #five-star-clean .hero__note {
        position: static;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-top: -20px;
        margin-right: 12px;
    }

    /* Checklist + image sections */
    #five-star-clean .checklist-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #five-star-clean .checklist-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px;
    }

    #five-star-clean .checklist-media {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-top: 16px;
    }

    #five-star-clean .checklist-media img {
        min-height: 200px;
    }

    /* Feature cards */
    #five-star-clean .feature-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 12px;
    }

    #five-star-clean .feature-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* Success banner */
    #five-star-clean .success-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    #five-star-clean .success-banner__right {
        align-self: flex-start;
    }

    /* Navigation */
    #five-star-clean .navigation {
        flex-direction: column;
    }

    #five-star-clean .navigation .btn,
    #five-star-clean .btn--nav {
        width: 100%;
        max-width: 100%;
    }

    /* Sidebar */
    #five-star-clean .sidebar-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    #five-star-clean .sidebar .btn,
    #five-star-clean .support-card .btn,
    #five-star-clean .progress-card .btn {
        width: 100%;
        max-width: 100%;
    }

    #five-star-clean .cbp-related__item {
        align-items: flex-start;
    }
}

/* ---- Small mobile: <= 480px ---- */
@media (max-width: 480px) {
    #five-star-clean .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #five-star-clean .checklist-card,
    #five-star-clean .sidebar-card,
    #five-star-clean .feature-card {
        padding: 16px;
    }

    #five-star-clean .hero__title {
        font-size: 30px;
    }

    #five-star-clean .success-banner__text {
        font-size: 16px;
    }
}

/* ---- Very small mobile: <= 360px ---- */
@media (max-width: 360px) {
    #five-star-clean .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #five-star-clean .hero__title {
        font-size: 28px;
    }

    #five-star-clean .checklist-card,
    #five-star-clean .sidebar-card,
    #five-star-clean .feature-card {
        padding: 14px;
    }

    #five-star-clean .btn {
        padding: 11px 16px;
        font-size: 13px;
    }
}


/* =========================================================
   DELIVERING 5-STAR CLEAN
   TOP TIPS SIDEBAR FIX
   Scoped only to this page/sidebar
   ========================================================= */

.cleaner-bookings-page .cbp-card--tint {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.cleaner-bookings-page .cbp-card--tint > h3 {
    margin: 0 0 18px;
    padding: 0;

    color: var(--navy, #0d2635);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.cleaner-bookings-page .cbp-card--tint .tip-list,
.cleaner-bookings-page .cbp-card--tint > ul {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   Individual Tip
   ========================================================= */

.cleaner-bookings-page .cbp-tip {
    display: flex;
    align-items: flex-start;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0 0 18px;
    padding: 0;

    gap: 11px;

    list-style: none;
    box-sizing: border-box;
}

.cleaner-bookings-page .cbp-tip:last-child,
.cleaner-bookings-page .cbp-tip.is-last {
    margin-bottom: 0;
}


/* =========================================================
   Tip Icon
   ========================================================= */

.cleaner-bookings-page .cbp-tip__icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

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

    color: var(--green-600, #16804f);

    font-size: 21px;
    line-height: 1;

    box-sizing: border-box;
}

span.cbp-tip__icon {

color:#1a7a4c;
}

.cleaner-bookings-page .cbp-tip__icon i {
    display: block;
    line-height: 1;
}


/* =========================================================
   Tip Content
   ========================================================= */

.cleaner-bookings-page .cbp-tip__body {
    display: block;

    flex: 1 1 auto;
    width: auto;
    max-width: 100%;
    min-width: 0;

    box-sizing: border-box;
}


/* =========================================================
   Tip Title
   ========================================================= */

.cleaner-bookings-page .cbp-tip__title {
    display: block;

    margin: 0 0 3px;
    padding: 0;

    color: var(--navy, #0d2635);

    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;

    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================================================
   Tip Description
   ========================================================= */

.cleaner-bookings-page .cbp-tip__desc {
    display: block;

    margin: 0;
    padding: 0;

    color: var(--gray-600, #5b6b73);

    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;

    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================================================
   ICON FALLBACK
   Your current PHP uses:
   star, home, heart, people, leaf

   This keeps the current PHP unchanged.
   ========================================================= */

.cleaner-bookings-page .cbp-tip__icon i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
}

/* 1 - Be thorough */
.cleaner-bookings-page .cbp-tip:nth-child(1) .cbp-tip__icon i::before {
    content: "\f005";
}

/* 2 - Be consistent */
.cleaner-bookings-page .cbp-tip:nth-child(2) .cbp-tip__icon i::before {
    content: "\f015";
}

/* 3 - Be proactive */
.cleaner-bookings-page .cbp-tip:nth-child(3) .cbp-tip__icon i::before {
    content: "\f004";
}

/* 4 - Be customer-focused */
.cleaner-bookings-page .cbp-tip:nth-child(4) .cbp-tip__icon i::before {
    content: "\f0c0";
}

/* 5 - Take pride */
.cleaner-bookings-page .cbp-tip:nth-child(5) .cbp-tip__icon i::before {
    content: "\f06c";
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .cleaner-bookings-page .cbp-card--tint {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        box-sizing: border-box;
    }

    .cleaner-bookings-page .cbp-card--tint > h3 {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .cleaner-bookings-page .cbp-tip {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        gap: 10px;
        margin-bottom: 16px;

        box-sizing: border-box;
    }

    .cleaner-bookings-page .cbp-tip__icon {
        flex: 0 0 30px;

        width: 30px;
        height: 30px;

        font-size: 20px;
    }

    .cleaner-bookings-page .cbp-tip__body {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 40px);
    }

    .cleaner-bookings-page .cbp-tip__title {
        font-size: 13px;
        line-height: 1.35;
    }

    .cleaner-bookings-page .cbp-tip__desc {
        font-size: 12px;
        line-height: 1.45;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cleaner-bookings-page .cbp-tip {
        gap: 9px;
        margin-bottom: 15px;
    }

    .cleaner-bookings-page .cbp-tip__icon {
        flex: 0 0 28px;

        width: 28px;
        height: 28px;

        font-size: 18px;
    }

    .cleaner-bookings-page .cbp-tip__body {
        max-width: calc(100% - 37px);
    }

    .cleaner-bookings-page .cbp-tip__title {
        font-size: 12.5px;
    }

    .cleaner-bookings-page .cbp-tip__desc {
        font-size: 11.5px;
        line-height: 1.45;
    }
}

/* =========================================================
   TOP TIPS - GREEN ICONS
   ========================================================= */

.cleaner-bookings-page .cbp-tip__icon,
.cleaner-bookings-page .cbp-tip__icon i,
.cleaner-bookings-page .cbp-tip__icon i::before {
    color: #1a7a4c!important;
}