*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

* {
    font-family: "proxima-nova", sans-serif;
    padding: 0px;
    margin: 0px;
}
html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h2 .display-none {
    display: none;
}

.primary-btn {
    background-color: #5c115c;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    border: 5px solid #5c115c;
}
.primary-btn:hover {
    background-color: #952b95;
    border: 5px solid #952b95;
}
.primary-invert-btn {
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    border: 5px solid #5c115c;
}
.primary-invert-btn:hover {
    color: #5c115c;
    background-color: white;
    border: 5px solid #952b95;
}
.secondary-btn {
    background-color: #952b95;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    border: 5px solid #952b95;
}
.secondary-btn:hover {
    background-color: #5c115c;
    border: 5px solid #5c115c;
}
/* ── Top snackbar ─────────────────────────────────────────── */
.snackbar {
    background-color: rgb(92, 17, 92);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 201;
    transition: transform 0.3s ease-in-out;
}
.snackbar.scrolled {
    transform: translateY(-100%);
}
.snackbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 24px;
    color: white;
    box-sizing: border-box;
}
.snackbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.snackbar-left img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.9;
}
.snackbar-left span {
    font-size: 0.82rem;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.snackbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.snackbar-link {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.snackbar-link:hover {
    color: #fff;
    text-decoration: underline;
}
.snackbar-divider {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

/* ── Desktop basket icon in nav ───────────────────────────── */
.nav-basket-item {
    display: flex;
    align-items: center;
}
.nav-basket-link {
    display: flex;
    align-items: center;
    position: relative;
    padding: 6px 8px;
    color: #444;
    text-decoration: none;
}
.nav-basket-link svg {
    width: 22px;
    height: 22px;
    stroke: #555;
    fill: none;
    stroke-width: 2;
    display: block;
    transition: stroke 0.25s;
}
.nav-basket-link:hover svg { stroke: #952b95; }
.nav-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #5c115c;
    color: #fff;
    border-radius: 10px;
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}
.nav-cart-badge:empty { display: none; }

/* ── Mobile basket — hidden on desktop, flex item on mobile ── */
.mobile-basket-btn {
    display: none; /* desktop: hidden entirely */
}
.mobile-basket-btn svg {
    width: 22px;
    height: 22px;
    stroke: #5c115c;
    fill: none;
    stroke-width: 2;
    display: block;
}
.mobile-cart-badge {
    position: absolute;
    top: 1px;
    right: 1px;
    background: #5c115c;
    color: #fff;
    border-radius: 10px;
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}
.mobile-cart-badge:empty { display: none; }

@media (max-width: 600px) {
    .snackbar-inner { padding: 6px 14px; }
    .snackbar-right { display: none; }
}

/* todo: change this to a header element */
.header-main {
    width: 100%;
    height: 648px;
    background-image: url(../img/backgroundImage.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header-content .primary-btn {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .header-main {
        width: 100%;
        background-image: url(../img/backgroundImage.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
    }
}

/* !container and navbar */

.container {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    width: 125px;
}

.navbar input[type="checkbox"] {
    display: none;
}

/* Hide hamburger on desktop */
.hamburger-lines {
    display: none;
}

/* starts navbar */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    background-color: #f1f1f1;
    padding: 0 24px;
    border-radius: 15px;
    position: relative;
    z-index: 100;
}

.menu-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-items li {
    list-style: none;
    margin-left: 1.2rem;
    font-size: 1.1rem;
}

/* a tag inside the  */
.menu-items li a {
    display: inline-block;
    text-wrap: nowrap;
    color: #444;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}

.menu-items li a:hover {
    color: #952b95;
}
/* Hide snackbar-duplicate links from the desktop nav bar */
@media (min-width: 1151px) {
    .mobile-only-nav { display: none !important; }
}

.navbar.scrolled {
    transform: translateY(-34px);
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
}

.header-title {
    font-size: 4rem;
    width: 70%;
    line-height: 5.5rem;
    margin-bottom: 60px;
}
.ht-sub {
    margin-top: 75px;
    font-size: 4rem;
}
.header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.header-btn {
    margin-top: 1rem;
}

p {
    font-size: 1.2rem;
}

.main-content-title {
    margin: 60px 0;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    text-transform: capitalize;
}
/* Cols */
.split-50 {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.split-50 h2 {
    text-align: left;
}

.content-left {
    width: 48%;
}
.content-left img {
    width: 100%;
    height: auto;
}
.content-right {
    width: 48%;
}
.content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.content-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* !services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 55px;
}

.service-item {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.service-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 10px;
    text-align: right;
    padding-left: 50px;
}
.service-item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}

/* !meet the team page */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
}

.meet-item {
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.meet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.meet-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 10px;
    text-align: right;
    padding-left: 50px;
}

.meet-item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}

.info-bar {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    transition: bottom 0.3s ease-in-out;
    text-align: left;
}

.meet-item:hover .info-bar {
    bottom: 0;
}

.info-bar h4,
.info-bar p {
    margin: 0;
}

.meet-item h3,
.service-item h3 {
    /* scales up from 1.45rem to 3rem when the viewport between 769px and 1250px*/
    font-size: clamp(1.45rem, 5.156vw + -1.028rem, 3rem);
}

/* mobile phone */
@media (max-width: 500px) {
    .services-grid,
    .team-members-grid {
        display: flex;
        flex-direction: column;
    }

    .team-members-grid h3,
    .service-item h3 {
        font-size: 3rem;
    }
}

/* ── Homepage shop teaser section ─────────────────────────── */
.homepage-shop-section {
    padding: 70px 0 60px;
    background: #faf8fb;
}
.homepage-shop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.homepage-shop-sub {
    color: #666;
    font-size: 1rem;
    margin-top: 0.3rem;
}
.homepage-shop-cta {
    white-space: nowrap;
    flex-shrink: 0;
}
.homepage-product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}
.homepage-shop-footer {
    text-align: center;
    margin-top: 2.5rem;
    display: none; /* hidden on desktop — header already has the button */
}
@media (max-width: 900px) {
    .homepage-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .homepage-shop-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .homepage-shop-cta { display: none; }
    .homepage-shop-footer { display: block; }
}
@media (max-width: 480px) {
    .homepage-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.cta-1 {
    background-color: #bea0be;
    color: white;
    padding: 35px 0px;
    text-align: center;
    margin-top: 50px;
}
.cta-split {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cta-split h2 {
    font-size: 3rem;
    width: 60%;
    text-align: left;
}
.btn-stack {
    width: 30%;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-direction: column;
}
.center-btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

fieldset {
    border: 0;
}

.flex,
.fixed_flex {
    display: flex;
}

.flex-content {
    width: 100%;
    position: relative;
}

.padding_1x {
    padding: 1rem;
}

.padding_2x {
    padding: 2rem;
}

.padding_3x {
    padding: 3rem;
}

.padding_4x {
    padding: 4rem;
}
.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px 0 10px 10px;
    text-align: left;
}

th {
    font-weight: bold;
    background-color: #f2f2f2;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody tr:nth-child(even) {
    background-color: transparent;
}
.contact-h2 {
    font-size: 3rem;
}
.contact-info-list {
    margin-top: 10px;
    list-style: none;
    padding: 0;
}
.contact-info-list li {
    margin-bottom: 10px;
}
@media (max-width: 920px) {
    .flex {
        flex-wrap: wrap;
    }

    .padding_1x,
    .padding_2x,
    .padding_3x,
    .padding_4x {
        padding: 1rem;
    }
}

/*Contact us form */
.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
}

.contact-form fieldset {
    border: none;
    margin-bottom: 20px;
}

fieldset:has(input[type="checkbox"]) {
    display: flex;
    padding: 10px 0;
}

#callback-accepted {
    height: 16px;
    width: 16px;
    order: 1;
    align-self: center;
    margin-right: 8px;
}

label[for="callback-accepted"] {
    order: 2;
    margin-bottom: 0;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

/*Testimonials*/
.testimonials {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    text-align: left;
}

/* *************** RENT A CHAIR PAGE ***************** */

.rent-chair-header {
    /* increases font size between 501px and 1150px  */
    font-size: clamp(2.8rem, 2.958vw + 1.874rem, 4rem);
    margin-top: 60px;
    width: 85%;
}

.pazazz-standards-cont > p.main-content-par {
    margin-top: 60px;
}

.why-choose-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 60px;
}

.why-choose-left {
    width: clamp(385px, 50%, 550px);
}

/* making sure the img takes 100% of the container */
.why-choose-left img {
    width: 100%;
    height: 100%;
}

@media (max-width: 875px) {
    .why-choose-cont h2 {
        font-size: 2rem;
    }

    .why-choose-cont p {
        font-size: 1rem;
    }
}

.why-choose-right {
    display: grid;
    align-content: center;
    row-gap: 28px;
    width: 50%;
}

.purple-bg {
    display: flex;
    background-color: #bea0be;
    color: white;
    padding: 40px 0 60px;
    margin-top: 60px;
}

.standards-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section .subheading {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 2rem;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.standards-list > li {
    list-style: none;
    background-image: url("/uploads/list-style-icon.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 30px 30px;
    padding-left: 44px;
    font-size: 1.25rem;
    font-weight: 600;
}

.standards-wrapper img {
    width: 35%;
}

.whats-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.whats-included-grid .grid-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 2px solid #bea0be;
    border-radius: 10px;
    padding: 28px 20px;
}

.grid-h3 {
    font-size: 28px;
    font-weight: 700;
}

.ideal-for-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ideal-for-wrapper > * {
    width: fit-content;
}

.perfect-for-cont .standards-list {
    transform: translateX(-3.25%);
}

.get-started-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
}

.ready-to-join {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ready-to-join .main-content-title {
    margin: 60px 0 0;
}

.options-cont {
    position: relative;
    display: flex;
    gap: 32px;
}

.option {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: white;
    border-radius: 10px;
    width: 600px;
    padding: 48px;
}

.option:nth-of-type(1) {
    background-color: #bea0be;
}

.option:nth-of-type(2) {
    background-color: #5c115c;
}

.option > h3 {
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 20px;
}

.option > p {
    font-size: 24px;
    font-weight: 500;
}

/* circle with "or" */
.or-cont {
    position: absolute;
    display: inline-block;
    font-size: 40px;
    border-radius: 50%;
    background-color: white;
    width: 100px;
    height: 100px;
    display: grid;
    place-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
}

.contact-us-cont {
    gap: 40px;
}

span.get-in-touch-text {
    font-weight: bold;
}

.contact-us-cta {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-us-cont h2 {
    margin: 60px 0 0;
}

.rent-a-chair-contact,
.closing-words {
    margin-top: 60px;
}

@media (max-width: 1070px) {
    .perfect-for-cont .standards-list {
        align-items: start;
        transform: unset;
    }
}

@media (max-width: 992px) {
    .standards-wrapper {
        flex-direction: column;
    }

    .standards-wrapper img {
        margin-top: 28px;
        /* min width of 450px */
        width: max(60%, 450px);
    }
}

/***************************
               FOOTER
****************************/
footer {
    max-width: 1200px;
    width: 95%;
    margin: 25px auto;
}

footer h3 {
    margin-bottom: 1.5rem;
}

footer a {
    display: block;
    margin: 15px 0;
}

footer fieldset {
    padding: 0;
}

footer fieldset input {
    border: 0;
    padding: 1rem;
}

footer fieldset .btn {
    border-radius: 0;
    border: 0;
}

footer fieldset .btn_2:hover {
    border: 0;
}

footer .flex:last-child {
    align-items: center;
}

footer .flex:last-child .flex-content:last-child {
    text-align: right;
}

footer .flex:last-child a {
    width: 40px;
    display: inline-block;
    padding: 0.5rem;
    margin-right: 3px;
    text-align: center;
}

@media (max-width: 1100px) {
    footer .flex:first-child {
        flex-wrap: wrap;
    }

    footer .flex:first-child .flex-content {
        flex: 1 1 40%;
    }
}

@media (max-width: 920px) {
    footer .flex:last-child .flex-content:last-child {
        text-align: left;
    }
}

@media (max-width: 320px) {
    footer .flex:first-child .flex-content {
        flex: 1 1 100%;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    color: #000;
    margin-top: 34px;
    padding: 6px 0;
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

/* between 500 and 992px  */
@media (max-width: 992px) {
    .split-50 {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .split-50 h2 {
        text-align: center;
    }

    .whats-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-cont {
        display: flex;
        flex-direction: column;
    }

    .option {
        width: 100%;
        padding: 60px 48px;
    }

    .option > h3 {
        font-size: 40px;
    }

    .contact-us-cont > .form-container {
        max-width: unset;
        width: 100%;
    }
}

@media (max-width: 1241px) {
    .menu-items li {
        margin-left: 0.6rem;
        font-size: 0.95rem;
    }
}

/* !side navbar */
@media (max-width: 1150px) {
    /* Desktop basket sits in menu — hide it, mobile btn handles it */
    .nav-basket-item { display: none; }

    .navbar {
        opacity: 0.97;
    }

    /* Three-column layout: [hamburger] [logo centered] [basket] */
    .navbar-container {
        height: 68px;
        padding: 0 16px;
        justify-content: space-between;
    }

    /* Logo: absolutely centered so hamburger/basket size doesn't shift it */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        margin: 0;
    }

    /* Hamburger: left flex item */
    .navbar .hamburger-lines {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
        cursor: pointer;
        z-index: 101;
        flex-shrink: 0;
    }

    .hamburger-lines .line {
        display: block;
        height: 3px;
        width: 100%;
        border-radius: 3px;
        background: #5c115c;
    }

    .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    /* Mobile basket: right flex item.
       visibility:hidden (not display:none) so it holds its space even when
       empty — keeps the logo truly centered at all times */
    .mobile-basket-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;       /* badge positions relative to this */
        visibility: hidden;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        color: #5c115c;
        text-decoration: none;
    }

    .mobile-basket-btn.has-items {
        visibility: visible;
    }

    /* Slide-in menu drawer */
    .menu-items {
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        transform: translateX(-110%);
        top: 0;
        left: 0;
        margin: 0;
        padding-top: 110px;
        transition: transform 0.4s ease-in-out;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
        border-radius: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        z-index: 99;
        overflow-y: auto;
    }

    .menu-items li {
        font-size: 1.4rem;
        font-weight: 500;
        margin-left: 0;
        margin-bottom: 1.6rem;
        padding: 0 2.5rem;
        width: 100%;
    }

    .menu-items .primary-btn {
        font-size: 1.1rem;
        display: inline-block;
    }

    /* Open drawer */
    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    /* Animate hamburger → X */
    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }
}

/* tablets */
@media (max-width: 768px) {
    .services-grid,
    .team-members-grid {
        /* 2 x 2 layout */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-members-grid h3,
    .service-item h3 {
        font-size: 40px;
    }

    .why-choose-cont {
        flex-direction: column;
    }

    .why-choose-left {
        width: 100%;
    }
    .why-choose-right {
        width: 100%;
    }

    .why-choose-cont h2 {
        /* change back to original 2.5rem */
        font-size: 2.5rem;
        text-align: center;
    }

    .why-choose-cont p {
        /* change back to original 2.5rem */
        font-size: 1.1rem;
    }
}

@media (max-width: 760px) {
    .cta-split {
        flex-direction: column;
    }
    .cta-split h2 {
        width: 100%;
    }
    .btn-stack {
        margin-top: 25px;
        flex-direction: row;
        width: 100%;
        flex-basis: auto;
    }
}
@media (max-width: 500px) {
    /* controls specifically the 992 header on the homepage */
    .header-content .homepage-header {
        font-size: clamp(3rem, 17.778vw + -0.556rem, 5rem);
        line-height: clamp(3.9rem, 18.667vw + 0.167rem, 6rem);
    }

    .header-main {
        height: 900px;
        background-position: 80% 0;
    }

    .navbar.scrolled {
        transform: translateY(-34px);
    }

    .logo { width: 90px; }

    .header-title {
        font-size: 4rem;
    }
    .primary-btn,
    .primary-invert-btn {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
    .cta-split {
        flex-direction: column;
    }
    .content-left,
    .content-right,
    .service-item {
        width: 100%;
    }
    .cta-split h2 {
        width: 100%;
        font-size: 2.25rem;
    }
    .button-stack {
        width: 100%;
    }

    .rent-chair-header {
        font-size: 2.5rem;
    }

    .whats-included-grid {
        grid-template-columns: 1fr;
    }

    .standards-wrapper img {
        width: 100%;
    }

    .perfect-for-container h2 {
        font-size: 40px;
    }
}

.privacy-h2 {
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.systm-laert {
    padding: 10px;
    font-size: 16px;
    background: coral;
    border-left: 2px solid red;
}
