/*
Theme Name: Quicklaunch Child
Theme URI:
Template: quicklaunch-parent-theme
Author: Quicklaunch
Author URI: https://www.quicklaunch.co.uk/
Description: Child theme.
Version: 1.0
*/

:root {
    --font-heading: "the-seasons", sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --color-header-bg: #35302a;
    --color-header-text: #ffffff;
    --color-header-accent: #c7a45d;
    --font-size-h1: clamp(3.5rem, 8vw, 8.9375rem); /* ~56px to 143px, target approx 107pt */
    --font-size-h2: clamp(2rem, 4.25vw, 4.25rem); /* ~32px to 68px */
    --font-size-h3: clamp(2rem, 2.8vw, 2.625rem); /* ~32px to 42px */
    --font-size-h4: clamp(1.5rem, 2.4vw, 2rem); /* ~24px to 32px */
    --font-size-h5: clamp(1.125rem, 1.7vw, 1.375rem); /* ~18px to 22px */
    --font-size-h6: clamp(0.9375rem, 1.2vw, 1rem); /* ~15px to 16px */
    --font-size-xl: clamp(2.5rem, 4.5vw, 4rem); /* ~40px to 64px */
    --font-size-xxl: clamp(3rem, 6vw, 5rem); /* ~48px to 80px */
    --font-size-xxxl: clamp(3.5rem, 7.5vw, 6.5rem); /* ~56px to 104px */
    --font-size-body: 1rem; /* 16px */
    --line-height-h1: 0.95;
    --line-height-h2: 1.1;
    --line-height-h3: 1.15;
    --line-height-h4: 1.2;
    --line-height-h5: 1.35;
    --line-height-h6: 1.4;
    --line-height-xl: 1.05;
    --line-height-xxl: 1;
    --line-height-xxxl: 0.95;
    --line-height-body: 1.5625; /* 25px on 16px */
    --space-heading: clamp(0.75rem, 1vw, 1rem);
    --space-body: 1.5625rem;
}

body,
input,
textarea,
select,
button {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
}

html,
body {
    overflow-x: clip;
}

.no-gutter .col-sm-12 {
    padding-left: 0px;
    padding-right: 0px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--space-heading);
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
}

h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
}

h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
}

h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
}

h4 {
    font-size: var(--font-size-h4);
    line-height: var(--line-height-h4);
}

h5 {
    font-size: var(--font-size-h5);
    line-height: var(--line-height-h5);
}

h6 {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-h6);
}

p,
ul,
ol {
    margin: 0 0 var(--space-body);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}

ul,
ol {
    padding-left: 1.25rem;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

.slick-slide img {
    display: block;
    width: 100%;
    padding: 0 10px;
}

.home .vc_row > .container-fluid {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

.home .vc_row > .container-fluid > .row {
    margin-left: 0;
    margin-right: 0;
}

.home .vc_row > .container-fluid > .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

#hero-section {
    position: relative;
    overflow: hidden;
}

#hero-section > div:not(.vc_parallax-inner) {
    position: relative;
    z-index: 2;
}

#hero-section .vc_parallax-inner {
    z-index: 0;
}

#hero-section .vc_parallax-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #B59457;
    background: linear-gradient(90deg,rgba(181, 148, 87, 0.43) 40%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
}

.font-size-h1 {
    font-size: var(--font-size-h1) !important;
    line-height: var(--line-height-h1) !important;
}

.font-size-h2 {
    font-size: var(--font-size-h2) !important;
    line-height: var(--line-height-h2) !important;
}

.font-size-h3 {
    font-size: var(--font-size-h3) !important;
    line-height: var(--line-height-h3) !important;
}

.font-size-h4 {
    font-size: var(--font-size-h4) !important;
    line-height: var(--line-height-h4) !important;
}

.font-size-h5 {
    font-size: var(--font-size-h5) !important;
    line-height: var(--line-height-h5) !important;
}

.font-size-h6 {
    font-size: var(--font-size-h6) !important;
    line-height: var(--line-height-h6) !important;
}

.font-size-xl {
    font-size: var(--font-size-xl) !important;
    line-height: var(--line-height-xl) !important;
}

.font-size-xxl {
    font-size: var(--font-size-xxl) !important;
    line-height: var(--line-height-xxl) !important;
}

.font-size-xxxl {
    font-size: var(--font-size-xxxl) !important;
    line-height: var(--line-height-xxxl) !important;
}

.white-text {color: #fff;}
.darkbg {background-color: #252626; color: #fff;}

.small {
    font-size: 85%;
	line-height: 150%;
}

.site-band {padding: 30px 0;}
.site-band.top {padding: 30px 0 0 0;}
.site-band.bottom {padding: 0 0 30px 0;}

@media (min-width: 992px) {
    .site-band {padding: 70px 0;}
    .site-band.top {padding: 70px 0 0 0;}
    .site-band.bottom {padding: 0 0 70px 0;}
}

.light-bg {background-color: #f5f2ed;}
.dark-bg {background-color: #35302a; color: #fff;}
.copper-bg {background-color: #b59457;}

.content ul li,
.content ol li,
.site-band ul li,
.site-band ol li,
.role ol li,
.role ul li {}

.eyebrow {
    font-family: var(--font-body);
    letter-spacing: 3px;
    font-weight: bold;
    font-size: var(--font-size-body);
    color: #b59457;
}

a {
    color: #b59457;
    font-weight: bold;
    text-decoration: none;
}
a:hover {
    color: #b59457;
    font-weight: bold;
    text-decoration: underline;
}

.brand {
	width: 104px;
    margin: 20px;
	padding: 0px !important;
}

.brand img {
	width: 100%;
	height: auto;
}

.scrolling-text {
    font-family: var(--font-heading);
}

/* Navigation */

header {}

.lw-header {
    background-color: var(--color-header-bg);
}

.lw-header__bar {
    background-color: var(--color-header-bg);
}

.lw-header__nav {
    padding: 0;
}

.lw-header__desktop {
    display: block;
}

.lw-header__desktop-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(2rem, 4vw, 4.5rem);
    min-height: 132px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.9rem 0;
}

.lw-header__desktop-side {
    display: flex;
    align-items: center;
}

.lw-header__desktop-side--left {
    justify-content: flex-end;
}

.lw-header__desktop-side--right {
    justify-content: flex-start;
}

.lw-header__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: var(--color-header-text);
    text-align: center;
    text-decoration: none;
}

.lw-header__brand:hover,
.lw-header__brand:focus {
    color: var(--color-header-text);
    text-decoration: none;
}

.lw-header__brand img {
    display: block;
    width: clamp(220px, 24vw, 420px);
    max-width: 100%;
    height: auto;
}

.lw-header__brand--desktop {
    width: clamp(260px, 25vw, 380px);
}

.lw-header__brand--mobile {
    align-items: flex-start;
    width: auto;
}

.lw-header__brand-title {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3.6vw, 4rem);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.lw-header__brand-tagline {
    display: block;
    margin-top: 0.45rem;
    color: var(--color-header-accent);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 0.95vw, 1rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.navbar-toggler {
    color: #fff;
    padding: 20px;
    font-size: 1rem;
    line-height: 1;
    background-color: #c49245;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}

.lw-header__toggle {
    display: none;
    margin-left: auto;
    color: var(--color-header-text);
    background-color: transparent;
    border: 0;
    box-shadow: none;
}

.lw-header__toggle:hover,
.lw-header__toggle:focus {
    color: var(--color-header-text);
    background-color: transparent;
    box-shadow: none;
}

#navbar-header button i a {
	color: #09478E !important;
}

.lw-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.2rem, 2vw, 2.8rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.lw-header__menu--left {
    justify-content: flex-end;
}

.lw-header__menu--right {
    justify-content: flex-start;
}

.lw-header__menu-item {
    margin: 0;
    padding: 0;
}

#menu-wrap ul.menu li a,
.lw-header__menu-link,
.lw-header__menu .nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-header-text);
    text-decoration: none;
    padding: 0;
}

.lw-header__menu-link:hover,
.lw-header__menu-link:focus,
.lw-header__menu .nav-link:hover,
.lw-header__menu .nav-link:focus {
    color: var(--color-header-accent);
}

#menu-wrap ul.menu li.active a,
.lw-header__menu-link.is-current,
.lw-header__mobile-menu > .current-menu-item > a,
.lw-header__mobile-menu > .current-menu-parent > a,
.lw-header__mobile-menu > .current-menu-ancestor > a {
	color: #c49245;
}

.dropdown-menu {
    position: absolute;
    top: 173%;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #262626;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
}

.active {
    color: #c49245 !important;
    font-weight: 900 !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #c49245 !important;
    background-color: #000;
}

.dropdown-item.active, .dropdown-item:active {
    color: #c49245;
    font-weight: 900;
    background-color: #000;
}



/* Nav END */


@media (max-width: 1199.98px) {
    .lw-header__desktop-nav {
        column-gap: clamp(1.5rem, 2.4vw, 2.75rem);
        max-width: 1200px;
    }

    .lw-header__brand--desktop {
        width: clamp(220px, 23vw, 320px);
    }

    .lw-header__menu {
        gap: clamp(1rem, 1.4vw, 1.75rem);
    }
}

@media (max-width: 991.98px) {
    .lw-header__desktop {
        display: none;
    }

    .lw-header__nav--mobile {
        display: block;
    }

    .lw-header__mobile-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 1rem;
        min-height: 96px;
        padding: 1rem 0;
        width: 100%;
    }

    .lw-header__brand--mobile img {
        width: clamp(180px, 44vw, 280px);
    }

    .lw-header__brand-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        text-align: left;
    }

    .lw-header__brand-tagline {
        margin-top: 0.35rem;
        font-size: 0.75rem;
        letter-spacing: 0.18em;
    }

    .lw-header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: end;
        margin-left: auto;
        padding: 0.25rem 0;
        font-size: 2rem;
        color: #d3af37;
    }

    .lw-header__toggle i {
        color: inherit;
    }

    .lw-header__toggle:hover,
    .lw-header__toggle:focus,
    .lw-header__toggle:active {
        color: #d3af37;
    }

    .lw-header__toggle:hover i,
    .lw-header__toggle:focus i,
    .lw-header__toggle:active i {
        color: inherit;
    }

    .lw-header__mobile-shell {
        flex-basis: 100%;
        width: 100%;
        padding: 0;
        background-color: var(--color-header-bg);
    }

    .lw-header__mobile-shell.collapsing,
    .lw-header__mobile-shell.show {
        display: block;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 0.75rem;
        background-color: transparent;
    }
}

@media (min-width: 992px) {
    .lw-header__nav--mobile {
        display: none;
    }
}

.lw-header__mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 1rem 0 0.5rem;
    list-style: none;
}

.lw-header__mobile-menu > .menu-item {
    width: 100%;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lw-header__mobile-menu > .menu-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lw-header__mobile-menu > .menu-item > a,
.lw-header__mobile-menu .nav-link {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-header-text);
    text-decoration: none;
    text-align: center;
}

.lw-header__mobile-menu > .menu-item > a:hover,
.lw-header__mobile-menu > .menu-item > a:focus,
.lw-header__mobile-menu .nav-link:hover,
.lw-header__mobile-menu .nav-link:focus {
    color: var(--color-header-accent);
}

footer #menu-header-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer #menu-header-2 > .menu-item {
    margin: 0;
    padding: 0;
}

footer #menu-header-2 > .menu-item > a {
    display: inline-block;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: none;
}

footer #menu-header-2 > .menu-item > a:hover,
footer #menu-header-2 > .menu-item > a:focus {
    color: var(--color-header-accent);
}

@media (max-width: 767.98px) {
    footer #menu-header-2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.5rem;
        width: 100%;
    }

    footer #menu-header-2 > .menu-item > a {
        display: block;
        text-align: center;
    }
}

/* Form */


/* Footer  */

#ftr-cta h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
}

.footer-logo img {
    max-width: 350px;
}

.bl,
.ol {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 35px;
    font-size: var(--font-size-body);
    font-family: var(--font-body);
    text-decoration: none;
    text-transform: capitalize;
    transition: margin ease 0.3s, padding ease 0.5s;
}

.bl:hover,
.ol:hover {
    margin: 0;
    padding: 15px 35px;
    transition: margin ease 0.3s, padding ease 0.5s;
    text-decoration: none;
}

.bl.ondark {
    background-color: #fff;
    color: #000;
}

.bl.onlight {
    background-color: #35302a;
    color: #fff;
}

.bl.onlight:hover {
    background-color: #35302a;
    color: #fff;
}


.ol.onlight {
    color: #000;
    border: 1px solid #b59457;
}

.ol.ondark {
    color: #fff;
    border: 1px solid #fff;
}

/* Page title */

#page-title h1 {
    color: #f5f2ed;
    margin-bottom: 1.25rem;
}

#page-title {
    position: relative;
    background-size: cover;
    background-position: center center;
}

#page-title .page-title-inner {
    position: relative;
    z-index: 2;
    padding: 10% 0;
}

#page-title .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #B59457;
    background: linear-gradient(90deg, rgba(181, 148, 87, 0.43) 40%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
}

#page-title .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #ffffff;
}

#page-title .breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
}

#page-title .breadcrumb li + li::before {
    content: "/";
    margin: 0 0.6rem;
    color: #d3af37;
    font-weight: 400;
}

#page-title .breadcrumb a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

#page-title .breadcrumb a:hover,
#page-title .breadcrumb a:focus {
    color: #ffffff;
    text-decoration: none;
}

#page-title .breadcrumb .current-item,
#page-title .breadcrumb span[property="name"] {
    color: #ffffff;
}

.lw-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    line-height: 1;
}

.lw-whatsapp-button i {
    font-size: 1.15rem;
}

.lw-whatsapp-button:hover,
.lw-whatsapp-button:focus {
    margin: 0;
    padding: 12px 30px;
}

.lw-price-list-page {
    padding: 4rem 0 6rem;
}

.sticky {
    position: sticky;
    top: 2rem;
}

.lw-price-list-layout {
    align-items: flex-start;
}

.lw-price-list-sidebar {
    padding: 2.25rem 2rem;
    border-radius: 2rem;
    background-color: #35302a;
    color: #ffffff;
}

.lw-price-list-sidebar__eyebrow {
    margin-bottom: 1.15rem;
    color: #d3af37;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.lw-price-list-sidebar__title {
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: clamp(2.25rem, 3vw, 3.5rem);
    line-height: 1;
}

.lw-price-list-sidebar__links {
    margin: 0 0 2.25rem;
    padding: 0;
    list-style: none;
}

.lw-price-list-sidebar__links li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.lw-price-list-sidebar__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.25;
    font-weight: 400;
    text-decoration: none;
}

.lw-price-list-sidebar__links a:hover,
.lw-price-list-sidebar__links a:focus {
    color: #d3af37;
    text-decoration: none;
}

.lw-price-list-sidebar__cta {
    display: inline-block;
}

.lw-price-category + .lw-price-category {
    margin-top: 4rem;
}

.lw-price-category__title {
    margin-bottom: 1.75rem;
    color: #35302a;
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    line-height: 1;
}

.lw-price-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lw-price-card {
    border-radius: 0.5rem;
    background-color: #ffffff;
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.lw-price-card.is-open {
    background-color: #d3af37;
    box-shadow: 0 14px 35px rgba(53, 48, 42, 0.12);
}

.lw-price-card__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    padding: 1.35rem 1.6rem;
    border: 0;
    background: transparent;
    color: #35302a;
    text-align: left;
    transition: color 0.3s ease;
}

.lw-price-card.is-open .lw-price-card__toggle {
    color: #ffffff;
}

.lw-price-card__heading {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.lw-price-card__icon,
.lw-price-card__title,
.lw-price-card__from {
    font-family: var(--font-body);
    line-height: 1.2;
}

.lw-price-card__icon {
    font-size: 1.4rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.lw-price-card__title {
    font-size: 1.15rem;
    font-weight: 700;
}

.lw-price-card__from {
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.lw-price-card__panel {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 1.6rem;
    color: #ffffff;
    opacity: 0;
    transition: grid-template-rows 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}

.lw-price-card:not(.is-open) .lw-price-card__panel {
    color: #35302a;
}

.lw-price-card.is-open .lw-price-card__panel {
    grid-template-rows: 1fr;
    padding: 0 1.6rem 1.5rem;
    opacity: 1;
}

.lw-price-card.is-open .lw-price-card__icon {
    transform: rotate(45deg);
}

.lw-price-card__panel-inner {
    min-height: 0;
    overflow: hidden;
}

.lw-price-card__prices {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.lw-price-card__prices li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0.3rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.lw-price-card__blurb {
    margin-bottom: 1.5rem;
    color: inherit;
}

.lw-price-card__blurb p {
    margin-bottom: 1rem;
    color: inherit;
}

.lw-price-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.5rem;
}

.lw-price-list-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.lw-price-list-whatsapp i {
    font-size: 1rem;
}

.lw-price-list-whatsapp:hover,
.lw-price-list-whatsapp:focus {
    margin: 0;
    padding: 15px 35px;
    background-color: rgba(255, 255, 255, 0.2);
}

.lw-price-card__cta {
    margin: 0;
}

.lw-price-card__link {
    color: inherit;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.lw-price-card__link:hover,
.lw-price-card__link:focus {
    color: inherit;
}

.lw-single-post {
    padding: 4rem 0 5rem;
}

.lw-single-post__layout {
    align-items: flex-start;
}

.lw-single-post__article {
    color: #35302a;
}

.lw-single-post__content {
    margin-bottom: 2rem;
}

.lw-single-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(53, 48, 42, 0.18);
    color: #35302a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.lw-single-post__sidebar {
    padding-left: 1rem;
}

.lw-single-post__sidebar > * + * {
    margin-top: 1.5rem;
}

.lw-related-posts {}

.lw-related-posts__title {
    margin-bottom: 3rem !important;
    color: #35302a;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.lw-related-post {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(53, 48, 42, 0.12);
    border-radius: 1rem;
    background-color: #ffffff;
}

.lw-related-post__title {
    margin-bottom: 0.75rem;
    color: #35302a;
    font-size: 1.5rem;
    line-height: 1.1;
}

.lw-related-post__title a {
    color: inherit;
    text-decoration: none;
}

.lw-related-post__title a:hover,
.lw-related-post__title a:focus {
    color: #d3af37;
}

.lw-related-post__date {
    margin-bottom: 0.75rem;
    color: rgba(53, 48, 42, 0.72);
    font-size: 0.95rem;
    line-height: 1.4;
}

.lw-related-post__excerpt {
    margin-bottom: 1rem;
}

.lw-related-post__link {
    color: #35302a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.lw-related-post__link:hover,
.lw-related-post__link:focus {
    color: #d3af37;
}

.lw-single-treatment {
    padding: 4rem 0 5rem;
}

.lw-single-treatment__layout {
    align-items: flex-start;
    row-gap: 2rem;
}

.lw-single-treatment__content {
    color: #35302a;
}

.lw-treatment-gallery {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 1.5rem;
}

.lw-treatment-gallery__slide img {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    border-radius: 1.5rem;
}

.lw-treatment-gallery .slick-track {
    display: flex;
}

.lw-treatment-gallery .slick-slide {
    height: auto;
}

.lw-treatment-gallery .slick-slide > div {
    height: 100%;
}

.lw-treatment-gallery .slick-dots {
    bottom: 1.25rem;
}

.lw-treatment-gallery .slick-dots li button:before {
    color: #ffffff;
    opacity: 0.5;
}

.lw-treatment-gallery .slick-dots li.slick-active button:before {
    color: #ffffff;
    opacity: 1;
}

.lw-single-treatment__blurb {
    margin-bottom: 2rem;
    color: #35302a;
    font-size: 1.15rem;
    line-height: 1.65;
}

.lw-single-treatment__blurb p {
    color: inherit;
}

.lw-single-treatment__info {
    color: #35302a;
}

.lw-single-treatment__sidebar {
    width: 100%;
}

.lw-treatment-prices {
    width: 100%;
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background-color: #ffffff;
    color: #35302a;
    box-shadow: 0 14px 35px rgba(53, 48, 42, 0.08);
}

.lw-treatment-prices__title {
    margin-bottom: 1.25rem;
    color: #35302a;
}

.lw-treatment-prices__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lw-treatment-prices__list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(53, 48, 42, 0.1);
    color: #35302a;
    font-size: 1rem;
    line-height: 1.5;
}

.lw-treatment-prices__list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.lw-single-treatment__whatsapp {
    justify-content: center;
}

@media (max-width: 991.98px) {
    .lw-price-list-page {
        padding: 3rem 0 4rem;
    }

    .sticky {
        position: static;
    }

    .lw-price-list-sidebar {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .lw-price-category + .lw-price-category {
        margin-top: 3rem;
    }

    .lw-single-post {
        padding: 3rem 0 4rem;
    }

    .lw-single-post__sidebar {
        padding-left: 0;
        margin-top: 2rem;
    }

    .lw-related-posts {
        margin-top: 3rem;
    }

    .lw-single-treatment {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 767.98px) {
    .lw-price-card__toggle {
        flex-direction: column;
        align-items: flex-start;
    }

    .lw-price-card__from {
        flex-shrink: 1;
    }

    .lw-price-card__prices li {
        flex-direction: column;
        gap: 0.1rem;
    }

    .lw-treatment-prices__list li {
        flex-direction: column;
        gap: 0.15rem;
    }
}
