/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&family=Lato:wght@300;400;700&display=swap');

/* --- Typography System (consistent across all sections) --- */
:root {
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', Helvetica, Arial, sans-serif;

    --size-h1: 52px;        /* main page hero title */
    --size-h1-sub: 28px;    /* hero italic sub-line under h1 */
    --size-h2: 34px;        /* section headings: Behandelingen, Resultaten, Medik8, footer CTA */
    --size-h2-sub: 28px;    /* italic sub-line under a section h2 */
    --size-label: 14.5px;   /* small card/UI labels: treatment names, trust titles */
    --size-eyebrow: 13px;   /* small uppercase tag above a heading */
    --size-body: 15px;      /* paragraph text */
    --size-small: 12.5px;   /* footer/meta text */
}

/* --- Root & Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Global Layout Container --- */
.container {
    max-width: 1464px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
    position: relative;
}

.hero-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
}

.hero-form-box h3 {
    font-family: var(--font-heading);
    font-size: var(--size-h2);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 10px;
}

/* --- Premium Navigation Header --- */
.qadr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0;
    background: transparent;
    transition: all 0.4s ease;
}

.qadr-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 3px;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.icon-link {
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.icon-link:hover {
    color: #c5a059;
    transform: translateY(-1px);
}

.login-text-link {
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 7px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.login-text-link:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.cart-trigger {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -10px;
    background: #c5a059;
    color: #ffffff;
    font-size: 9px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

button.login-btn {
    padding: 12px 20px;
    background-color: transparent;
    border: 1px solid #e4dad8;
    color: #e4dad8;
    font-weight: 600;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

/* Back to top button — was never positioned before, which let it sit
   inline inside the fixed header instead of floating in the corner */
.back-to-top {
    position: fixed;
    bottom: 96px; /* stacked above the WhatsApp button (bottom:24px, ~58px tall) */
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1714;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    display: none; /* JS toggles this to flex after scrolling 300px */
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    z-index: 998;
    transition: opacity 0.3s ease;
}

.back-to-top:hover {
    background: #2c241f;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1002;
    transition: left 0.4s ease;
    padding: 100px 30px 30px;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav-overlay.active {
    left: 0;
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.mobile-nav-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-overlay ul li a {
    font-family: 'Lato', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-nav-overlay ul li a:hover,
.mobile-nav-overlay ul li a.active {
    color: #ff923c;
}

.overlay-footer {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
}

.overlay-footer .mobile-login-btn {
    width: 100%;
    padding: 12px;
    background: #ff923c;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}

.body-overlay.active {
    display: block;
}

body.menu-open {
    overflow: hidden;
}

.main-hero-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, rgb(15 13 11 / 0%) 34%, rgb(30 15 15 / 0%) 56%, rgb(10 10 10 / 0%) 100%), url(../images/hero-background.jpeg);
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 40px;
}
.change-image-banner{
    background: linear-gradient(90deg, rgb(15 13 11) 34%, rgb(30 15 15 / 0%) 56%, rgba(10, 10, 10, .65) 100%), url(../images/BeyondFit-pricing-hero.jpeg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
}

.hero-left {
    color: #fff;
}

.hero-tag {
    display: block;
    font-family: var(--font-body);
    font-size: var(--size-eyebrow);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: #ff923c !important;
    font-weight: 600;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: var(--size-h1);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #e4dad8;
}

.hero-left h1 span {
    display: block;
    font-size: var(--size-h1-sub);
    color: #a99b90;
    font-style: italic;
    font-weight: 400;
}

.hero-text {
    font-family: var(--font-body);
    font-size: var(--size-body);
    line-height: 1.8;
    color: #e4dad8;
    max-width: 650px;
    padding-bottom: 10px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #d4c6b9;
    color: #1a0c01;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 13.5px;
    transition: .3s;
}
.hero-btn:hover {
    background: #c95b1d;
    opacity: 0.9;
}

.watch-btn {
    background: transparent !important;
    color: #d5c7bc;
}

.cta-flex {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Trust Badge */
.hero-trust-badge-text-only {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.rating-stars-row {
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0px 30px 0px;
}

.rating-stars-row .star {
    color: #ff923c;
    font-size: 20px;
}

.rating-stars-row .rating-number {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #e5e5e5;
    margin-left: 8px;
    letter-spacing: 0.3px;
}

.hero-trust-badge-text-only .trust-text {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #e5e5e5;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* Strategy Card */
.strategy-call-card {
    background-color: #fbf9f6;
    max-width: 380px;
    width: 100%;
    padding: 25px 30px;
    border-radius: 7px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.strategy-card-header h2 {
    font-family: var(--font-heading);
    font-size: var(--size-h2);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.strategy-card-header .highlight-orange {
    color: #ff923c;
    display: block;
}

.strategy-card-header .intro-subtext {
    font-family: var(--font-body);
    font-size: var(--size-body);
    color: #333333;
    font-weight: 500;
    margin: 20px 0 15px 0;
}

.strategy-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.strategy-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.strategy-benefits-list li p {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #2b2b2b;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.custom-check-icon {
    width: 18px;
    height: 18px;
    border: 2px solid #ff923c;
    border-radius: 50%;
    color: #ff923c;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.strategy-lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.input-field-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-field-wrapper input {
    width: 100%;
    padding: 11px 11px 11px 50px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field-wrapper input:focus {
    border-color: #c95b1d;
    box-shadow: 0 0 6px rgba(201, 91, 29, 0.15);
}

.field-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.field-icon svg {
    width: 100%;
    height: 100%;
}

.btn-submit-strategy {
    width: 100%;
    padding: 9px 20px;
    background-color: #ff923c;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-submit-strategy:hover {
    background-color: #ae4a14;
}

.strategy-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #555555;
    font-weight: 600;
}

.footer-badge-icon {
    color: #c95b1d;
    font-size: 14px;
}

.strategy-card-footer .divider {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 16px;
}
.beauty-morals {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.beauty-morals h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 1px;
    word-spacing: 1px;
    color: #e4dad8;
    padding-left: 3px;
}
.beauty-morals p {
    font-family: var(--font-body);
    font-size: var(--size-small);
    letter-spacing: 0.5px;
    color: #a99b90;
    padding-left: 3px;
}
nav.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}
.video{
    display: flex;
    flex-direction: column;
}
.hero-right{
    margin-bottom: 57px;
}
/* ==========================================================================
   PMU TRUST BADGES BAR STYLES
   ========================================================================== */
.pmu-trust-bar {
    width: 100%;
    background: linear-gradient(180deg, #1a1714 0%, #2c241f 100%);
    padding: 30px 20px;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.trust-icon-wrap {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1be9c;
}

.trust-icon-wrap svg {
    width: 32px;
    height: 32px;
}

.trust-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-title {
    font-family: var(--font-body);
    font-size: var(--size-label);
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #e4dad8;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.trust-subtitle {
    font-family: var(--font-body);
    font-size: var(--size-small);
    font-weight: 400;
    color: #a99b90;
    margin: 0;
    line-height: 1.2;
}
.watch-video {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}
.treatments-section{
background:
radial-gradient(circle at center,
    #6b4b3b 0%,
    #4a352b 35%,
    transparent 70%
),
linear-gradient(
    90deg,
    #1a1714 0%,
    #2a1f1a 30%,
    #2a1f1a 70%,
    #1a1714 100%
);
}
.hero-left h2{
    font-family: var(--font-heading);
    font-size: var(--size-h2);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.25;
    padding-bottom: 18px;
    color: #e4dad8;
}
.hero-left span{
    display: block;
}
.tratment-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.img-treatment-itemmain {
    display: flex;
    align-items: center;
    gap: 50px;
}

.img-center img {
    display: block;
    border-radius: 4px;
}

.treatment-itemflex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
}

.treatment-item {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    left: -90px;
}

.connector {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,.9);
    flex-shrink: 0;
}

.line {
    width: 90px;
    height: 1px;
    background: #8d7c71;
}

.treatment-img {
    margin-left: 6px;
}

.treatment-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d8c8bc;
}

.treatment-content {
    margin-left: 20px;
}

.treatment-content h4 {
    font-family: var(--font-body);
    color: #fff;
    font-size: var(--size-label);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.treatment-content p {
    font-family: var(--font-body);
    color: #b8aa9d;
    font-size: var(--size-small);
    line-height: 1.5;
    max-width: 210px;
}

/* ==========================================================================
   RESULTATEN — BEFORE / AFTER SLIDER SECTION
   ========================================================================== */
.results-section {
    background: #ede2d3;
    padding: 90px 0;
    overflow: hidden;
}

.results-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Left text panel --- */
.results-left {
    flex: 0 0 300px;
}

.results-tag {
    display: block;
    font-family: var(--font-body);
    font-size: var(--size-eyebrow);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: #8a7a6a;
    font-weight: 600;
}

.results-heading {
    font-family: var(--font-heading);
    font-size: var(--size-h2);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 14px 0 18px;
}

.results-heading .italic-muted {
    font-style: italic;
    font-weight: 400;
    color: #a99b8c;
}

.results-text {
    font-family: var(--font-body);
    font-size: var(--size-body);
    color: #4a4038;
    line-height: 1.6;
    max-width: 240px;
    margin-bottom: 30px;
}

.results-nav {
    display: flex;
    gap: 12px;
}

.nav-arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #b8a998;
    background: transparent;
    color: #4a4038;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.nav-arrow-btn:hover {
    background: #4a4038;
    color: #fff;
    border-color: #4a4038;
}

/* --- Before/after slider --- */
.results-right {
    flex: 1;
    min-width: 0;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: 6px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    background: #333;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background-image 0.4s ease;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-after {
    z-index: 1;
}

.ba-before {
    z-index: 2;
    width: 50%; /* JS updates this on drag */
    border-right: 2px solid #fff;
    overflow: hidden;
}

.ba-before img {
    width: 200%; /* undo the parent's clipped width so image doesn't squash */
    max-width: none;
}

.ba-label {
    position: absolute;
    bottom: 18px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    z-index: 3;
}

.ba-label-before {
    left: 22px;
}

.ba-label-after {
    right: 22px;
}

.ba-divider {
    position: absolute;
    top: 0;
    left: 50%; /* JS updates this on drag */
    height: 100%;
    width: 0;
    z-index: 4;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: #4a4038;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    pointer-events: auto;
    cursor: ew-resize;
}

/* --- Progress dots --- */
.ba-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.ba-dot {
    height: 4px;
    width: 24px;
    border-radius: 2px;
    background: #d8cabb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ba-dot.active {
    background: #1a1a1a;
    width: 40px;
}

/* ==========================================================================
   MEDIK8 — PRODUCT SHOWCASE SECTION
   ========================================================================== */
.medik8-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1690 / 475; /* matches the background image's native ratio */
    background: url('../images/medik8-bg.jpeg') center/cover no-repeat;
    overflow: hidden;
}

.medik8-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0.35) 45%, rgba(10,8,6,0) 65%);
    z-index: 1;
}

.medik8-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 420px;
    color: #fff;
}

.medik8-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: var(--size-eyebrow);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #d8cabb;
    font-weight: 600;
    margin-bottom: 14px;
}

.medik8-text h1 {
    font-family: var(--font-heading);
    font-size: var(--size-h2);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 8px;
    color: #fff;
}

.medik8-text h2 {
    font-family: var(--font-heading);
    font-size: var(--size-h2-sub);
    font-weight: 400;
    font-style: italic;
    color: #c9bcae;
    line-height: 1.2;
    margin-bottom: 18px;
}

.medik8-desc {
    font-family: var(--font-body);
    font-size: var(--size-body);
    line-height: 1.7;
    color: #e4dad8;
    margin-bottom: 24px;
    max-width: 320px;
}

.medik8-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}
.medik8-cta:hover {
    opacity: 0.75;
}

/* ---- Product images positioned over the 3 marble podiums ---- */
.medik8-product {
    position: absolute;
    z-index: 3;
    height: auto;
    /* filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.45)); */
    mix-blend-mode: normal;
}

.medik8-product.cream {
    width: 17.5%;
    left: 24%;
    bottom: 15%;
    animation: floatCream 2.5s ease-in-out infinite;
}

@keyframes floatCream {
    0% {
        transform: rotate(22deg) translateY(0);
    }
    50% {
        transform: rotate(22deg) translateY(-12px);
    }
    100% {
        transform: rotate(22deg) translateY(0);
    }
}

.medik8-product.serum {
    width: 29%;
    left: 34.5%;
    bottom: 9%;
    animation: floatSerum 2.5s ease-in-out infinite;
}

@keyframes floatSerum {
    0% {
        transform: rotate(346deg) translateY(0);
    }
    50% {
        transform: rotate(346deg) translateY(-12px);
    }
    100% {
        transform: rotate(346deg) translateY(0);
    }
}
.medik8-product.tube {
    width: 27.5%;
    left: 64%;
    bottom: 0%;
    animation: floatTube 2.5s ease-in-out infinite;
}

@keyframes floatTube {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ==========================================================================
   FOOTER — BEAUTY MORALS
   ========================================================================== */
.beauty-footer {
    background: linear-gradient(180deg, #1a1714 0%, #2c241f 100%);
    color: #e4dad8;
}

/* --- Top CTA block --- */
.footer-cta-block {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1550px;
    margin: 0 auto;
    padding: 50px 50px;
}

.footer-cta-image {
    flex-shrink: 0;
    width: 260px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-cta-content {
    flex: 1;
    min-width: 0;
}

.footer-cta-tag {
    display: block;
    font-family: var(--font-body);
    font-size: var(--size-eyebrow);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a99b90;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-cta-heading {
    font-family: var(--font-heading);
    font-size: var(--size-h2);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.footer-cta-text {
    font-family: var(--font-body);
    font-size: var(--size-body);
    color: #c9bcae;
    line-height: 1.6;
    max-width: 420px;
}

.footer-cta-btn-wrap {
    flex-shrink: 0;
}

.footer-cta-btn,
.footer-cta-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 14px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12.5px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
    cursor: pointer;
}

.footer-cta-btn:hover,
.footer-cta-btn-small:hover {
    background: #ffffff;
    color: #1a1714;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* --- Bottom row: logo + info columns + CTA --- */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1550px;
    margin: 0 auto;
    padding: 35px 50px;
    flex-wrap: wrap;
}

.footer-logo-col {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    flex-shrink: 0;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a99b90;
    font-weight: 600;
}

.footer-info-value {
    font-family: var(--font-body);
    font-size: var(--size-small);
    color: #e4dad8;
}

.footer-info-value a {
    color: #e4dad8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-value a:hover {
    color: #ffffff;
}

/* --- Copyright bar --- */
.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1550px;
    margin: 0 auto;
    padding: 20px 50px;
    font-family: var(--font-body);
    font-size: var(--size-small);
    color: #8a7a6a;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: #8a7a6a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */
.wa-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.wa-button:hover {
    transform: scale(1.08);
}

.wa-popup {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 300px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.wa-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-header {
    background: #075E54;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.wa-close {
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.wa-body {
    padding: 18px 16px;
}

.wa-message {
    background: #f0f0f0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 14px;
}

.wa-chat-btn {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.wa-chat-btn:hover {
    background: #1ebc59;
}