/*
Theme Name: Beaumedique Theme
Version: 1.0.0
*/

/* Reset some basic elements */
body,
h1,
h2,
h3,
p,
ul,
li,
figure,
figcaption,
blockquote,
dl,
button {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Outfit', sans-serif;
}

h1 {
    font-size: 48px;
}

/* Set up a responsive base */
*,
*:before,
*:after {
    box-sizing: border-box;
}

:root {
    --beaumedique-blue: #4564ad;
    --beaumedique-blue-dark: #263864;
    --beaumedique-blue-soft: #edf1fb;
    --beaumedique-ink: #292929;
    --beaumedique-muted: #5f6470;
    --beaumedique-warm: #999481;
    --beaumedique-warm-dark: #666457;
    --beaumedique-cream: #fbfaf6;
    --beaumedique-line: #dedede;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}


body {
    line-height: normal;
    color: #333;
    background-color: #f4f4f4;
    max-width: 100%;
    overflow-x: clip;
}

html {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

/* Style the header */
header {
    background-color: #fff;
    border-bottom: 1px solid #dddddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: auto;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}


.centered-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* This ensures that the text inside the flex items is also centered */
}

/* Main content styles */
main {
    max-width: min(1440px, 100vw);
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    padding-bottom: 40px;
}

body.home main {
    padding-bottom: 0;
}

/* Home section */
#home {
    background: url('https://beaumedique.nl/wp-content/uploads/beaumedique-public-image-hashes/02baaea5df7c78a1513a9d867eab84a1.jpg') no-repeat center center;
    background-size: cover;
    height: 500px;
    /* Fixed height for the hero section */
    display: flex;
    align-items: center;
    position: relative;
    /* For absolute positioning of the text box */
}

#home .hero-text-box {
    max-width: calc(1440px / 9 * 5);
    /* Width is 4/9 of 1440px */
    padding: 20px;
    /* Padding inside the box */
    margin: 20px
        /* Optional: rounds the corners of the box */
}

#home h1 {
    color: #333;
    /* Text color */
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    /* Space between the title and the paragraph */
}

#home p {
    color: #555;
    /* Text color */
    font-size: 20px;
    margin-bottom: 30px;
    /* Space between the paragraph and the button */
}

#home button {
    background-color: #999481;
    color: white;
    padding: 15px 30px;
    font-size: 24px;
    border: 5px solid #FFFFFF;
    border-radius: 121px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    animation: appointment-button-load 1.1s ease-out 0.45s both;
}

#home button:hover {
    background-color: #666457;
}

@keyframes appointment-button-load {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(153, 148, 129, 0);
    }

    35% {
        transform: scale(1.06);
        box-shadow: 0 12px 28px rgba(153, 148, 129, 0.35);
    }

    60% {
        transform: scale(0.98);
    }

    80% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(153, 148, 129, 0);
    }
}

@keyframes news-action-button-load {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(69, 100, 173, 0);
    }

    35% {
        transform: scale(1.06);
        box-shadow: 0 12px 28px rgba(69, 100, 173, 0.28);
    }

    60% {
        transform: scale(0.98);
    }

    80% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(69, 100, 173, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    #home button,
    .news-action-button-primary {
        animation: none;
    }
}

/* Treatments grid */
.treatment-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: inherit;
    text-decoration: none;
}

.treatment-item {
    text-align: center;
    height: auto;
    text-align: center;
    margin: 20px;
    max-width: 250px;
    max-height: 250px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.treatment-item:hover {
    transform: translateY(-5px);
}

.treatment-item h2 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.treatment-item * {
    text-decoration: none;
}

.treatment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-card-image-wrapper {
    position: relative;
    border-style: solid;
    border-color: #9b987b;
    border-width: 2px;
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    flex-shrink: 1;
}

.treatment-card-image-wrapper #click-icon {
    width: 10%;
}

#about .about-container {

    background-color: #F7F5FE;
    display: flex;
    justify-content: center;
    /* Horizontally center items in the container */
    max-width: 1440px;
    margin: auto;
    /* Center the container */
    flex-wrap: nowrap;
    /* Allows items to wrap on smaller screens */
}

#about .about-text {
    flex: 1 41 900px;
    /* Allows the text box to grow */
    padding: 20px;
}

#about .about-face {
    object-fit: cover;
    /* This will cover the area, cropping off any excess */
    object-position: center;
    /* Align the image nicely in the container */
    margin: 20px;
    flex: 1 59 350px;
    max-height: 650px;
}

#about .about-certification {
    max-width: 300px;
    padding-top: 20px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer ul * {
    color: #ffffff;
    font-size: 16px;
}

footer .flex-four-columns * {
    margin-bottom: 10px;
}

footer img {
    height: auto;
    max-width: 200px;
}

.flex-three-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;

}

.flex-four-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1440px;
    margin: 0 auto;
}

.flex-four-columns > * {
    width: min(350px, 100%);
    max-width: 100%;
}

.flex-four-columns ul,
.flex-four-columns li,
.flex-four-columns h2,
.flex-four-columns .menu-footer-container {
    width: 100%;
    max-width: 100%;
}

.flex-column {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
}

.flex-three-columns > * {
    width: min(400px, 100%);
    max-width: 100%;
}

#Waarom>ul>li {
    font-size: 20px;
    padding: 20px;
}

.home-botox-days {
    background: #F7F5FE;
    border-top: 0;
    padding: 54px 28px 62px;
}

.home-botox-days__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 34px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

.home-botox-days__content {
    max-width: 650px;
}

.home-botox-days h2 {
    color: #292929;
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.home-botox-days p {
    color: #414141;
    font-size: 19px;
    line-height: 1.55;
    max-width: 620px;
    margin-bottom: 24px;
}

.home-botox-days__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
}

.home-botox-days__button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--beaumedique-blue);
    box-shadow: 0 10px 24px rgba(69, 100, 173, 0.22);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    padding: 0 22px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-botox-days__button:hover {
    background: var(--beaumedique-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(69, 100, 173, 0.26);
}

.home-botox-days__button svg {
    width: 24px;
    height: 24px;
}

.home-botox-days__text-link {
    color: var(--beaumedique-blue);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.home-botox-days__text-link:hover {
    color: var(--beaumedique-blue-dark);
    text-decoration: underline;
}

.home-botox-days__panel {
    overflow: hidden;
    border: 1px solid #dedbd5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(32, 43, 64, 0.13);
}

.home-botox-days__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, var(--beaumedique-blue), #5a70b5);
    color: #fff;
    padding: 22px 24px;
}

.home-botox-days__price span {
    font-size: 17px;
    line-height: 1.2;
}

.home-botox-days__price strong {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
}

.home-botox-days__dates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
}

.home-botox-days__dates time {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    color: #292929;
    background: #fbfbfb;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    padding: 8px 10px;
}

ul.checkmarked li::before {
    content: "\2713\0020";
    /* \2713 is the checkmark, \0020 is a space */
    color: green;
    /* Feel free to choose your own color */
}

.one-third {
    flex: 1 0 33.3%;
    min-width: 33.3%;
    padding: 20px;
}

.two-third {
    padding: 20px;
    flex: 0 2 66.6%;
}

.content-flex {
    margin: 20px;
    margin-top: 0px;
    display: flex;
    flex-flow: row wrap;
}

.page-content {
    margin-right: auto;
    margin-left: auto;
    padding-top: 10px;
    padding-left: 60px;
    padding-right: 60px;
}

.page-content>div {
    margin-top: 20px !important;
}

.page-content h1 strong,
.page-content h2 strong,
.page-content h3 strong {
    font-weight: bold;
}

.page-content .alignright {
    display: inline;
    float: right;
}

.page-content .alignleft {
    display: inline;
    float: left;
}

.page-content .aligncenter {
    display: flex;
    justify-content: center;
}

.page-content ul {
    list-style: disc;
    margin-left: 2em;
}

.page-content ol {
    list-style: decimal;
    margin-left: 2em;
}

.page-content :first-child h1 {
    padding-top: 10px;
}


.page-content h1 {
    margin-top: 10px;
}

.page-content ul li {
    list-style: disc;
}

.page-content ol,
.page-content ol li {
    list-style: decimal;
}

.page-content ul.has-text-align-center,
.page-content ol.has-text-align-center {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    list-style-position: inside;
    text-align: center;
}

.page-content p {
    margin-bottom: 1em;
}

.page-content h2 {
    margin-top: 1em;
    margin-bottom: .33em;
}

.page-content h3 {
    margin-bottom: 1em;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1em;
}

.single_banner {
    height: 300px;
    display: flex;
    background-position: 50% 0% !important;
    background-attachment: fixed !important;
    align-items: center;
    justify-content: center;
}

.behandelingbutton {
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.behandelingbutton:hover {
    background-color: var(--beaumedique-blue-dark) !important;
}

.single_banner h1 {
    color: #FFF;
    font-size: 600%;
    text-align: center;
}

.sample-treatment-page {
    --sample-navy: #070d37;
    --sample-blue: #5268c2;
    --sample-lavender: #eef1ff;
    --sample-gold: #cbb77a;
    max-width: none;
    padding: 28px 56px 48px;
    background: #fff;
}

.sample-treatment-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 450px);
    align-items: center;
    gap: 52px;
    width: 100%;
    max-width: 1560px;
    min-height: 496px;
    margin: 0 auto;
    padding: 52px 62px;
    color: var(--sample-navy);
    background:
        linear-gradient(110deg, rgba(255,255,255,0.98) 0%, rgba(250,251,255,0.97) 45%, rgba(236,240,255,0.95) 72%, rgba(214,224,255,0.95) 100%);
    border: 1px solid rgba(82,104,194,0.16);
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(82,104,194,0.16);
}

.sample-treatment-hero__copy {
    position: relative;
    z-index: 1;
}

.sample-treatment-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-bottom: 24px;
    padding: 0 14px;
    color: var(--sample-blue);
    background: #e9ecff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sample-treatment-hero__eyebrow:hover {
    color: #fff;
    background: var(--sample-blue);
    transform: translateY(-1px);
}

.sample-treatment-hero h1 {
    max-width: none;
    color: var(--sample-navy);
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 700;
}

.sample-treatment-hero__rule {
    display: block;
    width: 76px;
    height: 2px;
    margin: 28px 0 26px;
    background: var(--sample-gold);
}

.sample-treatment-hero__intro {
    max-width: 900px;
    color: var(--sample-navy);
    font-size: 22px;
    line-height: 1.45;
}

.sample-treatment-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.sample-treatment-hero__feature {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
    min-width: 0;
    max-width: 100%;
    min-height: 74px;
    padding: 12px 16px;
    box-sizing: border-box;
    overflow: hidden;
    color: var(--sample-blue);
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(82,104,194,0.1);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(82,104,194,0.1);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.sample-treatment-hero__feature > span {
    min-width: 0;
    line-height: 1.2;
    overflow: hidden;
    overflow-wrap: normal;
    text-overflow: ellipsis;
    word-break: normal;
    hyphens: none;
    white-space: nowrap;
}

.sample-treatment-hero__feature svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sample-treatment-hero__visual {
    display: flex;
    min-width: 0;
    align-self: stretch;
    flex-direction: column;
    gap: 16px;
}

.sample-treatment-hero__media {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 350px;
    border: 5px solid #fff;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(7,13,55,0.12);
}

.sample-treatment-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 36%;
    transform: scale(1.1);
}

.sample-treatment-hero__mobile-media {
    display: none;
    max-width: 100%;
}

.sample-treatment-hero__copy > .sample-treatment-hero__button--mobile {
    display: none;
}

.sample-treatment-hero__button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, var(--sample-blue), #354fa5);
    border: 2px solid rgba(255,255,255,0.92);
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(82,104,194,0.28);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sample-treatment-hero__button:hover {
    background: linear-gradient(135deg, #354fa5, var(--sample-navy));
    box-shadow: 0 16px 32px rgba(7,13,55,0.22);
    transform: translateY(-2px);
}

.sample-treatment-hero__button:focus-visible {
    outline: 3px solid rgba(82,104,194,0.28);
    outline-offset: 3px;
}

.sample-treatment-content {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    gap: 48px;
    padding-top: 28px;
    color: var(--sample-navy);
}

.sample-treatment-content .sample-treatment-copy {
    flex-basis: 1020px;
    max-width: 1020px;
    margin-right: 0;
    margin-left: 0;
    padding-right: 32px;
    padding-left: 56px;
}

.sample-treatment-copy h2 {
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--sample-navy);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    line-height: 1.15;
}

.sample-treatment-copy h2:first-child {
    margin-top: 8px;
}

.sample-treatment-copy p,
.sample-treatment-copy li {
    color: #131a3f;
    font-size: 18px;
    line-height: 1.62;
}

.sample-treatment-copy ul {
    margin-bottom: 34px;
    padding-left: 22px;
}

.sample-treatment-copy li {
    margin-bottom: 6px;
    list-style: disc;
}

@media screen and (max-width: 1180px) {
    .sample-treatment-page {
        padding: 24px 28px 42px;
    }

    .sample-treatment-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 42px 38px;
    }

    .sample-treatment-hero h1 {
        max-width: none;
        font-size: 56px;
    }

    .sample-treatment-hero__intro {
        max-width: none;
    }

    .sample-treatment-hero__features {
        display: flex;
    }

    .sample-treatment-hero__media {
        min-height: 360px;
    }

    .sample-treatment-content .sample-treatment-copy {
        max-width: none;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 768px) {
    .sample-treatment-page {
        padding: 34px 14px 34px;
    }

    .sample-treatment-hero {
        min-height: 0;
        gap: 20px;
        padding: 24px 26px 8px;
        border-radius: 18px;
    }

    .sample-treatment-hero__eyebrow {
        min-height: 32px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .sample-treatment-hero h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .sample-treatment-hero__mobile-media {
        display: block;
        height: clamp(252px, 72.5vw, 306px);
        margin: 26px 0 0;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 16px 30px rgba(7,13,55,0.16);
    }

    .sample-treatment-hero__mobile-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 38%;
        transform: none;
    }

    .sample-treatment-hero__rule {
        margin: 22px 0 20px;
    }

    .sample-treatment-hero__intro {
        font-size: 18px;
        line-height: 1.45;
    }

    .sample-treatment-hero__features {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 22px;
    }

    .sample-treatment-hero__feature {
        justify-content: flex-start;
        min-height: 42px;
        padding: 8px 14px;
        font-size: 15px;
    }

    .sample-treatment-hero__media {
        display: none;
    }

    .sample-treatment-hero__visual {
        gap: 0;
    }

    .sample-treatment-hero__visual > .sample-treatment-hero__button {
        display: none;
    }

    .sample-treatment-hero__copy > .sample-treatment-hero__button--mobile {
        display: inline-flex;
        min-height: 52px;
        width: calc(100% - 10px);
        margin: 20px auto 0 0;
    }

    .sample-treatment-content {
        padding-top: 18px;
    }

    .sample-treatment-content .sample-treatment-copy {
        padding-right: 6px;
        padding-left: 6px;
    }

    .sample-treatment-copy h2 {
        font-size: 30px;
    }

    .sample-treatment-copy p,
    .sample-treatment-copy li {
        font-size: 17px;
    }
}

.content_wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.page-content {
    flex-shrink: 4;
    flex-basis: 1080px;
}

.treatment_sidebar {
    display: flex;
    flex-shrink: 1;
    flex-basis: 300px;
    max-height: 230vh;
    padding: 20px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.treatment_sidebar .treatment-item {
    flex-basis: 200px;
    overflow: hidden;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.treatment-sidebar .treatment-item h2 {
    flex-shrink: 0;
}

.treatment-sidebar .treatment-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.page-content * {
    overflow-wrap: break-word;
}

.page-content {
    max-width: min(1280px, calc(100vw));
}

.prices-page-content {
    --prices-navy: #071236;
    --prices-blue: #4564ad;
    --prices-blue-soft: #eef3ff;
    --prices-text: #2f3750;
    --prices-muted: #586176;
    --prices-line: #dde2ec;
    --sample-navy: #070d37;
    --sample-blue: #5268c2;
    max-width: 1180px;
    padding: 28px clamp(18px, 5vw, 78px) 70px;
    background:
        radial-gradient(circle at 50% 0%, rgba(69,100,173,0.12), rgba(255,255,255,0) 300px),
        #fff;
}

.prices-page-content .news-actions-hero {
    margin-bottom: 24px;
}

.prices-page-content .news-actions-hero h1 {
    color: var(--prices-navy);
    font-size: clamp(48px, 6.4vw, 76px);
    line-height: 0.95;
    font-weight: 700;
}

.prices-page-content .news-actions-divider {
    gap: 16px;
    margin-top: 22px;
}

.prices-page-content .news-actions-divider span {
    width: 72px;
    height: 1px;
    background: #8d97af;
}

.prices-page-content .news-actions-divider svg {
    width: 30px;
    height: 30px;
}

.prices-page-content > p {
    max-width: 780px;
    margin: 0 auto 18px;
    color: var(--prices-text);
    font-size: 15px;
    line-height: 1.55 !important;
    text-align: center;
}

.prices-page-content > p:empty {
    display: none;
}

.prices-page-content > p:has(+ style + .wp-block-columns),
.prices-page-content > p:nth-of-type(5) {
    width: fit-content;
    max-width: min(100%, 560px);
    margin-top: 18px;
    margin-bottom: 20px;
    color: var(--prices-text);
    text-align: center;
}

.prices-page-content > style,
.prices-page-content .wp-block-columns,
.prices-page-content .wp-block-column {
    width: 100%;
    max-width: none;
    margin: 0;
}

.prices-page-content .wp-block-columns {
    display: block;
}

.prices-table-block {
    display: grid;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.prices-card {
    overflow: hidden;
    color: var(--prices-text);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(221,226,236,0.9);
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(31,44,82,0.14);
}

.prices-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 30px 10px;
}

.prices-card__header h2 {
    min-width: 0;
    color: var(--prices-navy);
    font-size: clamp(26px, 3.4vw, 36px);
    line-height: 1.1;
    margin: 0;
}

.prices-card__booking {
    display: inline-flex;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--sample-blue), #354fa5);
    border: 2px solid rgba(255,255,255,0.92);
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(82,104,194,0.28);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 24px;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.prices-card__booking:hover,
.prices-card__booking:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #354fa5, var(--sample-navy));
    box-shadow: 0 16px 32px rgba(7,13,55,0.22);
    transform: translateY(-2px);
}

.prices-card__booking:focus-visible {
    outline: 3px solid rgba(82,104,194,0.28);
    outline-offset: 3px;
}

.prices-list {
    margin: 0;
    padding: 0 30px 12px;
}

.prices-page-content .prices-list li {
    list-style: none;
}

.prices-list__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(84px, max-content);
    gap: 14px;
    align-items: center;
    min-height: 43px;
    margin: 0;
    border-bottom: 1px solid var(--prices-line);
    color: var(--prices-muted);
    font-size: 14px;
    line-height: 1.35;
}

.prices-list__item:last-child {
    border-bottom: 0;
}

.prices-list__label {
    min-width: 0;
}

.prices-list__label-link {
    color: var(--prices-navy);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.prices-list__label-link:hover,
.prices-list__label-link:focus-visible {
    color: var(--prices-blue);
}

.prices-list__price {
    display: inline-flex;
    min-width: 98px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 6px;
    color: var(--prices-blue);
    background: linear-gradient(180deg, #f6f8ff, #e9eefb);
    box-shadow: inset 0 0 0 1px rgba(69,100,173,0.04);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.prices-list__note {
    margin: 10px 0 6px;
    color: var(--prices-muted);
    font-size: 14px;
    font-style: italic;
    line-height: 1.45;
}

@media screen and (max-width: 900px) {
    .prices-page-content {
        padding: 24px clamp(16px, 4vw, 34px) 54px;
    }

    .prices-card__header {
        gap: 14px;
        padding: 22px 22px 8px;
    }

    .prices-list {
        padding-right: 22px;
        padding-left: 22px;
    }

    .prices-list__item {
        grid-template-columns: minmax(0, 1fr) minmax(78px, max-content);
        min-height: 46px;
        font-size: 14px;
    }
}

@media screen and (max-width: 560px) {
    .prices-page-content {
        padding: 20px 12px 42px;
    }

    .prices-page-content .news-actions-hero h1 {
        font-size: 46px;
    }

    .prices-page-content .news-actions-divider span {
        width: 54px;
    }

    .prices-page-content > p {
        font-size: 14px;
        line-height: 1.5 !important;
    }

    .prices-page-content > p:has(+ style + .wp-block-columns),
    .prices-page-content > p:nth-of-type(5) {
        text-align: center;
    }

    .prices-table-block {
        gap: 22px;
    }

    .prices-card {
        border-radius: 10px;
    }

    .prices-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 14px 8px;
    }

    .prices-card__header h2 {
        font-size: 25px;
    }

    .prices-card__booking {
        width: 100%;
        min-height: 42px;
    }

    .prices-list {
        padding: 0 12px 8px;
    }

    .prices-list__item {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "label"
            "price";
        gap: 5px;
        align-items: start;
        min-height: 0;
        padding: 10px 0;
        font-size: 13px;
    }

    .prices-list__label {
        grid-area: label;
    }

    .prices-list__price {
        grid-area: price;
        min-width: 76px;
        min-height: 28px;
        justify-self: start;
        font-size: 14px;
    }
}

/* News / Actions page */
.news-actions-page {
    --news-blue: var(--beaumedique-blue);
    --news-blue-dark: var(--beaumedique-blue-dark);
    --news-ink: #292929;
    --news-muted: #696969;
    --news-line: #dedede;
    --news-warm: #999481;
    background: #fff;
    padding: 44px 0;
}

.news-actions-inner {
    width: 100%;
    max-width: 1040px;
    min-width: 0;
    margin: 0 auto;
}

.page-title-section {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 44px 0 0;
}

.page-content > .news-actions-hero {
    margin-top: 24px;
}

.news-actions-hero {
    --news-blue: var(--beaumedique-blue);
    --news-ink: #292929;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
    margin-bottom: 28px;
}

.news-actions-hero h1 {
    color: var(--news-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0;
}

.news-actions-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    color: var(--news-blue);
}

.news-actions-divider span {
    width: 68px;
    height: 2px;
    background: #999;
}

.news-actions-divider svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(32, 43, 64, 0.1);
    margin-bottom: 24px;
    padding: 24px 30px 30px;
}

.news-card-featured {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.news-actions-embed {
    --news-blue: var(--beaumedique-blue);
    --news-blue-dark: var(--beaumedique-blue-dark);
    --news-ink: #292929;
    --news-muted: #696969;
    --news-line: #dedede;
    --news-warm: #999481;
    width: 100%;
    max-width: 1040px;
    margin: 20px auto;
}

.news-actions-embed .news-card {
    margin-bottom: 0;
}

.botox-filler-comparison-block {
    --comparison-blue: var(--beaumedique-blue);
    --comparison-blue-dark: #344f98;
    --comparison-warm: #999481;
    --comparison-warm-dark: #87816e;
    --comparison-line: #dfdfdf;
    width: calc(100% + 48px);
    max-width: none;
    box-sizing: border-box;
    margin: 34px 0 38px -24px;
    padding: 28px 24px 30px;
    border-radius: 0;
    background: #F7F5FE;
}

.treatment-comparison-block {
    --comparison-blue: var(--beaumedique-blue);
    --comparison-blue-dark: #344f98;
    --comparison-warm: #999481;
    --comparison-warm-dark: #87816e;
    --comparison-line: #dfdfdf;
    width: calc(100% + 48px);
    max-width: none;
    box-sizing: border-box;
    margin: 34px 0 38px -24px;
    padding: 28px 24px 30px;
    border-radius: 0;
    background: #F7F5FE;
}

.news-actions-embed .botox-filler-comparison-block {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.botox-filler-comparison-block h2 {
    color: var(--sample-navy, #00083b);
    font-family: Merriweather, Georgia, 'Times New Roman', serif !important;
    font-size: 34px;
    line-height: 1.15 !important;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 0 !important;
    margin-bottom: 12px;
}

.treatment-comparison-block h2 {
    color: var(--sample-navy, #00083b);
    font-family: Merriweather, Georgia, 'Times New Roman', serif !important;
    font-size: 34px;
    line-height: 1.15 !important;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 0 !important;
    margin-bottom: 12px;
}

.botox-filler-intro {
    color: #333;
    font-family: 'Outfit', 'Inter', Arial, sans-serif !important;
    font-size: 18px;
    line-height: 1.32 !important;
    margin-bottom: 18px;
}

.botox-filler-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.treatment-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.botox-filler-card {
    overflow: hidden;
    border: 1px solid var(--comparison-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(38, 56, 100, 0.08);
}

.botox-filler-card-header {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    padding: 8px 18px;
}

.botox-filler-card-header svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.botox-filler-card-header h3 {
    color: #fff;
    font-family: 'Outfit', 'Inter', Arial, sans-serif !important;
    font-size: 22px;
    line-height: 1.1 !important;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
}

.botox-filler-card-botox .botox-filler-card-header {
    background: linear-gradient(135deg, var(--comparison-blue), var(--comparison-blue-dark));
}

.botox-filler-card-filler .botox-filler-card-header {
    background: linear-gradient(135deg, var(--comparison-warm), var(--comparison-warm-dark));
}

.treatment-comparison-card .botox-filler-card-header {
    background: linear-gradient(135deg, var(--comparison-blue), var(--comparison-blue-dark));
}

.treatment-comparison-card:nth-child(even) .botox-filler-card-header {
    background: linear-gradient(135deg, var(--comparison-warm), var(--comparison-warm-dark));
}

.botox-filler-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 18px 20px 22px;
}

.botox-filler-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    color: #333;
    list-style: none;
    margin: 0;
}

.botox-filler-list span {
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-top: 2px;
}

.botox-filler-card-botox .botox-filler-list span {
    background: var(--comparison-blue);
}

.botox-filler-card-filler .botox-filler-list span {
    background: var(--comparison-warm);
}

.treatment-comparison-card .botox-filler-list span {
    background: var(--comparison-blue);
}

.treatment-comparison-card:nth-child(even) .botox-filler-list span {
    background: var(--comparison-warm);
}

.botox-filler-list span svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.botox-filler-list p {
    color: #333;
    font-family: 'Outfit', 'Inter', Arial, sans-serif !important;
    font-size: 18px;
    line-height: 1.34 !important;
    margin: 0;
}

.before-after-slider-block {
    margin: 42px auto;
    padding: 0 24px;
}

.before-after-slider-block h2 {
    max-width: var(--before-after-slider-max-width, 980px);
    color: var(--beaumedique-blue-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    line-height: 1.12;
    margin: 0 auto 18px;
    text-align: center;
}

.before-after-slider {
    --before-after-position: 50%;
    position: relative;
    width: 100%;
    max-width: var(--before-after-slider-max-width, 980px);
    margin: 0 auto;
}

.before-after-slider__media {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(69, 100, 173, 0.18);
    border-radius: 18px;
    background: #eef1f8;
    box-shadow: 0 18px 44px rgba(38, 56, 100, 0.16);
}

.before-after-slider-block--fixed-height .before-after-slider__media {
    height: var(--before-after-slider-height);
}

.before-after-slider__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.before-after-slider-block--fixed-height .before-after-slider__image {
    height: 100%;
}

.before-after-slider__after {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 0 0 var(--before-after-position));
    z-index: 1;
}

.before-after-slider__after .before-after-slider__image {
    height: 100%;
}

.before-after-slider__label {
    position: absolute;
    top: 16px;
    z-index: 3;
    max-width: 42%;
    overflow-wrap: anywhere;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: rgba(38, 56, 100, 0.82);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    padding: 8px 13px;
}

.before-after-slider__label--before {
    left: 16px;
}

.before-after-slider__label--after {
    right: 16px;
}

.before-after-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--before-after-position);
    z-index: 4;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(38, 56, 100, 0.18), 0 0 18px rgba(0, 0, 0, 0.22);
    pointer-events: none;
    transform: translateX(-50%);
}

.before-after-slider__handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 54px;
    height: 54px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 24px rgba(38, 56, 100, 0.22);
    transform: translate(-50%, -50%);
}

.before-after-slider__handle span::before,
.before-after-slider__handle span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-color: var(--beaumedique-blue);
    border-style: solid;
    transform: translateY(-50%) rotate(45deg);
}

.before-after-slider__handle span::before {
    left: 15px;
    border-width: 0 0 2px 2px;
}

.before-after-slider__handle span::after {
    right: 15px;
    border-width: 2px 2px 0 0;
}

.before-after-slider__range {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: ew-resize;
}

.before-after-slider__range::-webkit-slider-thumb {
    width: 54px;
    height: 54px;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
}

.before-after-slider__range::-moz-range-thumb {
    width: 54px;
    height: 54px;
    border: 0;
    cursor: ew-resize;
}

.before-after-slider__caption {
    max-width: min(720px, var(--before-after-slider-max-width, 980px));
    color: var(--beaumedique-muted);
    font-size: 17px;
    line-height: 1.42;
    margin: 16px auto 0;
    text-align: center;
}

.before-after-slider__placeholder {
    display: flex;
    min-height: 280px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed rgba(69, 100, 173, 0.34);
    border-radius: 18px;
    background: var(--beaumedique-blue-soft);
}

.before-after-slider-editor-panel {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.before-after-slider-editor-panel strong {
    display: block;
    color: #1e1e1e;
}

@media screen and (max-width: 700px) {
    .before-after-slider-block {
        margin: 34px auto;
        padding: 0 14px;
    }

    .before-after-slider-block h2 {
        font-size: 30px;
    }

    .before-after-slider__label {
        top: 10px;
        font-size: 13px;
        padding: 7px 10px;
    }

    .before-after-slider__label--before {
        left: 10px;
    }

    .before-after-slider__label--after {
        right: 10px;
    }

    .before-after-slider__handle span,
    .before-after-slider__range::-webkit-slider-thumb,
    .before-after-slider__range::-moz-range-thumb {
        width: 46px;
        height: 46px;
    }

    .before-after-slider__placeholder {
        min-height: 220px;
        flex-direction: column;
    }

    .before-after-slider__caption {
        font-size: 16px;
    }
}

.beaumedique-news-editor-preview {
    width: 100%;
}

.block-editor-block-list__block .beaumedique-news-editor-preview {
    cursor: pointer;
}

.block-editor-block-list__block.is-selected .beaumedique-news-editor-preview {
    outline: 2px solid var(--beaumedique-blue);
    outline-offset: 4px;
}

.editor-styles-wrapper ul.wp-block-list,
.editor-styles-wrapper ol.wp-block-list,
.editor-styles-wrapper [data-type="core/list"] ul,
.editor-styles-wrapper [data-type="core/list"] ol {
    padding-left: 1.5em;
    list-style-position: outside;
}

.editor-styles-wrapper ul.wp-block-list,
.editor-styles-wrapper ul.wp-block-list li,
.editor-styles-wrapper [data-type="core/list"] ul,
.editor-styles-wrapper [data-type="core/list"] ul li {
    list-style-type: disc;
}

.editor-styles-wrapper ol.wp-block-list,
.editor-styles-wrapper ol.wp-block-list li,
.editor-styles-wrapper [data-type="core/list"] ol,
.editor-styles-wrapper [data-type="core/list"] ol li {
    list-style-type: decimal;
}

.editor-styles-wrapper ul.wp-block-list.has-text-align-center,
.editor-styles-wrapper ol.wp-block-list.has-text-align-center,
.editor-styles-wrapper [data-type="core/list"] ul.has-text-align-center,
.editor-styles-wrapper [data-type="core/list"] ol.has-text-align-center {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    list-style-position: inside;
    text-align: center;
}

.beaumedique-treatment-comparison-editor [contenteditable="true"] {
    cursor: text;
}

.beaumedique-rich-block-editor [contenteditable="true"],
.faq-section [contenteditable="true"] {
    cursor: text;
}

.beaumedique-rich-block-editor .rich-text:focus,
.beaumedique-treatment-comparison-editor .rich-text:focus,
.faq-section .rich-text:focus {
    outline: 2px solid var(--beaumedique-blue);
    outline-offset: 3px;
}

.beaumedique-editor-title-text,
.news-card-title-row h2 .beaumedique-editor-title-text {
    color: var(--news-ink);
}

.beaumedique-editor-icon {
    display: inline-flex;
    width: 1em;
    height: 1em;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.news-card-icon .beaumedique-editor-icon,
.botox-extra-icon .beaumedique-editor-icon,
.news-callout > .beaumedique-editor-icon,
.news-section-heading > .beaumedique-editor-icon,
.news-action-button > .beaumedique-editor-icon,
.botox-filler-card-header > .beaumedique-editor-icon {
    width: 0.9em;
    height: 0.9em;
}

.beaumedique-editor-card-with-actions {
    gap: 8px;
}

.beaumedique-editor-inline-actions,
.beaumedique-editor-add-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.beaumedique-editor-list-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
}

.news-date-list .beaumedique-editor-date-row {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding-right: 6px;
}

.news-date-list .beaumedique-editor-date-row .components-button {
    min-width: 28px;
    height: 28px;
    padding: 0;
}

.news-date-list .beaumedique-editor-date-row .rich-text {
    border: 0;
    padding: 0;
}

.beaumedique-treatment-comparison-editor .botox-filler-card-header h3 {
    min-width: 80px;
}

.beaumedique-treatment-comparison-editor .botox-filler-list li {
    grid-template-columns: 24px minmax(0, 1fr) auto;
}

.beaumedique-treatment-comparison-editor .botox-filler-list p {
    min-width: 80px;
}

.beaumedique-treatment-comparison-editor .botox-filler-list .components-button {
    align-self: start;
    margin-top: -4px;
}

.treatment-comparison-editor-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    padding: 0 20px 20px;
}

.treatment-comparison-editor-add-column {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.news-actions-embed .news-actions-hero,
.news-actions-embed .news-calendar-block,
.news-actions-embed .news-card-featured {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.news-card-title-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.news-card-title-row h2 {
    min-width: 0;
    color: var(--news-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.news-card-title-row h2 span {
    color: var(--news-blue);
}

.news-card-icon,
.botox-extra-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
}

.news-card-icon {
    width: 66px;
    height: 66px;
}

.news-card-icon svg,
.botox-extra-icon svg,
.news-callout svg,
.news-section-heading svg,
.news-action-button svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-card-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.7;
}

.news-card-icon-blue {
    color: var(--news-blue);
    background: var(--beaumedique-blue-soft);
}

.news-card-icon-soft {
    color: var(--news-warm);
    background: #f0eee8;
}

.botox-offer {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) 1.08fr;
    border: 2px solid #dedbd5;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.botox-price {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--news-blue), #5a70b5);
    color: #fff;
    text-align: center;
    padding: 18px;
}

.botox-price strong {
    font-family: 'Outfit', sans-serif;
    font-size: 62px;
    line-height: 0.9;
    font-weight: 400;
}

.botox-price span {
    font-size: 20px;
    line-height: 1.1;
}

.botox-extra {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--news-ink);
    padding: 18px 24px;
}

.botox-extra-icon {
    width: 54px;
    height: 54px;
    color: #333;
    background: #f0eee8;
}

.botox-extra-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.botox-extra p {
    font-size: 19px;
    line-height: 1.32;
}

.botox-extra strong,
.botox-extra b {
    font-weight: 800;
}

.news-callout,
.news-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: var(--news-ink);
}

.news-callout {
    margin: 0 14px 22px;
}

.news-callout svg,
.news-section-heading svg {
    width: 34px;
    height: 34px;
    color: var(--news-blue);
    stroke-width: 1.6;
    flex: 0 0 auto;
}

.news-callout p {
    font-size: 18px;
    line-height: 1.28;
}

.news-callout a {
    color: var(--news-blue);
    font-weight: 800;
    text-decoration: none;
}

.news-actions-buttons {
    display: grid;
    grid-template-columns: 1.55fr 1.15fr 0.9fr;
    min-width: 0;
    gap: 14px;
    border-bottom: 1px solid var(--news-line);
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.news-calendar-block {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.news-action-button {
    display: flex;
    min-width: 0;
    max-width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #dde0e7;
    border-radius: 12px;
    color: var(--news-blue);
    font-size: 17px;
    font-weight: 500;
    overflow-wrap: anywhere;
    text-decoration: none;
    background: #fff;
    padding: 0 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.news-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 43, 64, 0.12);
}

.news-action-button svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.7;
}

.news-action-button-primary {
    background: var(--news-blue);
    color: #fff;
    border-color: transparent;
    animation: news-action-button-load 1.1s ease-out 0.45s both;
}

.news-action-button-primary:hover {
    background: var(--news-blue-dark);
}

.news-action-button-whatsapp svg {
    color: #2fb760;
}

.news-section-heading {
    margin: 0 6px 18px;
}

.news-section-heading h3 {
    color: var(--news-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 4px;
}

.news-section-heading p {
    color: var(--news-muted);
    font-size: 17px;
}

.news-month-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.news-month-card {
    display: flex;
    min-height: 78px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 12px;
    text-align: center;
}

.news-month-card h4 {
    color: var(--news-blue);
    font-size: 18px;
    line-height: 1.12;
    margin-bottom: 6px;
}

.news-month-card p {
    color: var(--news-ink);
    font-size: 16px;
    line-height: 1.28;
}

.news-month-card .is-muted {
    color: #666;
    font-style: italic;
}

.news-info-card .news-card-title-row {
    margin-bottom: 14px;
}

.news-info-card .news-card-title-row h2 {
    color: var(--news-warm);
}

.news-card-intro,
.news-card-list,
.news-date-list {
    margin-left: 84px;
}

.news-card-intro {
    color: var(--news-ink);
    font-size: 18px;
    line-height: 1.32;
    margin-bottom: 18px;
}

.news-card-list {
    color: var(--news-muted);
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 20px;
}

.news-card-list li {
    list-style: disc;
    margin: 0 0 10px 1.2em;
}

.news-date-list {
    border-top: 1px solid var(--news-line);
    padding-top: 18px;
}

.news-date-list h3 {
    color: var(--news-ink);
    font-size: 18px;
    margin-bottom: 10px;
}

.news-date-list div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-date-list span {
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    color: var(--news-blue);
    font-size: 15px;
    font-weight: 700;
    padding: 7px 12px;
}

@media screen and (max-width: 900px) {
    .news-actions-page {
        padding: 52px 24px 36px;
    }

    .news-actions-hero h1 {
        font-size: 56px;
    }

    .news-card {
        border-radius: 20px;
        padding: 30px 30px 36px;
    }

    .news-card-title-row {
        gap: 20px;
    }

    .news-card-title-row h2 {
        font-size: 40px;
    }

    .news-card-icon {
        width: 86px;
        height: 86px;
    }

    .news-card-icon svg {
        width: 46px;
        height: 46px;
    }

    .botox-offer {
        grid-template-columns: 1fr;
    }

    .botox-price {
        min-height: 142px;
    }

    .botox-price strong {
        font-size: 82px;
    }

    .botox-price span {
        font-size: 26px;
    }

    .botox-extra p,
    .news-callout p {
        font-size: 23px;
    }

    .news-callout {
        margin: 0 0 28px;
    }

    .news-actions-buttons {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .botox-filler-comparison-block {
        max-width: 100%;
    }

    .treatment-comparison-block {
        max-width: 100%;
    }

    .botox-filler-grid {
        grid-template-columns: 1fr;
    }

    .news-month-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .news-card-intro,
    .news-card-list,
    .news-date-list {
        margin-left: 106px;
    }
}

@media screen and (max-width: 560px) {
    .news-actions-page {
        padding: 34px 14px 28px;
    }

    .news-actions-hero {
        margin-bottom: 24px;
    }

    .news-actions-hero h1 {
        font-size: 42px;
    }

    .news-actions-divider {
        gap: 14px;
        margin-top: 16px;
    }

    .news-actions-divider span {
        width: 54px;
    }

    .news-card {
        border-radius: 18px;
        margin-bottom: 28px;
        padding: 22px 18px 26px;
    }

    .news-card-title-row {
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 20px;
    }

    .news-card-title-row h2 {
        font-size: 31px;
    }

    .news-card-icon {
        width: 64px;
        height: 64px;
    }

    .news-card-icon svg {
        width: 34px;
        height: 34px;
    }

    .botox-extra {
        align-items: flex-start;
        gap: 16px;
        padding: 22px 18px;
    }

    .botox-extra-icon {
        width: 58px;
        height: 58px;
    }

    .botox-extra-icon svg {
        width: 30px;
        height: 30px;
    }

    .botox-extra p,
    .news-callout p,
    .news-section-heading p,
    .news-card-intro {
        font-size: 19px;
    }

    .news-callout,
    .news-section-heading {
        gap: 14px;
    }

    .news-callout svg,
    .news-section-heading svg {
        width: 38px;
        height: 38px;
    }

    .news-action-button {
        min-height: 66px;
        border-radius: 12px;
        gap: 8px;
        font-size: 18px;
        padding: 0 8px;
    }

    .botox-filler-comparison-block {
        width: calc(100% + 20px);
        margin-top: 22px;
        margin-right: 0;
        margin-bottom: 28px;
        margin-left: -10px;
        padding: 22px 10px 24px;
    }

    .treatment-comparison-block {
        width: calc(100% + 20px);
        margin-top: 22px;
        margin-right: 0;
        margin-bottom: 28px;
        margin-left: -10px;
        padding: 22px 10px 24px;
    }

    .botox-filler-comparison-block h2,
    .treatment-comparison-block h2 {
        font-size: 30px;
    }

    .botox-filler-intro,
    .botox-filler-list p {
        font-size: 17px;
    }

    .botox-filler-card-header h3 {
        font-size: 21px;
    }

    .news-action-button svg {
        width: 26px;
        height: 26px;
    }

    .news-section-heading h3 {
        font-size: 25px;
    }

    .news-month-grid {
        grid-template-columns: 1fr;
    }

    .news-month-card {
        min-height: 96px;
    }

    .news-month-card h4 {
        font-size: 22px;
    }

    .news-month-card p,
    .news-card-list {
        font-size: 18px;
    }

    .news-card-intro,
    .news-card-list,
    .news-date-list {
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .home-botox-days {
        padding: 34px 14px 42px;
    }

    .home-botox-days h2 {
        font-size: 30px;
    }

    .home-botox-days p {
        font-size: 17px;
    }

    .home-botox-days__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-botox-days__button,
    .home-botox-days__text-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .home-botox-days__text-link {
        padding: 8px 0;
    }

    .home-botox-days__price {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }

    .home-botox-days__price strong {
        font-size: 42px;
    }

    .home-botox-days__dates {
        grid-template-columns: 1fr;
        padding: 14px;
    }
}

.faq-section {
    --faq-blue: #4564ad;
    --faq-blue-light: #F7F5FE;
    --faq-blue-soft: #F7F5FE;
    --faq-ink: #292929;
    --faq-muted: #696969;
    --faq-line: #e0e0e0;
    --faq-warm: #999481;
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 0;
}

.faq-section > .wp-block-heading,
.faq-section > h1,
.faq-section > h2,
.faq-section__title {
    color: var(--faq-ink);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 32px;
}

.faq-section__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.faq-item {
    border: 1px solid var(--faq-line);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #F7F5FE;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    border-color: var(--faq-blue);
}

.faq-item.is-open {
    border-color: var(--faq-blue);
    box-shadow: 0 4px 16px rgba(69, 100, 173, 0.12);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    background: var(--faq-blue-light);
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item__question:hover {
    background: var(--faq-blue-soft);
}

.faq-item.is-open .faq-item__question {
    background: var(--faq-blue-soft);
    border-bottom-color: var(--faq-line);
}

.faq-item__question h2,
.faq-item__question h3,
.faq-item__question h4,
.faq-item__question .wp-block-heading {
    color: var(--faq-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--faq-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-item__answer {
    grid-template-rows: 1fr;
}

.faq-item__answer-inner {
    overflow: hidden;
    padding: 0 24px;
}

.faq-item.is-open .faq-item__answer-inner {
    padding: 24px 24px;
}

.faq-item__answer p,
.faq-item__answer .wp-block-paragraph {
    color: var(--faq-muted);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 12px;
}

.faq-item__answer p:last-child,
.faq-item__answer .wp-block-paragraph:last-child {
    margin-bottom: 0;
}

.faq-item__answer a {
    color: var(--faq-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-item__answer a:hover {
    color: var(--faq-warm);
    text-decoration: underline;
}

.faq-item__editor-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--faq-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: var(--faq-blue-light);
    border-radius: 4px;
    display: inline-block;
}

.editor-styles-wrapper .faq-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px;
}

.editor-styles-wrapper .faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 16px 20px;
    background: #F7F5FE;
}

.editor-styles-wrapper .faq-item h2,
.editor-styles-wrapper .faq-item .wp-block-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #292929;
    margin-bottom: 8px;
}

.editor-styles-wrapper .faq-item p,
.editor-styles-wrapper .faq-item .wp-block-paragraph {
    color: #696969;
    font-size: 17px;
    line-height: 1.65;
}

@media screen and (max-width: 900px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-item__question {
        padding: 18px 20px;
    }

    .faq-item__question h2,
    .faq-item__question h3,
    .faq-item__question h4,
    .faq-item__question .wp-block-heading {
        font-size: 18px;
    }

    .faq-item__icon {
        width: 28px;
        height: 28px;
    }

    .faq-item__icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-item.is-open .faq-item__answer-inner {
        padding: 0 20px 20px;
    }

    .faq-item__answer p,
    .faq-item__answer .wp-block-paragraph {
        font-size: 16px;
    }
}

@media screen and (max-width: 560px) {
    .faq-section {
        padding: 20px 0;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .faq-item__question {
        padding: 16px;
        gap: 12px;
    }

    .faq-item__question h2,
    .faq-item__question h3,
    .faq-item__question h4,
    .faq-item__question .wp-block-heading {
        font-size: 16px;
    }

    .faq-item.is-open .faq-item__answer-inner {
        padding: 0 16px 16px;
    }

    .faq-item__answer p,
    .faq-item__answer .wp-block-paragraph {
        font-size: 15px;
    }
}

.mobile-only {
    display: none;
}

a.mobile-only {
    color: inherit;
    margin-bottom: -0.5em;
}

/* Navbar styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #dddddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: auto;
    padding: 0;
}

.header-menu {
    width: 100%;
    margin: 0 auto;
}

.nav-container {
    width: calc(100% - clamp(48px, 8.5vw, 144px));
    max-width: 1536px;
    min-height: 108px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.nav-logo {
    height: auto;
    max-width: 260px;
    margin: 10px 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    padding: 10px;
}

.menu-icon {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 3px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    transition: transform 0.3s;
}

.menu-icon:before {
    transform: translateY(-8px);
}

.menu-icon:after {
    transform: translateY(8px);
}

.menu-toggle.active .menu-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-icon:before {
    transform: translateY(0) rotate(45deg);
}

.menu-toggle.active .menu-icon:after {
    transform: translateY(0) rotate(-45deg);
}

/* Main menu styling */
.menu-section {
    flex-grow: 1;
}

.mobile-header-actions,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions {
    flex: 0 0 auto;
}

.nav-search-button {
    display: inline-flex;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 20, 45, 0.36);
    border-radius: 8px;
    background: #fff;
    color: #08142d;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.nav-search-button:hover,
.nav-search-button:focus-visible {
    border-color: rgba(8, 20, 45, 0.58);
    background: var(--beaumedique-blue-soft);
    color: #08142d;
}

.nav-search-button--mobile {
    display: none;
}

.main-menu-container {
    width: 100%;
}

#menu-header-menu,
.menu-section .menu > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu-header-menu > li,
.menu-section .menu > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
}

#menu-header-menu > li > a,
.menu-section .menu > ul > li > a {
    display: flex;
    align-items: center;
    padding: 25px 15px;
    color: #08142d;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}

#menu-header-menu > li:hover > a,
.menu-section .menu > ul > li:hover > a {
    color: var(--beaumedique-blue);
}

.nav-booking-button {
    display: inline-flex;
    min-height: 50px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(8, 20, 45, 0.36);
    border-radius: 8px;
    color: #08142d;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 22px;
}

.nav-booking-button:hover,
.nav-booking-button:focus-visible {
    color: #08142d;
    border-color: rgba(8, 20, 45, 0.58);
}

.site-search[hidden] {
    display: none;
}

body.site-search-open {
    overflow: hidden;
}

.site-search {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    align-items: start;
    justify-items: center;
    padding: 96px 20px 24px;
}

.site-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 45, 0.46);
}

.site-search__dialog {
    position: relative;
    width: min(680px, 100%);
    max-height: calc(100vh - 120px);
    overflow: auto;
    border: 1px solid rgba(8, 20, 45, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(8, 20, 45, 0.28);
    padding: 30px;
}

.site-search__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 20, 45, 0.18);
    border-radius: 8px;
    background: #fff;
    color: #08142d;
    cursor: pointer;
}

.site-search__close:hover,
.site-search__close:focus-visible {
    background: var(--beaumedique-blue-soft);
}

.site-search__dialog h2 {
    margin: 0 56px 20px 0;
    color: #08142d;
    font-size: 30px;
    line-height: 1.15;
}

.site-search__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 8px;
}

.site-search__input {
    min-width: 0;
    height: 52px;
    border: 1px solid rgba(8, 20, 45, 0.22);
    border-radius: 8px;
    color: #08142d;
    font-size: 18px;
    padding: 0 16px;
}

.site-search__input:focus {
    border-color: var(--beaumedique-blue);
    outline: 2px solid rgba(69, 100, 173, 0.24);
    outline-offset: 0;
}

.site-search__submit {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: var(--beaumedique-blue);
    color: #fff;
    cursor: pointer;
}

.site-search__submit:hover,
.site-search__submit:focus-visible {
    background: var(--beaumedique-blue-dark);
}

.site-search__status {
    min-height: 22px;
    color: var(--beaumedique-muted);
    font-size: 15px;
    line-height: 1.45;
    margin: 14px 0 0;
}

.site-search__results {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.site-search__result {
    display: block;
    border: 1px solid rgba(8, 20, 45, 0.12);
    border-radius: 8px;
    color: #08142d;
    text-decoration: none;
    padding: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search__result:hover,
.site-search__result:focus-visible {
    border-color: rgba(69, 100, 173, 0.46);
    box-shadow: 0 10px 28px rgba(8, 20, 45, 0.1);
}

.site-search__result-title {
    display: block;
    color: #08142d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.site-search__result-meta {
    display: block;
    color: var(--beaumedique-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin-top: 5px;
    text-transform: uppercase;
}

.site-search__result-excerpt {
    display: block;
    color: var(--beaumedique-muted);
    font-size: 15px;
    line-height: 1.45;
    margin-top: 8px;
}

@media screen and (max-width: 600px) {
    .site-search {
        padding: 72px 12px 16px;
    }

    .site-search__dialog {
        max-height: calc(100vh - 88px);
        padding: 22px 16px 18px;
    }

    .site-search__dialog h2 {
        font-size: 26px;
        margin-right: 48px;
    }

    .site-search__form {
        grid-template-columns: minmax(0, 1fr) 48px;
    }

    .site-search__input,
    .site-search__submit {
        height: 48px;
    }
}

/* Submenu styling */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 10px 0;
    border-radius: 4px;
    border-top: 3px solid var(--beaumedique-blue);
}

/* Show submenu on hover for desktop */
.menu-item-has-children.hover > .sub-menu,
.menu-item-has-children:hover > .sub-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* For mobile, show submenu when active class is applied */
.menu-item-has-children.active > .sub-menu {
    display: block;
}

.sub-menu li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 16px !important;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.sub-menu li:hover > a {
    background-color: #f5f5f5;
    color: var(--beaumedique-blue);
}

.sub-menu-indicator {
    display: inline-block;
    width: 24px;  /* Increased from 10px */
    height: 24px; /* Increased from 10px */
    margin-left: 8px;
    position: relative;
}

.sub-menu-indicator:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;  /* Slightly larger arrow */
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.menu-item-has-children.hover > a > .sub-menu-indicator:before,
.menu-item-has-children:hover > a > .sub-menu-indicator:before,
.menu-item-has-children.active > a > .sub-menu-indicator:before {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Second level submenu styling */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: -3px; /* Offset for top border */
}

.sub-menu .menu-item-has-children > a .sub-menu-indicator:before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #333;
    border-right: none;
}

.sub-menu .menu-item-has-children:hover > a .sub-menu-indicator:before,
.sub-menu .menu-item-has-children.hover > a .sub-menu-indicator:before,
.sub-menu .menu-item-has-children.active > a .sub-menu-indicator:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Animation for submenu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive styles */
@media screen and (max-width: 1023px) {
    .nav-container {
        flex-wrap: wrap;
        min-height: 0;
    }
    
    .logo-section {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        min-width: 0;
    }

    .logo-section > a {
        flex: 1 1 calc(100% - 118px);
        min-width: 0;
        max-width: 260px;
    }

    .nav-logo {
        display: block;
        width: 100%;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 50px;
        width: 50px;
    }

    .mobile-header-actions {
        flex: 0 0 auto;
        gap: 8px;
    }

    .nav-search-button--mobile {
        display: inline-flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-booking-button {
        display: none;
    }
    
    .menu-section {
        width: 100%;
        display: none;
    }
    
    .menu-section.active {
        display: block;
    }
    
    #menu-header-menu {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #menu-header-menu > li {
        width: 100%;
    }
    
    #menu-header-menu > li > a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .sub-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
        border-top: none;
        display: none;
    }
    
    .sub-menu li a {
        padding: 12px 15px;
    }
    
    .sub-menu .sub-menu {
        padding-left: 15px;
    }
    
    /* Mobile indicators will point down/up */
    .sub-menu .menu-item-has-children > a .sub-menu-indicator:before {
        border-top: 5px solid #333;
        border-bottom: none;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }
}


@media screen and (max-width: 1150px) {
    .home-botox-days {
        padding: 44px 20px 52px;
    }

    .home-botox-days__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .home-botox-days__content,
    .home-botox-days p {
        max-width: none;
    }

    .home-botox-days__panel {
        max-width: 680px;
    }

    #about .about-certification {
        max-width: 300px;
        padding-top: 20px;
        display: block;
        margin: 0 auto;
    }

    .mobile-only {
        display: block;
    }

    @media screen and (max-width: 768px){
        #about .about-container {
            flex-wrap: wrap;
        }

        .about-text h1 {
            margin-top: -35px;
            margin-bottom: 5px;
        }

        .treatment_sidebar {
            flex-flow: column nowrap !important;
            max-height: 240vh !important;
        }
    }

    .single_banner h1 {
        color: #FFF;
        font-size: 300%;
    }

    .content_wrapper {
        flex-wrap: wrap;
    }

    .single_banner {
        height: 180px;
        background-attachment: initial !important;

    }

    .page-content {
        padding-right: 20px;
        padding-left: 20px;
        margin-right: 0px;
        margin-left: 0px;
    }

    .treatment_sidebar {
        flex-basis: 80vw;
        max-height: none;
        margin: 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .treatment_sidebar h2 {
        width: 100%;
    }

    .treatment_sidebar .treatment-item {
        margin: 20px;
        flex-basis: 250px;
        max-width: 100%;
        overflow: hidden;
    }

    .flex-column {
        margin-bottom: 10px;
    }

    #home .hero-text-box {
        margin-top: 50px;
    }

    #home button {
        background-color: #999481;
        color: white;
        padding: 15px 30px;
        font-size: 24px;
        border: 5px solid #FFFFFF;
        border-radius: 121px;
        cursor: pointer;
        margin-bottom: 20px;
        transition: background-color 0.3s ease;
    }

    .hero-text-box {
        margin: 10px !important;
        padding: 10px !important;
    }

    #home h1 {
        margin-bottom: 10px;
    }

    .treatment-item * {
        font-size: 20px;
    }

    #home p {
        color: #555;
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.mc4wp-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
}

.mc4wp-form p {
    margin-bottom: 20px;
    width: 100%;
}

.mc4wp-form label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.mc4wp-form input[type="text"],
.mc4wp-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #9b987b;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.mc4wp-form input[type="text"]:focus,
.mc4wp-form input[type="email"]:focus {
    border-color: var(--beaumedique-blue);
    outline: none;
}

.mc4wp-form input[type="email"]::placeholder {
    color: #999;
    font-style: italic;
}

.mc4wp-form input[type="submit"] {
    background-color: var(--beaumedique-blue);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s ease;
}

.mc4wp-form input[type="submit"]:hover {
    background-color: var(--beaumedique-blue-dark);
}

.mc4wp-form .mc4wp-response {
    margin-top: 20px;
    text-align: center;
    color: #333;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .mc4wp-form {
        padding: 15px;
    }
    
    .mc4wp-form input[type="text"],
    .mc4wp-form input[type="email"] {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .mc4wp-form input[type="submit"] {
        padding: 12px 25px;
        font-size: 18px;
        max-width: 180px;
    }
}

.wpcf7-form {
    max-width: 500px;
    margin: 20px 0;
    padding: 0; /* No extra padding to blend with surrounding content */
}

.wpcf7-form p {
    margin-bottom: 20px;
    width: 100%;
}

.wpcf7-form label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #9b987b;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical; /* Allows vertical resizing only */
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    border-color: var(--beaumedique-blue);
    outline: none;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.wpcf7-form input[type="submit"] {
    background-color: var(--beaumedique-blue);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: var(--beaumedique-blue-dark);
}

.wpcf7-response-output {
    margin-top: 20px;
    text-align: center;
    color: #333;
}

/* Ensure spinner aligns with your design */
.wpcf7-spinner {
    border-color: var(--beaumedique-blue);
    border-top-color: var(--beaumedique-blue-dark);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .wpcf7-form {
        margin: 15px 0;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .wpcf7-form textarea {
        min-height: 120px;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 12px 25px;
        font-size: 18px;
        max-width: 180px;
    }
}

@media screen and (max-width: 1399px) {
    .nav-booking-button {
        display: none;
    }
}

/* Homepage refresh */
body.home main {
    overflow: visible;
    background: #fff;
}

#home {
    width: 100vw;
    min-height: clamp(600px, calc(100svh - 109px), 850px);
    height: auto;
    align-items: stretch;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 16px max(72px, calc((100vw - 1440px) / 2));
    border: 0;
    border-radius: 0;
    background-color: #f3eee7;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.14) 40%, rgba(255, 255, 255, 0) 66%),
        url('https://beaumedique.nl/wp-content/uploads/beaumedique-public-image-hashes/5948b19f7ce17b4890cf7ff5870dfb46.webp');
    background-repeat: no-repeat;
    background-position: center, center right;
    background-size: cover, cover;
    box-shadow: none;
    overflow: hidden;
    isolation: isolate;
}

#home::before {
    content: none;
}

#home::after {
    content: none;
}

#home .hero-text-box {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(710px, 100%);
    min-height: 560px;
    flex-direction: column;
    justify-content: flex-start;
    max-width: none;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 28px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.34) 100%);
    padding: 32px 64px 20px;
}

#home .hero-text-box::before,
#home .hero-text-box::after {
    content: "";
    display: block;
    min-height: 0;
}

#home .hero-text-box::before {
    flex: 1 1 0;
}

#home .hero-text-box::after {
    flex: 2 1 0;
}

.hero-eyebrow {
    display: block;
    color: #4564ad;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 0;
}

.hero-eyebrow::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin: 10px 0 12px;
    background: #c5a45a;
}

#home h1 {
    max-width: 600px;
    color: #08142d;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(52px, 4.4vw, 70px);
    font-weight: 600;
    line-height: 0.98;
    margin-bottom: 18px;
}

#home h1 span {
    display: block;
    color: #8a8575;
}

#home p {
    max-width: 570px;
    color: #17243a;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 20px;
}

#home p::before {
    content: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.hero-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    padding: 0 32px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-button-primary {
    color: #fff;
    background: #8a806b;
    border: 1px solid #8a806b;
    box-shadow: none;
    animation: appointment-button-load 1.1s ease-out 0.45s both;
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
    color: #fff;
    background: #776e5c;
    border-color: #776e5c;
    transform: translateY(-2px);
    box-shadow: none;
}

.hero-button-secondary {
    color: #0b2a64;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(69, 100, 173, 0.82);
    box-shadow: none;
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
    color: #0b2a64;
    background: #fff;
    border-color: #4564ad;
    transform: translateY(-2px);
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 650px;
}

.hero-trust-list li {
    display: inline-flex;
    align-items: center;
    width: auto;
    min-height: 36px;
    border: 1px solid rgba(8, 20, 45, 0.14);
    border-radius: 999px;
    color: #08142d;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 0 13px 0 10px;
}

.hero-trust-list li svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: #08142d;
    margin-right: 8px;
}

.hero-trust-list li::before {
    content: none;
}

.home-treatments {
    padding: 60px 28px 72px;
    background: linear-gradient(180deg, #fff 0%, var(--beaumedique-cream) 100%);
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.home-section-heading h2 {
    color: var(--beaumedique-ink);
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    margin-bottom: 14px;
}

.home-section-heading p {
    color: var(--beaumedique-muted);
    font-size: 18px;
    line-height: 1.55;
    margin: 0 auto;
}

.home-treatments #treatments {
    margin-top: 34px;
}

.home-treatments .treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 26px;
    width: min(100%, 1120px);
    margin: 0 auto;
}

.home-treatments .treatment-item {
    width: auto;
    max-width: none;
    max-height: none;
    min-height: 318px;
    margin: 0;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(40, 43, 52, 0.08);
    padding: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-treatments .treatment-item:hover,
.home-treatments .treatment-item:focus-visible {
    border-color: rgba(69, 100, 173, 0.38);
    box-shadow: 0 18px 42px rgba(40, 43, 52, 0.12);
    transform: translateY(-4px);
}

.home-treatments .treatment-item h2 {
    min-height: 36px;
    color: var(--beaumedique-ink);
    font-size: 23px;
    line-height: 1.15;
    margin: 0 0 12px;
}

.home-treatments .treatment-card-image-wrapper {
    position: relative;
    max-width: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(153, 148, 129, 0.55);
    border-radius: 8px;
    background: #f7f7f7;
}

.home-treatments .treatment-card-image-wrapper > img {
    display: block;
    width: 100%;
    height: 100%;
}

.treatment-card-click-cue {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    pointer-events: none;
}

.treatment-card-click-icon {
    display: block;
    width: 20px;
    max-width: none;
    height: 20px;
    object-fit: contain;
    opacity: 0.9;
}

#about {
    padding: 68px 28px 72px;
    background: #f7f5fe;
}

#about .about-container {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 38px;
    align-items: stretch;
    max-width: 1180px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

#about .about-face {
    width: 100%;
    height: 100%;
    min-height: 520px;
    max-height: none;
    margin: 0;
    border-radius: 8px;
}

#about .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 4px 0;
}

#about .about-text h1 {
    color: var(--beaumedique-ink);
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    margin-bottom: 16px;
}

#about .about-text h3 {
    color: var(--beaumedique-ink);
    font-size: 24px;
    line-height: 1.25;
    margin: 16px 0 6px;
}

#about .about-text p {
    color: #2f3540;
    font-size: 17px;
    line-height: 1.58;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 4px;
}

.about-highlights li {
    width: auto;
    border: 1px solid rgba(69, 100, 173, 0.16);
    border-radius: 8px;
    color: var(--beaumedique-blue-dark);
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    padding: 12px;
}

#about .about-certification {
    width: min(100%, 300px);
    margin-top: 18px;
    padding-top: 0;
}

#Waarom {
    padding: 62px 28px 70px;
    background: #fff;
}

#Waarom > ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 42px;
    width: min(100%, 1120px);
    margin: 36px auto 0;
}

#Waarom > ul > li {
    display: flex;
    width: auto;
    min-height: 0;
    align-items: flex-start;
    border: 0;
    border-radius: 0;
    color: var(--beaumedique-ink);
    background: transparent;
    font-size: 20px;
    line-height: 1.45;
    padding: 0;
}

#Waarom.checkmarked li::before,
#Waarom ul.checkmarked li::before {
    color: var(--beaumedique-blue);
    font-weight: 900;
    margin-right: 12px;
    transform: translateY(1px);
}

.home-botox-days {
    border-top: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-button-primary {
        animation: none;
    }
}

@media screen and (max-width: 1023px) {
    #home {
        width: 100vw;
        min-height: clamp(640px, calc(100svh - 99px), 850px);
        padding: 28px 24px 32px;
        background-image:
            linear-gradient(90deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.04) 100%),
            url('https://beaumedique.nl/wp-content/uploads/beaumedique-public-image-hashes/5948b19f7ce17b4890cf7ff5870dfb46.webp');
        background-position: center, 68% center;
        background-size: cover, cover;
    }

    #home .hero-text-box {
        width: min(680px, 100%);
        min-height: 560px;
        padding: 38px 44px 28px;
    }

    #home h1 {
        max-width: 550px;
        font-size: 58px;
    }

    .home-treatments .treatment-grid,
    #Waarom > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #about .about-container {
        grid-template-columns: 1fr;
    }

    #about .about-face {
        min-height: 0;
        max-height: 520px;
    }
}

@media screen and (max-width: 680px) {
    main {
        max-width: 100vw;
    }

    #home {
        width: 100vw;
        min-height: clamp(644px, calc(100svh - 99px), 850px);
        align-items: flex-start;
        margin-top: 0;
        padding: 0;
        background-image:
            linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.66) 76%, rgba(255, 255, 255, 0.2) 100%),
            url('https://beaumedique.nl/wp-content/uploads/beaumedique-public-image-hashes/5948b19f7ce17b4890cf7ff5870dfb46.webp');
        background-position: center, 64% center;
        background-size: cover, cover;
    }

    #home .hero-text-box {
        min-height: inherit;
        max-width: 100%;
        width: 100%;
        margin: 0 !important;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        padding: 28px 30px 22px !important;
    }

    .hero-eyebrow {
        font-size: 12px;
    }

    .hero-eyebrow::after {
        width: 36px;
        margin: 11px 0 12px;
    }

    #home h1 {
        max-width: 100%;
        font-size: 40px;
        line-height: 1.02;
        margin-bottom: 18px;
    }

    #home p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.58;
        margin-bottom: 22px;
    }

    .hero-actions {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-button {
        width: 100%;
        min-height: 52px;
        font-size: 16px;
        padding: 0 18px;
    }

    .hero-button-secondary {
        background: rgba(255, 255, 255, 0.9);
    }

    .hero-trust-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100%;
    }

    .hero-trust-list li {
        min-height: 38px;
        font-size: 13px;
        padding: 0 12px;
    }

    .home-treatments,
    #Waarom {
        padding: 44px 17px 52px;
    }

    .home-section-heading {
        text-align: left;
    }

    .home-section-heading h2 {
        font-size: 36px;
    }

    .home-section-heading p {
        font-size: 16px;
    }

    .home-treatments .treatment-grid,
    #Waarom > ul,
    .about-highlights {
        grid-template-columns: 1fr;
    }

    .home-treatments .treatment-grid {
        max-width: 330px;
        gap: 20px;
    }

    .home-treatments .treatment-item {
        min-height: 0;
        padding: 12px;
    }

    .home-treatments .treatment-item h2 {
        min-height: 0;
        font-size: 22px;
    }

    #about {
        padding: 48px 17px 54px;
    }

    #about .about-container {
        gap: 24px;
        padding: 0;
    }

    #about .about-face {
        max-height: 460px;
    }

    #about .about-text h1 {
        font-size: 34px;
        line-height: 1.08;
        margin-top: 4px;
        overflow-wrap: anywhere;
    }

    #about .about-text h3 {
        font-size: 22px;
    }

    #about .about-text p {
        font-size: 16px;
    }

    #Waarom > ul {
        gap: 18px;
        margin-top: 24px;
    }

    #Waarom > ul > li {
        font-size: 17px;
    }
}

/* Previous homepage sample template */
.page-template-template-sample-home-before-php .nav-booking-button {
    display: none !important;
}

.page-template-template-sample-home-before-php .nav-container {
    width: auto;
    max-width: 1485px;
    min-height: 116px;
    padding: 0 20px;
}

.page-template-template-sample-home-before-php .nav-logo {
    max-width: 304px;
}

.page-template-template-sample-home-before-php #menu-header-menu > li > a,
.page-template-template-sample-home-before-php .menu-section .menu > ul > li > a {
    padding: 25px 20px;
    color: #333;
    font-size: 22px;
    font-weight: 600;
    white-space: normal;
}

.page-template-template-sample-home-before-php #menu-header-menu > li:nth-child(2):not(.menu-item-has-children) > a::after,
.page-template-template-sample-home-before-php .menu-section .menu > ul > li:nth-child(2):not(.menu-item-has-children) > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    margin-left: 10px;
}

.sample-home-before {
    max-width: min(1485px, 100vw);
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    padding-bottom: 0;
}

.sample-home-before__hero {
    position: relative;
    display: flex;
    min-height: 676px;
    align-items: flex-start;
    overflow: hidden;
    background: url('https://beaumedique.nl/wp-content/uploads/beaumedique-public-image-hashes/02baaea5df7c78a1513a9d867eab84a1.jpg') no-repeat center right;
    background-size: cover;
    padding: 80px clamp(24px, 5vw, 74px) 59px;
}

.sample-home-before__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249, 250, 252, 0.98) 0%, rgba(249, 250, 252, 0.9) 38%, rgba(249, 250, 252, 0.2) 74%);
    pointer-events: none;
}

.sample-home-before__hero-text-box {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0;
    padding: 0;
}

.sample-home-before__hero h1 {
    max-width: 660px;
    color: var(--beaumedique-ink);
    font-size: clamp(46px, 4.2vw, 66px);
    line-height: 1.04;
    margin-bottom: 22px;
}

.sample-home-before__hero p {
    max-width: 700px;
    color: #3f4652;
    font-size: 21px;
    line-height: 1.58;
    margin-bottom: 28px;
}

.sample-home-before__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.sample-home-before__hero-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    padding: 0 24px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sample-home-before__hero-button-primary {
    color: #fff;
    background: var(--beaumedique-warm);
    border: 4px solid #fff;
    box-shadow: 0 12px 26px rgba(76, 73, 62, 0.18);
    animation: appointment-button-load 1.1s ease-out 0.45s both;
}

.sample-home-before__hero-button-primary:hover,
.sample-home-before__hero-button-primary:focus-visible {
    color: #fff;
    background: var(--beaumedique-warm-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(76, 73, 62, 0.22);
}

.sample-home-before__hero-button-secondary {
    color: var(--beaumedique-blue-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(69, 100, 173, 0.26);
}

.sample-home-before__hero-button-secondary:hover,
.sample-home-before__hero-button-secondary:focus-visible {
    color: #fff;
    background: var(--beaumedique-blue);
    border-color: var(--beaumedique-blue);
    transform: translateY(-2px);
}

.sample-home-before__trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 620px;
}

.sample-home-before__trust-list li {
    display: inline-flex;
    align-items: center;
    width: auto;
    min-height: 36px;
    border: 1px solid rgba(41, 41, 41, 0.08);
    border-radius: 999px;
    color: var(--beaumedique-ink);
    background: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    padding: 8px 12px;
}

.sample-home-before__trust-list li::before {
    content: "\2713";
    color: var(--beaumedique-blue);
    font-weight: 900;
    margin-right: 8px;
}

@media (prefers-reduced-motion: reduce) {
    .sample-home-before__hero-button-primary {
        animation: none;
    }
}

@media screen and (min-width: 1600px) {
    .page-template-template-sample-home-before-php .nav-container,
    .sample-home-before {
        transform: translateX(8px);
    }
}

@media screen and (max-width: 1023px) {
    .sample-home-before__hero {
        min-height: 560px;
        background-position: 68% center;
        padding: 42px 24px;
    }

    .sample-home-before__hero::before {
        background: linear-gradient(90deg, rgba(249, 250, 252, 0.98) 0%, rgba(249, 250, 252, 0.9) 58%, rgba(249, 250, 252, 0.34) 100%);
    }

    .sample-home-before__hero h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 680px) {
    .sample-home-before {
        max-width: 100vw;
    }

    .sample-home-before__hero {
        min-height: 560px;
        align-items: flex-start;
        background-position: 65% center;
        padding: 28px 17px 36px;
    }

    .sample-home-before__hero::before {
        background: linear-gradient(90deg, rgba(249, 250, 252, 0.98) 0%, rgba(249, 250, 252, 0.9) 72%, rgba(249, 250, 252, 0.55) 100%);
    }

    .sample-home-before__hero-text-box {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .sample-home-before__hero h1 {
        max-width: 350px;
        font-size: 38px;
        line-height: 1.06;
        margin-bottom: 14px;
    }

    .sample-home-before__hero p {
        max-width: 350px;
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .sample-home-before__hero-actions {
        gap: 10px;
        margin-bottom: 16px;
    }

    .sample-home-before__hero-button {
        width: 100%;
        min-height: 50px;
        font-size: 16px;
    }

    .sample-home-before__hero-button-secondary {
        background: rgba(255, 255, 255, 0.9);
    }

    .sample-home-before__trust-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 310px;
    }

    .sample-home-before__trust-list li {
        min-height: 34px;
        font-size: 13px;
        padding: 7px 10px;
    }
}

h1,
.page-content h1,
.news-actions-hero h1,
.prices-page-content .news-actions-hero h1,
.sample-treatment-hero h1,
.single_banner h1,
#home h1,
#about .about-text h1,
.sample-home-before__hero h1 {
    --beaumedique-fit-h1-min-font-size: 18px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.beaumedique-fit-heading {
    min-width: 0;
}
