/* =========================
   Fonts
========================= */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,300..700;1,17..18,300..700&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap');


/* =========================
   Base Typography
========================= */

html {
    font-size: 16px;
}

body {
    font-family: "Google Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    font-size: 110%;
    color: #222;
    background: #fff;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* =========================
   Headings
========================= */

h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Serif Display", serif;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 20px;
    color: #111;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* =========================
   Text Elements
========================= */

p {
    margin: 0 0 15px;
}

a {
    color: #003f70;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #0098d3;
     transition: all 0.2s ease;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

/* =========================
   Lists
========================= */

ul, ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

li {
    margin-bottom: 6px;
}

/* =========================
   Images
========================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   Layout Helpers
========================= */

.center {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   Sections spacing (base)
========================= */

#header,
#slideshow,
#doctors,
#promo,
#plasticservices,
#vascularservices,
#video,
#news,
#footer {
    width: 100%;
}

#header .center {
    display: flex;
    align-items: center;
    gap: 30px;
}

#logo {
    flex: 0 0 150px;
    width: 150px;
}

#logo .mod-custom,
#logo p {
    margin: 0;
}

#logo img {
    display: block;
    width: 100%;
    height: auto;
}

#infos {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

#infos .mod-custom {
    width: 100%;
}

.top-bar {
    padding: 20px 0;
    background: #fff;
}

.top-bar__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.top-bar__info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    margin-bottom: 15px;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar__item span,
.top-bar__item a,
.top-bar__item i {
    line-height: 1;
}
.top-bar__item img {
    display: block;
    width: 20px;
    height: 20px;
}

.top-bar__item a {
    color: inherit;
    text-decoration: none;
}

.top-bar__item a:hover {
    opacity: 0.7;
}

.top-bar__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.top-bar__socials li {
    margin: 0;
    padding: 0;
}

.top-bar__socials a {
    width: 44px;
    height: 44px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar__socials a img {
    display: block;
    width: 18px;
    height: 18px;
}

.top-bar__socials a:hover {
    background: #000;
}

.top-bar__socials a:hover img {
    filter: brightness(0) invert(1);
}


#menuBar{ background-color: #E6E6E6; border-bottom: 5px solid #AD976E;}


#doctors {
    padding-bottom: 80px;
}

.vp-doctors-section {
    width: 100%;
}

.vp-doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.vp-doctor-card {
    --vp-accent: #A81C23;
    --vp-accent-rgb: 168, 28, 35;
    --vp-title-color: #ffffff;
    --vp-card-bg: #ffffff;
    --vp-text-color: #2f2f2f;
    --vp-cta-bg: #ffffff;
    --vp-cta-text: var(--vp-accent);
    --vp-cta-icon-bg: var(--vp-accent);
    --vp-cta-icon-color: #ffffff;
    --vp-card-radius-tl: 0;
    --vp-card-radius-tr: 0;
    --vp-card-radius-br: 0;
    --vp-card-radius-bl: 0;

    position: relative;
    background: var(--vp-card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top-left-radius: var(--vp-card-radius-tl);
    border-top-right-radius: var(--vp-card-radius-tr);
    border-bottom-right-radius: var(--vp-card-radius-br);
    border-bottom-left-radius: var(--vp-card-radius-bl);
    overflow: hidden;
}

.vp-doctor-card--red {
    --vp-accent: #A81C23;
    --vp-accent-rgb: 168, 28, 35;
    --vp-card-radius-tr: 90px;
}

.vp-doctor-card--green {
    --vp-accent: #88925C;
    --vp-accent-rgb: 136, 146, 92;
    --vp-card-radius-tl: 90px;
}

.vp-doctor-card__media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vp-doctor-card__media {
    position: relative;
    overflow: hidden;
}

.vp-doctor-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.45s ease;
}

.vp-doctor-card--red .vp-doctor-card__image {
    background-image:
        linear-gradient(
            to top,
            rgba(168, 28, 35, 0.30) 0%,
            rgba(168, 28, 35, 0.08) 40%,
            rgba(168, 28, 35, 0.00) 100%
        ),
        url("/images/doundoulakisHomepage.webp");
}

.vp-doctor-card--green .vp-doctor-card__image {
    background-image:
        linear-gradient(
            to top,
            rgba(136, 146, 92, 0.28) 0%,
            rgba(136, 146, 92, 0.08) 40%,
            rgba(136, 146, 92, 0.00) 100%
        ),
        url("/images/delviniotiHomepage.webp");
}

.vp-doctor-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 28px 34px;
    background:
        linear-gradient(
            to top,
            rgba(var(--vp-accent-rgb), 0.72) 0%,
            rgba(var(--vp-accent-rgb), 0.34) 25%,
            rgba(var(--vp-accent-rgb), 0.10) 48%,
            rgba(var(--vp-accent-rgb), 0.00) 100%
        );
    pointer-events: none;
}

.vp-doctor-card__title {
    margin: 0;
    color: var(--vp-title-color) !important;
    line-height: 1.15;
    font-size: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    margin-bottom: 15px;
}

.vp-doctor-card:hover .vp-doctor-card__image {
    transform: scale(1.03);
}

.vp-doctor-card__cta-link {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 56px;
    align-items: stretch;
    width: calc(100% - 56px);
    margin: -18px auto 0;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vp-doctor-card__cta-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 20px 20px;
    background: var(--vp-cta-bg);
    color: var(--vp-cta-text);
    line-height: 1.3;
    text-align: center;
    font-size: 1.4rem;
}

.vp-doctor-card__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    background: var(--vp-cta-icon-bg);
    color: var(--vp-cta-icon-color);
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.vp-doctor-card__content {
    padding: 35px;
    background: #ffffff;
}

.vp-doctor-card__content p {
    margin: 0;
    color: var(--vp-text-color);
    line-height: 1.95;
}

.vp-doctor-card__cta-icon::before {
    content: "";
    display: block;

    width: 18px;
    height: 18px;

    background-color: #ffffff;

    -webkit-mask: url('/templates/webmac/svg/light/arrow-right.svg') no-repeat center / contain;
    mask: url('/templates/webmac/svg/light/arrow-right.svg') no-repeat center / contain;
}


.vpheading{ position: relative;}
.vpheading h5{ display: table; padding: 0 70px; position: relative; color: #AD976E; font-family: "Google Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif; font-weight: 400;}
.vpheading h5::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    position: absolute;
    background-color: #AD976E;
    bottom: 50%;
    top: 50%;
    margin: auto 0;
    left: 0;
}
.vpheading h5::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    position: absolute;
    background-color: #AD976E;
    bottom: 50%;
    top: 50%;
    right: 0;
    margin: auto 0;
}


.wmItemHeader {
    position: relative;
    aspect-ratio: 16 / 6;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin-bottom: 60px;
}

.wmItemHeader::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient( to top, #A81C23 0%, rgba(168, 28, 35, 0) 50%);  */

background: linear-gradient(
        to top,
        rgba(136, 146, 92, 0.85) 10%,
        rgba(136, 146, 92, 0) 70%
    );


    pointer-events: none;
    z-index: 1;
}
.wmItemHeader .center {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    align-content: flex-end;
    padding-bottom: 100px;
}

.wmItemHeader .title {
    width: 100%;
}


.wmItemHeader .title h1 {
    margin: 0 0 0px 0;
    color: #fff;
    font-size: 4rem;
    line-height: 160%;
}
.wmItemHeader .subtitle {
    margin: 0;
    color: #fff;
    font-size: 2.5rem;
    line-height: 160%;
    display: block;
    width: 100%;
}

.wmItemText{ margin-bottom: 60px; overflow: hidden;}
.wmItemText img{max-width: 100%; height: auto;}
.wmItemText h2{ color: #88925C;    margin: 30px 0;}

.wmItemText h3 { color: #88925C;    margin: 20px 0;}



/* Blog Category Layout */
.blog.com-content-category-blog {
    width: 100%;
    margin: 0;
    padding: 0 0 70px;
}

/* Main H1 */
.blog.com-content-category-blog > h1,
.blog.com-content-category-blog .page-header > h1 {
    width: 100%;
    margin: 0 0 34px;
    padding: 34px 24px;
    background: #AD976E;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
}

/* Subcategories menu wrapper */
.blog.com-content-category-blog .cat-children {
    max-width: 1440px;
    margin: 0 auto 44px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Remove Joomla default child spacing */
.blog.com-content-category-blog .com-content-category-blog__child {
    margin: 0;
    padding: 0;
}

/* Remove default h3 look */
.blog.com-content-category-blog .cat-children .page-header,
.blog.com-content-category-blog .cat-children .item-title {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    line-height: inherit;
}

/* Subcategory buttons */
.blog.com-content-category-blog .cat-children .item-title a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 26px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* Αγγειοχειρουργική */
.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(1) .item-title a {
    background: #A81C23;
}

/* Πλαστική Χειρουργική */
.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(2) .item-title a {
    background: #88925C;
}

.blog.com-content-category-blog .cat-children .item-title a:hover,
.blog.com-content-category-blog .cat-children .item-title a:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    filter: brightness(1.04);
}

/* Articles grid wrapper */
.blog.com-content-category-blog .blog-items {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

/* Kill Joomla column defaults if they interfere */
.blog.com-content-category-blog .blog-items.columns-2,
.blog.com-content-category-blog .blog-items.columns-3,
.blog.com-content-category-blog .blog-items.masonry-2,
.blog.com-content-category-blog .blog-items.masonry-3 {
    column-count: initial;
}

/* Item wrapper */
.blog.com-content-category-blog .blog-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Card */
.blog.com-content-category-blog .wm-blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(173, 151, 110, 0.22);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 151, 110, 0.48);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.13);
}

/* Image */
.blog.com-content-category-blog .wm-blog-card__image {
    position: relative;
    overflow: hidden;
    background: #f5f2ed;
    aspect-ratio: 16 / 9;
}

.blog.com-content-category-blog .wm-blog-card__image figure,
.blog.com-content-category-blog .wm-blog-card__image .item-image {
    width: 100%;
    height: 100%;
    margin: 0;
    float: none;
}

.blog.com-content-category-blog .wm-blog-card__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog.com-content-category-blog .wm-blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover .wm-blog-card__image img {
    transform: scale(1.045);
}

/* Card body */
.blog.com-content-category-blog .wm-blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 28px 28px;
}

/* Title */
.blog.com-content-category-blog .wm-blog-card__title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.blog.com-content-category-blog .wm-blog-card__title-link {
    color: #1f1f1f;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__title-link:hover,
.blog.com-content-category-blog .wm-blog-card__title-link:focus {
    color: #A81C23;
    text-decoration: none;
}

/* Meta */
.blog.com-content-category-blog .wm-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.blog.com-content-category-blog .wm-blog-card__category {
    color: #AD976E;
    text-decoration: none;
    font-weight: 700;
}

.blog.com-content-category-blog .wm-blog-card__category:hover,
.blog.com-content-category-blog .wm-blog-card__category:focus {
    color: #A81C23;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__meta-separator {
    color: #bbb;
}

.blog.com-content-category-blog .wm-blog-card__date {
    color: #777;
}

/* Intro */
.blog.com-content-category-blog .wm-blog-card__intro {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

/* Read more if enabled later */
.blog.com-content-category-blog .wm-blog-card__readmore {
    margin-top: auto;
    padding-top: 24px;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn,
.blog.com-content-category-blog .wm-blog-card__readmore a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: #AD976E;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn:hover,
.blog.com-content-category-blog .wm-blog-card__readmore a:hover {
    background: #A81C23;
    color: #fff;
}

/* Blog responsive */
@media (max-width: 991px) {
    .blog.com-content-category-blog .blog-items {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog.com-content-category-blog .wm-blog-card__body {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .blog.com-content-category-blog > h1,
    .blog.com-content-category-blog .page-header > h1 {
        padding: 28px 18px;
        margin-bottom: 26px;
    }

    .blog.com-content-category-blog .cat-children {
        padding: 0 18px;
        margin-bottom: 34px;
        justify-content: stretch;
    }

    .blog.com-content-category-blog .cat-children .com-content-category-blog__child {
        width: 100%;
    }

    .blog.com-content-category-blog .cat-children .item-title a {
        width: 100%;
    }

    .blog.com-content-category-blog .blog-items {
        padding: 0 18px;
    }

    .blog.com-content-category-blog .wm-blog-card {
        border-radius: 20px;
    }

    .blog.com-content-category-blog .wm-blog-card__title {
        font-size: 22px;
    }
}



/* Blog category layout */
.blog.com-content-category-blog {
    width: 100%;
    margin: 0;
    padding: 0 0 70px;
}

.blog.com-content-category-blog > h1,
.blog.com-content-category-blog .page-header > h1 {
    width: 100%;
    margin: 0 0 34px;
    padding: 34px 24px;
    background: #AD976E;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
}

/* Subcategory menu */
.blog.com-content-category-blog .cat-children {
    max-width: 1440px;
    margin: 0 auto 44px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.blog.com-content-category-blog .com-content-category-blog__child,
.blog.com-content-category-blog .cat-children .page-header,
.blog.com-content-category-blog .cat-children .item-title {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    line-height: inherit;
}

.blog.com-content-category-blog .cat-children .item-title a {
    min-height: 48px;
    padding: 13px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(1) .item-title a {
    background: #A81C23;
}

.blog.com-content-category-blog .cat-children .com-content-category-blog__child:nth-child(2) .item-title a {
    background: #88925C;
}

.blog.com-content-category-blog .cat-children .item-title a:hover,
.blog.com-content-category-blog .cat-children .item-title a:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

/* Article grid */
.blog.com-content-category-blog .blog-items {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.blog.com-content-category-blog .blog-items.columns-2,
.blog.com-content-category-blog .blog-items.columns-3,
.blog.com-content-category-blog .blog-items.masonry-2,
.blog.com-content-category-blog .blog-items.masonry-3 {
    column-count: initial;
}

.blog.com-content-category-blog .blog-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Blog card */
.blog.com-content-category-blog .wm-blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(173, 151, 110, 0.22);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 151, 110, 0.48);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.13);
}

.blog.com-content-category-blog .wm-blog-card__image {
    position: relative;
    overflow: hidden;
    background: #f5f2ed;
    aspect-ratio: 16 / 9;
}

.blog.com-content-category-blog .wm-blog-card__image figure,
.blog.com-content-category-blog .wm-blog-card__image .item-image,
.blog.com-content-category-blog .wm-blog-card__image a {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    float: none;
}

.blog.com-content-category-blog .wm-blog-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.blog.com-content-category-blog .wm-blog-card:hover .wm-blog-card__image img {
    transform: scale(1.045);
}

.blog.com-content-category-blog .wm-blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 28px 28px;
}

.blog.com-content-category-blog .wm-blog-card__title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.blog.com-content-category-blog .wm-blog-card__title-link {
    color: #1f1f1f;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__title-link:hover,
.blog.com-content-category-blog .wm-blog-card__title-link:focus {
    color: #B89F72;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__meta {
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.blog.com-content-category-blog .wm-blog-card__category {
    color: #9B855D;
    font-weight: 700;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__category:hover,
.blog.com-content-category-blog .wm-blog-card__category:focus {
    color: #B89F72;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__meta-separator {
    color: #c8bda8;
}

.blog.com-content-category-blog .wm-blog-card__date {
    color: #777;
}

.blog.com-content-category-blog .wm-blog-card__intro {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

/* Read more, if enabled */
.blog.com-content-category-blog .wm-blog-card__readmore {
    margin-top: auto;
    padding-top: 24px;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn,
.blog.com-content-category-blog .wm-blog-card__readmore a {
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #AD976E;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.blog.com-content-category-blog .wm-blog-card__readmore .btn:hover,
.blog.com-content-category-blog .wm-blog-card__readmore a:hover {
    background: #B89F72;
    color: #fff;
}

/* Global pagination */
.com-content-category-blog__navigation {
    max-width: 1440px;
    margin: 46px auto 0;
    padding: 0 24px;
    clear: both;
}

.com-content-category-blog__counter {
    float: none !important;
    margin: 0 0 18px;
    padding: 0 !important;
    color: #8C7853;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.pagination__wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(173, 151, 110, 0.30);
    border-radius: 999px;
    background: #fff;
    color: #8C7853;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(173, 151, 110, 0.10);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pagination .page-link:hover,
.pagination .page-link:focus {
    background: #B89F72;
    border-color: #B89F72;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(173, 151, 110, 0.24);
}

.pagination .active .page-link,
.pagination .page-item.active .page-link {
    background: #AD976E;
    border-color: #AD976E;
    color: #fff;
    box-shadow: 0 14px 30px rgba(173, 151, 110, 0.28);
}

.pagination .disabled .page-link,
.pagination .page-item.disabled .page-link {
    background: #fff;
    color: rgba(140, 120, 83, 0.35);
    border-color: rgba(173, 151, 110, 0.16);
    opacity: 1;
    pointer-events: none;
    box-shadow: none;
}

/* Pagination icon fallback */
.pagination .page-link .icon-angle-left,
.pagination .page-link .icon-angle-right,
.pagination .page-link .icon-angle-double-left,
.pagination .page-link .icon-angle-double-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit !important;
    font-size: 0;
    line-height: 1;
}

.pagination .page-link .icon-angle-left::before {
    content: "‹";
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.pagination .page-link .icon-angle-right::before {
    content: "›";
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.pagination .page-link .icon-angle-double-left::before {
    content: "«";
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.pagination .page-link .icon-angle-double-right::before {
    content: "»";
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .blog.com-content-category-blog .blog-items {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog.com-content-category-blog .wm-blog-card__body {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .blog.com-content-category-blog > h1,
    .blog.com-content-category-blog .page-header > h1 {
        margin-bottom: 26px;
        padding: 28px 18px;
    }

    .blog.com-content-category-blog .cat-children {
        margin-bottom: 34px;
        padding: 0 18px;
        justify-content: stretch;
    }

    .blog.com-content-category-blog .cat-children .com-content-category-blog__child,
    .blog.com-content-category-blog .cat-children .item-title a {
        width: 100%;
    }

    .blog.com-content-category-blog .blog-items {
        padding: 0 18px;
    }

    .blog.com-content-category-blog .wm-blog-card {
        border-radius: 20px;
    }

    .blog.com-content-category-blog .wm-blog-card__title {
        font-size: 22px;
    }
}




/* START: WM Blog Article */

.wm-blog-article {
    --wm-article-accent: #AD976E;
    --wm-article-accent-dark: #8f7a56;
    --wm-article-accent-soft: #f3eee6;
    --wm-article-text: #1f1f1f;
    --wm-article-muted: #6f6a61;
    --wm-article-border: rgba(173, 151, 110, 0.28);
    --wm-article-shadow: 0 22px 55px rgba(20, 20, 20, 0.16);
    --wm-article-max: 1200px;
    --wm-article-text-max: 1000px;

    color: var(--wm-article-text);
}

.wm-blog-article__hero {
    width: 100%;
    background: #171717;
    border-bottom: 4px solid var(--wm-article-accent);
    padding: 35px 24px 35px;
    margin: 0 0 42px;
}

.wm-blog-article__hero-inner {
    width: 100%;
    max-width: var(--wm-article-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 44px;
}

.wm-blog-article__headline-area {
    flex: 1 1 80%;
    min-width: 0;
}

.wm-blog-article__title {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.15rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin: 0;
    max-width: 940px;
}

.wm-blog-article__category {
    margin-top: 24px;
    font-size: 0.86rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wm-blog-article__category a,
.wm-blog-article__category span {
    color: var(--wm-article-accent);
    text-decoration: none;
}

.wm-blog-article__category a:hover,
.wm-blog-article__category a:focus {
    color: #fff;
    text-decoration: none;
}

.wm-blog-article__date-card {
    flex: 0 0 20%;
    min-width: 170px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #171717;
    background: #fff;
    padding: 28px 18px 24px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    position: relative;
}

.wm-blog-article__date-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid var(--wm-article-border);
    pointer-events: none;
}

.wm-blog-article__date-day {
    display: block;
    color: var(--wm-article-accent-dark);
    font-size: clamp(2.4rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.wm-blog-article__date-month {
    display: block;
    color: #171717;
    margin-top: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wm-blog-article__date-year {
    display: block;
    color: var(--wm-article-muted);
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: 0.18em;
}

.wm-blog-article__edit-tools,
.wm-blog-article__tags,
.wm-blog-article__links,
.wm-blog-article__toc,
.wm-blog-article__readmore {
    width: calc(100% - 48px);
    max-width: var(--wm-article-text-max);
    margin-left: auto;
    margin-right: auto;
}

.wm-blog-article__media {
    width: 100%;
    padding: 0 24px;
    margin: 0 0 54px;
}

.wm-blog-article__media-inner {
    width: 100%;
    max-width: var(--wm-article-max);
    margin: 0 auto;
}

.wm-blog-article__media-inner figure,
.wm-blog-article__media-inner .item-image {
    margin: 0;
}

.wm-blog-article__media-inner img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border: 0;
    box-shadow: var(--wm-article-shadow);
}

.wm-blog-article__content {
    width: 100%;
    padding: 0 24px;
}

.wm-blog-article__body {
    width: 100%;
    max-width: var(--wm-article-text-max);
    margin: 0 auto;
    color: var(--wm-article-text);
    font-size: clamp(1.06rem, 1.15vw, 1.2rem);
    line-height: 1.85;
}

.wm-blog-article__body > *:first-child {
    margin-top: 0;
}

.wm-blog-article__body p {
    margin: 0 0 1.35em;
}
.wm-blog-article__body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border: 0;
}
/* .wm-blog-article__body h2,
.wm-blog-article__body h3,
.wm-blog-article__body h4 {
    color: #171717;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin: 2.1em 0 0.75em;
}

.wm-blog-article__body h2 {
    font-size: clamp(1.8rem, 2.4vw, 2.55rem);
}

.wm-blog-article__body h3 {
    font-size: clamp(1.45rem, 1.8vw, 1.9rem);
} */

.wm-blog-article__body h4 {
    font-size: 1.22rem;
}

.wm-blog-article__body a {
    color: var(--wm-article-accent-dark);
    text-decoration-color: rgba(173, 151, 110, 0.45);
    text-underline-offset: 0.2em;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.wm-blog-article__body a:hover,
.wm-blog-article__body a:focus {
    color: #171717;
    text-decoration-color: var(--wm-article-accent);
}

.wm-blog-article__body blockquote {
    margin: 2.2em 0;
    padding: 28px 34px;
    color: #2b2b2b;
    background: var(--wm-article-accent-soft);
    border-left: 5px solid var(--wm-article-accent);
    font-size: 1.08em;
    line-height: 1.7;
}

.wm-blog-article__body ul,
.wm-blog-article__body ol {
    margin: 0 0 1.5em 1.25em;
    padding: 0;
}

.wm-blog-article__body li {
    margin: 0 0 0.55em;
}

.wm-blog-article__body strong {
    color: #171717;
}

.wm-blog-article__tags {
    margin-top: 28px;
    margin-bottom: 28px;
}

.wm-blog-article__toc {
    margin-bottom: 42px;
    padding: 24px 28px;
    background: #faf8f4;
    border-left: 4px solid var(--wm-article-accent);
}

.wm-blog-article__links {
    margin-top: 28px;
    margin-bottom: 28px;
}

.wm-blog-article__page-heading {
    width: calc(100% - 48px);
    max-width: var(--wm-article-max);
    margin: 0 auto 24px;
}

@media (max-width: 900px) {
    .wm-blog-article__hero {
        padding: 54px 20px 48px;
        margin-bottom: 34px;
    }

    .wm-blog-article__hero-inner {
        display: block;
    }

    .wm-blog-article__date-card {
        width: 150px;
        min-width: 150px;
        margin-top: 30px;
        padding: 22px 14px 20px;
        align-items: flex-start;
        text-align: left;
    }

    .wm-blog-article__date-card::before {
        inset: 8px;
    }

    .wm-blog-article__date-day {
        font-size: 3.4rem;
    }

    .wm-blog-article__media {
        padding: 0 20px;
        margin-bottom: 42px;
    }

    .wm-blog-article__content {
        padding: 0 20px;
    }

    .wm-blog-article__edit-tools,
    .wm-blog-article__tags,
    .wm-blog-article__links,
    .wm-blog-article__toc,
    .wm-blog-article__readmore,
    .wm-blog-article__page-heading {
        width: calc(100% - 40px);
    }
}

@media (max-width: 560px) {
    .wm-blog-article__hero {
        padding: 42px 18px 38px;
    }

    .wm-blog-article__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .wm-blog-article__category {
        margin-top: 18px;
        font-size: 0.78rem;
    }

    .wm-blog-article__date-card {
        width: 132px;
        min-width: 132px;
        margin-top: 24px;
    }

    .wm-blog-article__date-day {
        font-size: 3rem;
    }

    .wm-blog-article__date-month {
        font-size: 0.88rem;
    }

    .wm-blog-article__date-year {
        font-size: 0.78rem;
    }

    .wm-blog-article__media {
        padding: 0 16px;
        margin-bottom: 34px;
    }

    .wm-blog-article__content {
        padding: 0 16px;
    }

    .wm-blog-article__body {
        font-size: 1.02rem;
        line-height: 1.78;
    }

    .wm-blog-article__body blockquote {
        padding: 22px 24px;
    }

    .wm-blog-article__edit-tools,
    .wm-blog-article__tags,
    .wm-blog-article__links,
    .wm-blog-article__toc,
    .wm-blog-article__readmore,
    .wm-blog-article__page-heading {
        width: calc(100% - 32px);
    }
}

/* END: WM Blog Article */

#plasticservices{ padding: 75px 0; padding-bottom: 0;}

.webmacModH3 {
     margin: 0 0 40px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 2.7vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: #111;
    text-align: center;   
}
#plasticservices .center{ max-width: 100%; padding: 0;}
.vp-services {
  width: 100%;
  overflow: hidden;
  background: #fff;
}



.vp-service-row {
  position: relative;
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 37.5vw, 620px);
}

.vp-service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 86px);
  background: #fff;
  z-index: 2;
}

.vp-service-content h3 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.7vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #111;
}

.vp-service-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp-service-content li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 38px;
  line-height: 1.35;
}

.vp-service-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 24px;
  height: 1px;
  background: #ad976e;
}

.vp-service-content a {
  color: #111;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.vp-service-content a:hover {
  color: #ad976e;
}

.vp-service-media {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: #ddd;
}

.vp-service-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Video δεξιά: ξεκινάει από τη μέση του 1440 και πάει μέχρι τέρμα δεξιά viewport */
.vp-media-right .vp-service-content {
  grid-column: 1 / 2;
}

.vp-media-right .vp-service-media {
  left: 50%;
  right: calc((1440px - 100vw) / 2);
}

/* Video αριστερά: ξεκινάει τέρμα αριστερά viewport και σταματάει στη μέση του 1440 */
.vp-media-left .vp-service-content {
  grid-column: 2 / 3;
}

.vp-media-left .vp-service-media {
  left: calc((1440px - 100vw) / 2);
  right: 50%;
}

@media (max-width: 1488px) {
  .vp-media-right .vp-service-media {
    right: -24px;
  }

  .vp-media-left .vp-service-media {
    left: -24px;
  }
}

@media (max-width: 768px) {
  .vp-services-title {
    width: calc(100% - 40px);
    margin-bottom: 22px;
  }

  .vp-service-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .vp-service-media {
    position: relative;
    left: auto !important;
    right: auto !important;
    width: 100%;
    height: 280px;
    order: 1;
  }

  .vp-service-content {
    order: 2;
    padding: 36px 24px 44px;
  }

  .vp-service-content h3 {
    font-size: 2rem;
  }
}


#news{ background-color: #E6E6E6; padding: 75px 0;}


.wm-blog-module {
    --wm-blog-accent: #AD976E;
    --wm-blog-text: #292621;
    --wm-blog-muted: #81786c;
    --wm-blog-line: rgba(173, 151, 110, 0.28);
    --wm-blog-bg: #fbfaf8;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 46px);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.wm-blog-module__item {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.wm-blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.wm-blog-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0 0 20px;
    background: var(--wm-blog-bg);
}

.wm-blog-card__image::after {
    content: "";
    position: absolute;
    inset: auto 18px -1px 18px;
    height: 3px;
    background: var(--wm-blog-accent);
    transform: scaleX(0.34);
    transform-origin: left center;
    transition: transform 0.28s ease;
    pointer-events: none;
}

.wm-blog-card:hover .wm-blog-card__image::after {
    transform: scaleX(1);
}

.wm-blog-card__image a,
.wm-blog-card__image figure {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.wm-blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.wm-blog-card:hover .wm-blog-card__image img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

.wm-blog-card__body {
    position: relative;
    min-width: 0;
    padding-left: 18px;
}

.wm-blog-card__body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--wm-blog-accent),
        var(--wm-blog-line),
        transparent
    );
}

.wm-blog-card__title {
    margin: 0 0 9px;
    line-height: 1.18;
}

.wm-blog-card__title-link {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: color 0.22s ease, background-size 0.22s ease;
}

.wm-blog-card__title-link:hover,
.wm-blog-card__title-link:focus {
    color: var(--wm-blog-accent);
    background-size: 100% 1px;
    text-decoration: none;
}

.wm-blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--wm-blog-muted);
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.wm-blog-card__date::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--wm-blog-accent);
    opacity: 0.75;
}

.wm-blog-card__intro {
    margin: 0;
    color: var(--wm-blog-text);
    line-height: 1.58;
}

@media (max-width: 991.98px) {
    .wm-blog-module {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }
}

@media (max-width: 575.98px) {
    .wm-blog-module {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wm-blog-card__image {
        margin-bottom: 18px;
    }

    .wm-blog-card__body {
        padding-left: 15px;
    }
}




#vascularservices{background: #e6e6e6; padding: 75px 0;} 

/* ==================================================
   START: Vascular Services Section
   ================================================== */

.wm-vascular-services {
    position: relative;
    width: 100%;
    overflow: visible;
}

.wm-vascular-services__inner {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: stretch;
}

.wm-vascular-services__left {
    position: relative;
    min-width: 0;
}

.wm-vascular-services__sticky {
    position: sticky;
    top: 110px;
}

.wm-vascular-services__title {
    position: relative;
    margin: 0 0 1rem;
    padding-bottom: 1.05rem;
    letter-spacing: -0.045em;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 2.7vw, 2.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: #111;
}

.wm-vascular-services__title::after {
    content: "";
    display: block;
    width: 58px;
    height: 1px;
    margin-top: 1rem;
    background: #ad976e;
}

.wm-vascular-services__intro {
    margin: 0;
    font-size: clamp(0.92rem, 0.95vw, 1rem);
    line-height: 1.75;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.68);
}

.wm-vascular-services__center,
.wm-vascular-services__right {
    min-width: 0;
}

.wm-vascular-services__center {
    display: grid;
    gap: clamp(3rem, 5vw, 5.5rem);
}

.wm-vascular-services__right {
    display: flex;
    align-items: center;
}

.wm-vascular-service-card {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    isolation: isolate;
}

.wm-vascular-service-card__media {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 1.15rem;
    overflow: hidden;
    border-radius: 0;
}

.wm-vascular-service-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 58%,
        rgba(0, 0, 0, 0.22) 100%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.wm-vascular-service-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transform: scale(1);
    filter: saturate(0.92) contrast(1.02);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.wm-vascular-service-card__body {
    position: relative;
    padding-top: 0.1rem;
}

.wm-vascular-service-card__body::before {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin: 0 0 0.9rem;
    background: #A81C23;
    opacity: 0.45;
    transform-origin: left center;
    transform: scaleX(0.72);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.wm-vascular-service-card__title {
    margin: 0 0 0.55rem;
    line-height: 1.25;
    color: #151515;
    font-family: "Google Sans", Inter, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 800;
}

.wm-vascular-service-card__text {
    margin: 0;
    font-size: clamp(0.86rem, 0.9vw, 0.96rem);
    line-height: 1.7;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.62);
}

.wm-vascular-service-card::after {
    content: "";
    position: absolute;
    left: -0.75rem;
    right: -0.75rem;
    bottom: -0.9rem;
    height: 34%;
    z-index: -1;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.wm-vascular-service-card:hover .wm-vascular-service-card__media::before {
    opacity: 1;
}

.wm-vascular-service-card:hover .wm-vascular-service-card__media img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.05);
}

.wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    opacity: 1;
    transform: scaleX(1);
}

.wm-vascular-service-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.wm-vascular-service-card--centered {
    width: 100%;
}

/* Tablet */
@media (max-width: 991px) {
    .wm-vascular-services__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .wm-vascular-services__left {
        grid-column: 1 / -1;
    }

    .wm-vascular-services__sticky {
        position: static;
    }

    .wm-vascular-services__right {
        align-items: flex-start;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .wm-vascular-services__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wm-vascular-services__center {
        gap: 2.5rem;
    }

    .wm-vascular-services__right {
        display: block;
    }

    .wm-vascular-service-card::after {
        display: none;
    }
}

/* ==================================================
   END: Vascular Services Section
   ================================================== */

/* ==================================================
   START: Vascular Services Section Animation Addon
   ================================================== */

.wm-vascular-js-ready .wm-vascular-animate-item {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--wm-delay, 0ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-item {
    opacity: 1;
    transform: translateY(0);
}

.wm-vascular-js-ready .wm-vascular-animate-card {
    opacity: 1;
}

.wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media {
    clip-path: inset(100% 0 0 0);
    transform: translateY(22px);
    transition:
        clip-path 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--wm-delay, 0ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-card .wm-vascular-service-card__media {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

.wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: #ad976e;
    transform: translateY(0);
    transition: transform 0.9s cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: calc(var(--wm-delay, 0ms) + 120ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-card .wm-vascular-service-card__media::after {
    transform: translateY(-101%);
}

.wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__body {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--wm-delay, 0ms) + 420ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-animate-card .wm-vascular-service-card__body {
    opacity: 1;
    transform: translateY(0);
}

.wm-vascular-js-ready .wm-vascular-services__title::after,
.wm-vascular-js-ready .wm-vascular-service-card__body::before {
    transform-origin: left center;
    transform: scaleX(0);
}

.wm-vascular-js-ready.is-visible .wm-vascular-services__title::after {
    transform: scaleX(1);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 280ms;
}

.wm-vascular-js-ready.is-visible .wm-vascular-service-card__body::before {
    transform: scaleX(0.72);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
    transition-delay: calc(var(--wm-delay, 0ms) + 520ms);
}

.wm-vascular-js-ready.is-visible .wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
    .wm-vascular-js-ready .wm-vascular-animate-item,
    .wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media,
    .wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__body {
        opacity: 1;
        transform: none;
        clip-path: none;
        transition: none;
    }

    .wm-vascular-js-ready .wm-vascular-animate-card .wm-vascular-service-card__media::after {
        display: none;
    }

    .wm-vascular-js-ready .wm-vascular-services__title::after,
    .wm-vascular-js-ready .wm-vascular-service-card__body::before {
        transform: none;
        transition: none;
    }
}
.wm-vascular-js-ready.is-visible .wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    transform: scaleX(1);
    opacity: 1;
}
.wm-vascular-js-ready .wm-vascular-service-card__body::before {
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}
.wm-vascular-js-ready.is-visible .wm-vascular-service-card__body::before {
    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
    transition-delay: 0ms;
}

.wm-vascular-js-ready.is-visible .wm-vascular-service-card:hover .wm-vascular-service-card__body::before {
    transform: scaleX(1);
    opacity: 1;
    transition-delay: 0ms;
}
/* ==================================================
   END: Vascular Services Section Animation Addon
   ================================================== */

#slideshow{ margin-bottom: 75px;}
/* .slideshowTitle div { text-shadow: 0 0 30px #000 !important;} */




/* ==================================================
   RED STYLE
   ================================================== */

body.red .wmItemHeader::after {

background: linear-gradient(to top, #A81C23 0%, rgba(168, 28, 35, 0) 50%);

}

body.red .wmItemText h2{ color: #A81C23;    margin: 30px 0;}

body.red .wmItemText h3 { color: #A81C23;    margin: 20px 0;}
   /* ==================================================
   END RED STYLE
   ================================================== */

/* ==================================================
   Black STYLE
   ================================================== */

body.black .wmItemHeader::after {

background: linear-gradient(to top, #080808 0%, rgba(168, 28, 35, 0) 50%);

}

body.black .wmItemText h2{ color: #A81C23;    margin: 30px 0;}

body.black .wmItemText h3 { color: #A81C23;    margin: 20px 0;}
   /* ==================================================
   END Black STYLE
   ================================================== */







   /* ==================================================
   LIPOIDIMA STYLE
   ================================================== */
.red-white, .red-white h2, .red-white h3{ color: #fff;}


/* START VP LIPΕDEMA SECTION */

.vp-lipedema-section {
  --vp-gold: #AD976E;
  --vp-red: #A81C23;
  --vp-olive: #88925C;
  --vp-dark: #171412;
  --vp-text: #4d4742;
  --vp-soft: #f8f5ef;
  --vp-line: rgba(173, 151, 110, 0.28);

  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(173, 151, 110, 0.22), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(168, 28, 35, 0.13), transparent 30rem),
    linear-gradient(135deg, #fff 0%, var(--vp-soft) 100%);
}

.vp-lipedema-section::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  pointer-events: none;
  border: 1px solid rgba(173, 151, 110, 0.22);
}

.vp-lipedema-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.vp-lipedema-header {
  max-width: 820px;
  margin: 0 auto clamp(2.4rem, 5vw, 4.5rem);
  text-align: center;
}

.vp-lipedema-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--vp-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vp-lipedema-kicker::before,
.vp-lipedema-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--vp-gold);
}

.vp-lipedema-header h2 {
  margin: 0;
  color: var(--vp-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.vp-lipedema-header p {
  max-width: 760px;
  margin: 1.15rem auto 0;
  color: var(--vp-text);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.75;
}

.vp-lipedema-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 2.6vw, 2.5rem);
}

.vp-lipedema-block {
  position: relative;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid var(--vp-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(44, 34, 22, 0.09);
  backdrop-filter: blur(10px);
}

.vp-lipedema-block::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 151, 110, 0.22), transparent 68%);
  pointer-events: none;
}

.vp-lipedema-block-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.vp-lipedema-block-title span {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--vp-red), #6f1015);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(168, 28, 35, 0.25);
}

.vp-lipedema-block-types .vp-lipedema-block-title span {
  background: linear-gradient(135deg, var(--vp-olive), #5f673f);
  box-shadow: 0 12px 24px rgba(136, 146, 92, 0.25);
}

.vp-lipedema-block-title h3 {
  margin: 0;
  color: var(--vp-dark);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.vp-lipedema-cards {
  display: grid;
  gap: 1rem;
}

.vp-lipedema-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.25rem 1.25rem 1.45rem;
  border-radius: 22px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(173, 151, 110, 0.6), rgba(168, 28, 35, 0.18)) border-box;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vp-lipedema-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 4px;
  height: calc(100% - 2rem);
  border-radius: 999px;
  background: var(--vp-red);
}

.vp-lipedema-block-types .vp-lipedema-card::before {
  background: var(--vp-olive);
}

.vp-lipedema-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(44, 34, 22, 0.1);
}

.vp-lipedema-number {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  color: var(--vp-red);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vp-lipedema-block-types .vp-lipedema-number {
  color: var(--vp-olive);
}

.vp-lipedema-card p {
  margin: 0;
  color: var(--vp-text);
  font-size: 1rem;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .vp-lipedema-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vp-lipedema-section {
    padding: 3rem 1rem;
  }

  .vp-lipedema-section::before {
    inset: 0.75rem;
  }

  .vp-lipedema-block {
    border-radius: 22px;
  }

  .vp-lipedema-block-title {
    align-items: flex-start;
  }

  .vp-lipedema-block-title span {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .vp-lipedema-card {
    padding: 1.1rem 1rem 1.1rem 1.25rem;
    border-radius: 18px;
  }
}

/* END VP LIPΕDEMA SECTION */


/* START V&P LIPOEDEMA PAGE */

.vp-lipo-page {
  --vp-gold: #AD976E;
  --vp-red: #A81C23;
  --vp-olive: #88925C;
  --vp-dark: #171412;
  --vp-text: #4f4943;
  --vp-muted: #766d63;
  --vp-soft: #f8f5ef;
  --vp-cream: #fffaf1;
  --vp-line: rgba(173, 151, 110, 0.26);
  --vp-shadow: 0 24px 70px rgba(42, 32, 22, 0.09);

  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6.5rem) 1.25rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(173, 151, 110, 0.22), transparent 32rem),
    radial-gradient(circle at 100% 45%, rgba(168, 28, 35, 0.1), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, var(--vp-soft) 100%);
  color: var(--vp-text);
}

.vp-lipo-rest {
  padding-top: clamp(2.5rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 0% 20%, rgba(136, 146, 92, 0.16), transparent 30rem),
    radial-gradient(circle at 100% 60%, rgba(173, 151, 110, 0.18), transparent 34rem),
    linear-gradient(135deg, var(--vp-soft) 0%, #ffffff 100%);
}

.vp-lipo-page *,
.vp-lipo-page *::before,
.vp-lipo-page *::after {
  box-sizing: border-box;
}

.vp-lipo-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.vp-lipo-hero-section {
  max-width: 1080px;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.vp-lipo-hero-content {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(173, 151, 110, 0.25), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, var(--vp-cream) 100%);
  border: 1px solid var(--vp-line);
  box-shadow: var(--vp-shadow);
}

.vp-lipo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--vp-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vp-lipo-eyebrow::before,
.vp-lipo-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--vp-gold);
}

.vp-lipo-hero-content h1 {
  margin: 0;
  color: var(--vp-dark);
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.vp-lipo-hero-content p {
  max-width: 900px;
  margin: 1.25rem auto 0;
  color: var(--vp-muted);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.75;
}

.vp-lipo-section {
  margin-top: clamp(2rem, 5vw, 5rem);
}

.vp-lipo-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.7rem);
  border: 1px solid var(--vp-line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--vp-shadow);
  backdrop-filter: blur(10px);
}

.vp-lipo-main-card {
  max-width: 1120px;
  margin: 0 auto;
  border-left: 6px solid var(--vp-red);
}

.vp-lipo-accent-card {
  border-left: 6px solid var(--vp-olive);
  background:
    radial-gradient(circle at top right, rgba(136, 146, 92, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.86);
}

.vp-lipo-card h2 {
  margin: 0 0 1.15rem;
  color: var(--vp-dark);
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.vp-lipo-card h3 {
  margin: 0 0 0.85rem;
  color: var(--vp-red);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.vp-lipo-card p {
  margin: 0 0 1rem;
  color: var(--vp-text);
  font-size: 1.05rem;
  line-height: 1.82;
}

.vp-lipo-card p:last-child {
  margin-bottom: 0;
}

.vp-lipo-section-heading {
  max-width: 920px;
  margin: 0 auto clamp(1.6rem, 4vw, 3rem);
  text-align: center;
}

.vp-lipo-section-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--vp-red), #711116);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(168, 28, 35, 0.23);
}

.vp-lipo-types .vp-lipo-section-number {
  background: linear-gradient(135deg, var(--vp-olive), #5f673f);
  box-shadow: 0 14px 28px rgba(136, 146, 92, 0.23);
}

.vp-lipo-section-heading h2 {
  margin: 0;
  color: var(--vp-dark);
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.vp-lipo-section-heading p {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--vp-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.vp-lipo-grid {
  display: grid;
  gap: 1.15rem;
}

.vp-lipo-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vp-lipo-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vp-lipo-stage-card,
.vp-lipo-type-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(173, 151, 110, 0.7), rgba(168, 28, 35, 0.22)) border-box;
  box-shadow: 0 18px 45px rgba(42, 32, 22, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vp-lipo-type-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(173, 151, 110, 0.65), rgba(136, 146, 92, 0.35)) border-box;
}

.vp-lipo-stage-card::before,
.vp-lipo-type-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -45px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(168, 28, 35, 0.08);
}

.vp-lipo-type-card::before {
  background: rgba(136, 146, 92, 0.12);
}

.vp-lipo-stage-card:hover,
.vp-lipo-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(42, 32, 22, 0.13);
}

.vp-lipo-stage-card h3,
.vp-lipo-type-card h3 {
  position: relative;
  margin: 0 0 0.8rem;
  color: var(--vp-red);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.vp-lipo-type-card h3 {
  color: var(--vp-olive);
}

.vp-lipo-stage-card p,
.vp-lipo-type-card p {
  position: relative;
  margin: 0;
  color: var(--vp-text);
  font-size: 1.02rem;
  line-height: 1.72;
}

.vp-lipo-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.vp-lipo-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 3rem;
  border-radius: 18px;
  background: var(--vp-cream);
  color: var(--vp-text);
  line-height: 1.6;
}

.vp-lipo-list li::before {
  content: "";
  position: absolute;
  top: 1.08rem;
  left: 1rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vp-red);
  box-shadow: inset 0 0 0 5px #fff;
}

.vp-lipo-dark-card {
  background:
    radial-gradient(circle at top right, rgba(173, 151, 110, 0.18), transparent 26rem),
    linear-gradient(135deg, var(--vp-dark), #2a211b);
  color: #fff;
  border-color: rgba(173, 151, 110, 0.32);
}

.vp-lipo-dark-card p {
  color: rgba(255, 255, 255, 0.88);
}

.vp-lipo-list-dark li {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
}

.vp-lipo-list-dark li::before {
  background: var(--vp-gold);
}

.vp-lipo-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.vp-lipo-faq-item {
  padding: 1.25rem;
  border-radius: 22px;
  background: var(--vp-cream);
  border: 1px solid var(--vp-line);
}

.vp-lipo-faq-item h3 {
  color: var(--vp-red);
}

.vp-lipo-faq-item p {
  font-size: 0.98rem;
  line-height: 1.68;
}

.vp-lipo-cta {
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.vp-lipo-cta-inner {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 10% 0%, rgba(173, 151, 110, 0.28), transparent 22rem),
    linear-gradient(135deg, var(--vp-dark), #2a211b);
  color: #fff;
  box-shadow: 0 30px 90px rgba(23, 20, 18, 0.25);
}

.vp-lipo-cta-inner::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(173, 151, 110, 0.28);
  border-radius: 28px;
  pointer-events: none;
}

.vp-lipo-cta-inner h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.vp-lipo-cta-inner p {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 1.15rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

@media (max-width: 1200px) {
  .vp-lipo-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .vp-lipo-grid-3,
  .vp-lipo-grid-4,
  .vp-lipo-faq-list {
    grid-template-columns: 1fr;
  }

  .vp-lipo-stage-card,
  .vp-lipo-type-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .vp-lipo-page {
    padding: 3rem 1rem;
  }

  .vp-lipo-hero-content,
  .vp-lipo-card,
  .vp-lipo-cta-inner {
    border-radius: 24px;
  }

  .vp-lipo-hero-content h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .vp-lipo-eyebrow::before,
  .vp-lipo-eyebrow::after {
    width: 24px;
  }

  .vp-lipo-section-number {
    width: 48px;
    height: 48px;
  }

  .vp-lipo-list li {
    padding-left: 2.6rem;
  }

  .vp-lipo-cta-inner::before {
    inset: 0.7rem;
    border-radius: 20px;
  }
}
/* START FAQ VERTICAL LAYOUT */

.vp-lipo-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 1.5rem auto 0;
}

.vp-lipo-faq-item {
  position: relative;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border-radius: 22px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(173, 151, 110, 0.55), rgba(168, 28, 35, 0.2)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 14px 34px rgba(42, 32, 22, 0.07);
}

.vp-lipo-faq-item::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 5px;
  height: calc(100% - 2.5rem);
  border-radius: 999px;
  background: var(--vp-red);
}

.vp-lipo-faq-item h3 {
  margin: 0 0 0.75rem;
  padding-left: 0.35rem;
  color: var(--vp-red);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.3;
  font-weight: 900;
}

.vp-lipo-faq-item p,
.vp-lipo-faq-item .vp-lipo-list {
  padding-left: 0.35rem;
}

.vp-lipo-faq-item p {
  margin: 0;
  color: var(--vp-text);
  font-size: 1rem;
  line-height: 1.75;
}
.vp-lipo-faq-box {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* START LIPOEDEMA TOP BACKGROUND FADE */

.vp-lipo-intro {
  background:
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 7%,
      rgba(255, 255, 255, 0.94) 16%,
      rgba(248, 245, 239, 0.72) 32%,
      rgba(248, 245, 239, 0) 52%
    ),
    radial-gradient(circle at 8% 0%, rgba(173, 151, 110, 0.22), transparent 32rem),
    radial-gradient(circle at 100% 45%, rgba(168, 28, 35, 0.1), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, var(--vp-soft) 100%);
}

/* END LIPOEDEMA TOP BACKGROUND FADE */
/* START REPLACE DARK BLOCKS WITH PREMIUM LIGHT STYLE */

/* PAL BOX */
.vp-lipo-dark-card {
  background:
    radial-gradient(circle at top left, rgba(173, 151, 110, 0.22), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(168, 28, 35, 0.08), transparent 26rem),
    linear-gradient(135deg, #fbf7f1 0%, #f4ede3 52%, #efe5d7 100%);
  color: var(--vp-text);
  border: 1px solid rgba(173, 151, 110, 0.28);
  box-shadow: 0 24px 60px rgba(42, 32, 22, 0.1);
}

.vp-lipo-dark-card p {
  color: var(--vp-text);
}

.vp-lipo-dark-card .vp-lipo-list-dark li {
  background: rgba(255, 255, 255, 0.52);
  background: #fff;
  color: var(--vp-text);
  border: 1px solid rgba(173, 151, 110, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.vp-lipo-dark-card .vp-lipo-list-dark li::before {
  background: var(--vp-red);
  box-shadow: inset 0 0 0 5px #fff;
}


/* CTA BOX */
.vp-lipo-cta-inner {
  background:
    radial-gradient(circle at 12% 18%, rgba(173, 151, 110, 0.28), transparent 20rem),
    radial-gradient(circle at 88% 82%, rgba(168, 28, 35, 0.09), transparent 22rem),
    linear-gradient(135deg, #f8f2e8 0%, #f1e7d8 45%, #eadcc8 100%);
  color: var(--vp-dark);
  box-shadow: 0 28px 80px rgba(42, 32, 22, 0.14);
}

.vp-lipo-cta-inner::before {
  border: 1px solid rgba(173, 151, 110, 0.38);
}

.vp-lipo-cta-inner h2 {
  color: var(--vp-dark);
  text-shadow: none;
}

.vp-lipo-cta-inner p {
  color: var(--vp-text);
}

.vp-lipo-cta-inner span {
  color: var(--vp-red);
}

/* END REPLACE DARK BLOCKS WITH PREMIUM LIGHT STYLE */
/* END FAQ VERTICAL LAYOUT */
/* END V&P LIPOEDEMA PAGE */




      /* ==================================================
   END LIPOIDIMA STYLE
   ================================================== */






Ναι, σωστά. Έκανα παντού αντικατάσταση του `#main .igui-scope` με `#main .profile-3`, ώστε το CSS να εφαρμόζεται αποκλειστικά στο συγκεκριμένο gallery profile και να μη γαμιούνται οι υπόλοιπες galleries.

```css
#main .profile-3,
#main .profile-3 * {
  box-sizing: border-box;
}

#main .profile-3 {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 0 80px !important;
  overflow: visible !important;

  --ig-gold: #ad976f;
  --ig-gold-dark: #8f7b56;
  --ig-text: #1d1a17;
  --ig-soft-bg: #faf7f0;
  --ig-border: rgba(173, 151, 111, 0.22);
  --ig-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --ig-shadow-hover: 0 26px 65px rgba(0, 0, 0, 0.18);
}

/* Title σαν Blog header */
#main .profile-3 .igallery_title {
  width: 100vw !important;
  margin: 0 calc(50% - 50vw) 54px !important;
  padding: 34px 24px 36px !important;

  background: #ad976f !important;
  color: #ffffff !important;

  text-align: center !important;
  font-family: "Noto Serif Display", serif !important;
  font-size: clamp(38px, 3.3vw, 54px) !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
}

/* Main gallery wrapper */
#main .profile-3 .ig-gallery-wrapper {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
}

/* Grid override */
#main .profile-3 .ig-thumbs-grid {
  width: 100% !important;
  max-width: 1440px !important;
  height: auto !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 34px !important;

  position: relative !important;
  visibility: visible !important;
}

/* Card */
#main .profile-3 .ig-thumbs-grid-block {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;

  position: relative !important;
  left: auto !important;
  top: auto !important;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--ig-soft-bg) 100%
  ) !important;
  border: 1px solid var(--ig-border) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: var(--ig-shadow) !important;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease !important;
}

#main .profile-3 .ig-thumbs-grid-block:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--ig-shadow-hover) !important;
  border-color: rgba(173, 151, 111, 0.42) !important;
}

/* Image area */
#main .profile-3 .ig-grid-img-link {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  background: #111111 !important;
  cursor: pointer !important;
  position: relative !important;
}

/* Ειδική αναλογία για το gallery-scope-5 */
#main #gallery-scope-5 .ig-grid-img-link {
  aspect-ratio: 9 / 12 !important;
}

#main .profile-3 .ig-thumbs-grid-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;

  transform: scale(1.01) !important;
  transition:
    transform 0.4s ease,
    filter 0.4s ease !important;
}

#main .profile-3 .ig-thumbs-grid-block:hover .ig-thumbs-grid-image {
  transform: scale(1.06) !important;
  filter: brightness(0.86) contrast(1.04) !important;
}

/* Overlay */
#main .profile-3 .ig-grid-img-link .igui-position-cover.igui-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.34) 100%
  ) !important;
  transition: background 0.3s ease !important;
}

#main
  .profile-3
  .ig-thumbs-grid-block:hover
  .ig-grid-img-link
  .igui-position-cover.igui-overlay {
  background: linear-gradient(
    180deg,
    rgba(173, 151, 111, 0.04) 0%,
    rgba(0, 0, 0, 0.48) 100%
  ) !important;
}

/* Play button σωστά καρφωμένο στο κέντρο */
#main .profile-3 .ig-preview-play-icon-back,
#main .profile-3 .ig-preview-play-icon {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
}

#main .profile-3 .ig-preview-play-icon-back {
  width: 66px !important;
  height: 66px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(8px) !important;
  z-index: 2 !important;

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease !important;
}

#main .profile-3 .ig-preview-play-icon {
  width: 66px !important;
  height: 66px !important;
  z-index: 3 !important;
  display: block !important;
}

#main .profile-3 .ig-preview-play-icon svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  transform: translate(-46%, -50%) !important;
}

#main .profile-3 .ig-preview-play-icon svg polygon {
  stroke: var(--ig-gold-dark) !important;
  stroke-width: 1.7 !important;
}

#main .profile-3 .ig-thumbs-grid-block:hover .ig-preview-play-icon-back {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28) !important;
}

/* Text κάτω από image */
#main .profile-3 .ig-thumb-text_below {
  height: auto !important;
  min-height: 0 !important;
  padding: 20px 24px 22px !important;
  background: transparent !important;
  display: block !important;
}

#main .profile-3 .ig-thumb-text_below p {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ig-text) !important;

  font-family: "Noto Serif Display", serif !important;
  font-size: 24px !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
}

/* Κρύβουμε περιττά gallery στοιχεία αν εμφανιστούν */
#main .profile-3 .ig-lbox-open-icon {
  display: none !important;
}

/* Tablet */
@media (max-width: 1100px) {
  #main .profile-3 .ig-gallery-wrapper {
    padding: 0 28px !important;
  }

  #main .profile-3 .ig-thumbs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }
}

/* Mobile */
@media (max-width: 680px) {
  #main .profile-3 {
    padding-bottom: 56px !important;
  }

  #main .profile-3 .igallery_title {
    margin-bottom: 34px !important;
    padding: 28px 18px 30px !important;
    font-size: 38px !important;
  }

  #main .profile-3 .ig-gallery-wrapper {
    padding: 0 18px !important;
  }

  #main .profile-3 .ig-thumbs-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  #main .profile-3 .ig-thumb-text_below {
    padding: 20px 20px 22px !important;
  }

  #main .profile-3 .ig-thumb-text_below p {
    font-size: 24px !important;
  }
}
```

      /* ==================================================
   CONTACT PAGE
   ================================================== */

.contactPageInfo {
  --contactPageInfo-dark: #2b2520;
  --contactPageInfo-text: #675d55;
  --contactPageInfo-accent: #a87852;
  --contactPageInfo-border: rgba(43, 37, 32, 0.13);

  width: 100%;
  max-width: 620px;
  color: var(--contactPageInfo-dark);
}

.contactPageInfo,
.contactPageInfo * {
  box-sizing: border-box;
}

.contactPageInfo a {
  text-decoration: none;
}

.contactPageInfo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--contactPageInfo-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.contactPageInfo__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.contactPageInfo__title {
  margin: 0 0 18px;
  color: #80915b;
  font-size: clamp(34px, 4vw, 32px);
  font-weight: 600;
  line-height: 1.08;
}

.contactPageInfo__text {
  max-width: 560px;
  margin: 0;
  /* color: var(--contactPageInfo-text);
  font-size: 16px; */
  font-weight: 400;
  line-height: 1.75;
}

.contactPageInfo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contactPageInfo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.contactPageInfo__button--main {
  color: #ffffff;
  background: var(--contactPageInfo-accent);
  border: 1px solid var(--contactPageInfo-accent);
}

.contactPageInfo__button--main:hover {
  color: #ffffff;
  background: #8f6646;
  border-color: #8f6646;
}

.contactPageInfo__button--secondary {
  color: var(--contactPageInfo-dark);
  background: transparent;
  border: 1px solid var(--contactPageInfo-border);
}

.contactPageInfo__button--secondary:hover {
  color: var(--contactPageInfo-accent);
  border-color: var(--contactPageInfo-accent);
}

.contactPageInfo__details {
  margin-top: 36px;
  border-top: 1px solid var(--contactPageInfo-border);
}

.contactPageInfo__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  color: var(--contactPageInfo-dark);
  border-bottom: 1px solid var(--contactPageInfo-border);
}

.contactPageInfo__item:hover .contactPageInfo__itemText strong,
.contactPageInfo__item:hover .contactPageInfo__itemText em {
  color: var(--contactPageInfo-accent);
}

.contactPageInfo__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.contactPageInfo__icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contactPageInfo__itemText {
  display: block;
  min-width: 0;
}

.contactPageInfo__itemText strong {
  display: block;
  margin-bottom: 4px;
  color: var(--contactPageInfo-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 0.22s ease;
}

.contactPageInfo__itemText em {
  display: block;
  color: var(--contactPageInfo-text);
  font-size: 15px;
  font-style: normal;
  line-height: 1.35;
  word-break: break-word;
  transition: color 0.22s ease;
}

.contactPageInfo__social {
  margin-top: 28px;
}

.contactPageInfo__socialTitle {
  display: block;
  margin-bottom: 14px;
  color: var(--contactPageInfo-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.contactPageInfo__socialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contactPageInfo__socialLinks a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--contactPageInfo-border);
  border-radius: 999px;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.contactPageInfo__socialLinks a:hover {
  border-color: var(--contactPageInfo-accent);
  background: rgba(168, 120, 82, 0.06);
}

.contactPageInfo__socialLinks img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .contactPageInfo {
    max-width: none;
  }

  .contactPageInfo__title {
    font-size: 34px;
  }

  .contactPageInfo__text {
    font-size: 15px;
    line-height: 1.65;
  }

  .contactPageInfo__actions {
    display: grid;
  }

  .contactPageInfo__button {
    width: 100%;
  }
}
 .contactFormPage {
  --contactFormPage-dark: #2b2520;
  --contactFormPage-text: #675d55;
  --contactFormPage-muted: #9a8f87;
  --contactFormPage-accent: #a87852;
  --contactFormPage-accentDark: #8f6646;
  --contactFormPage-border: rgba(43, 37, 32, 0.18);
  --contactFormPage-borderFocus: rgba(168, 120, 82, 0.65);
  --contactFormPage-error: #b91c1c;

  width: 100%;
  max-width: 620px;
  color: var(--contactFormPage-dark);
}

.contactFormPage,
.contactFormPage * {
  box-sizing: border-box;
}

.contactFormPage .sppb-addon-content,
.contactFormPage .cf,
.contactFormPage form,
.contactFormPage .cf-form-wrap {
  width: 100%;
}

.contactFormPage .cf-form-wrap {
  padding: 0;
  background: transparent !important;
}

.contactFormPage .cf-fields {
  display: grid;
  gap: 15px;
}

.contactFormPage .cf-control-group {
  margin: 0;
  padding: 0;
}

.contactFormPage .cf-control-group.cf-hide,
.contactFormPage .cf-field-hp {
  display: none !important;
}

.contactFormPage .cf-control-input {
  width: 100%;
}

.contactFormPage .cf-input {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 14px 16px;
  color: var(--contactFormPage-dark);
  background: transparent;
  border: 1px solid var(--contactFormPage-border);
  border-radius: 0;
  box-shadow: none;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.contactFormPage textarea.cf-input {
  min-height: 132px;
  resize: vertical;
}

.contactFormPage .cf-input::placeholder {
  color: var(--contactFormPage-muted);
  opacity: 1;
}

.contactFormPage .cf-input:hover {
  border-color: rgba(43, 37, 32, 0.35);
}

.contactFormPage .cf-input:focus {
  background: rgba(168, 120, 82, 0.03);
  border-color: var(--contactFormPage-borderFocus);
}

.contactFormPage .cf-response {
  margin: 0 0 16px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}

.contactFormPage .cf-response:not(:empty) {
  padding: 14px 16px;
  color: var(--contactFormPage-dark);
  background: rgba(168, 120, 82, 0.08);
  border: 1px solid rgba(168, 120, 82, 0.22);
}

.contactFormPage .cf-error,
.contactFormPage .cf-error-message,
.contactFormPage .cf-control-group.has-error {
  color: var(--contactFormPage-error);
}

.contactFormPage .cf-control-group.has-error .cf-input,
.contactFormPage .cf-input.cf-error {
  border-color: var(--contactFormPage-error);
}

.contactFormPage .cf-text-left {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

.contactFormPage .sendFormBTN,
.contactFormPage .cf-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  margin: 0;
  padding: 14px 28px;
  color: #ffffff;
  background: var(--contactFormPage-accent);
  border: 1px solid var(--contactFormPage-accent);
  border-radius: 999px;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.contactFormPage .sendFormBTN:hover,
.contactFormPage .cf-btn:hover {
  color: #ffffff;
  background: var(--contactFormPage-accentDark);
  border-color: var(--contactFormPage-accentDark);
  transform: translateY(-1px);
}

.contactFormPage .sendFormBTN:focus-visible,
.contactFormPage .cf-btn:focus-visible {
  outline: 2px solid rgba(168, 120, 82, 0.35);
  outline-offset: 3px;
}

.contactFormPage .cf-btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contactFormPage .cf-spinner-container {
  display: inline-flex;
  align-items: center;
}

.contactFormPage .centerCap {
  display: flex;
  justify-content: flex-start;
  margin-top: 0;
}

.contactFormPage .centerCap .cf-control-input {
  display: flex;
  justify-content: flex-start;
}

.contactFormPage .g-invisible-recaptcha,
.contactFormPage .grecaptcha-badge {
  max-width: 100%;
}

.contactFormPage .grecaptcha-badge {
  box-shadow: none !important;
  border: 1px solid var(--contactFormPage-border);
}

.contactFormPage input:-webkit-autofill,
.contactFormPage input:-webkit-autofill:hover,
.contactFormPage input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--contactFormPage-dark);
  box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 9999s ease-in-out 0s;
}

@media (max-width: 640px) {
  .contactFormPage {
    max-width: none;
  }

  .contactFormPage .cf-fields {
    gap: 12px;
  }

  .contactFormPage .cf-input {
    min-height: 50px;
    padding: 13px 14px;
    font-size: 15px;
  }

  .contactFormPage textarea.cf-input {
    min-height: 120px;
  }

  .contactFormPage .cf-text-left,
  .contactFormPage .centerCap,
  .contactFormPage .centerCap .cf-control-input {
    justify-content: center;
  }

  .contactFormPage .sendFormBTN,
  .contactFormPage .cf-btn {
    width: 100%;
  }
}  

      /* ==================================================
   END CONTACT PAGE
   ================================================== */


         /* ==================================================
   FOOTER PAGE
   ================================================== */

#footer{ background-color: #AD976E; color:#fff;}
#footer a{ color: #fff;}

.vp-footer-right {
  width: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}

.vp-footer-right a {
  color: #ffffff;
  text-decoration: none;
}

.vp-footer-socials {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.vp-footer-socials li {
  margin: 0;
  padding: 0;
}

.vp-footer-socials a {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.vp-footer-socials a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
}

.vp-footer-socials img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.vp-footer-contact {
  width: 100%;
  margin: 0 0 34px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex-wrap: wrap;
}

.vp-footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  white-space: nowrap;
}

.vp-footer-contact-item img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.vp-footer-contact-item a {
  color: #ffffff;
  font-weight: 400;
}

.vp-footer-contact-item a:hover {
  opacity: 0.75;
}

.vp-footer-button {
  min-width: 360px;
  min-height: 66px;
  padding: 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transition: all 0.25s ease;
}

.vp-footer-button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 575px) {
  .vp-footer-socials {
    gap: 12px;
    margin-bottom: 24px;
  }

  .vp-footer-socials a {
    width: 46px;
    height: 46px;
  }

  .vp-footer-contact {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .vp-footer-contact-item {
    white-space: normal;
  }

  .vp-footer-button {
    width: 100%;
    min-width: 0;
    max-width: 340px;
    min-height: 58px;
  }
}


#section-id-0835b8e1-2497-46f7-8937-0c0127aff13c{ border-top: 1px solid #ddd0b7;}

            /* ==================================================
   END FOOTER PAGE
   ================================================== */


   .lipidimaBTN {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 24px;
    margin-top: 8px;

    background: #4b1f3a;
    color: #ffffff !important;
    border: 1px solid #b99a6b;
    border-radius: 999px;

    text-decoration: none !important;
    font-weight: 500;
    line-height: 1.2;

    box-shadow: 0 10px 24px rgba(75, 31, 58, 0.18);
    transition: all 0.25s ease;
}

.lipidimaBTN:hover,
.lipidimaBTN:focus {
    background: #b99a6b;
    color: #ffffff !important;
    border-color: #b99a6b;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(75, 31, 58, 0.24);
}

.lipidimaBTN:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(75, 31, 58, 0.18);
}

#promo{ background-color: rgb(230, 230, 230);}


.simple,
.simple * {
  box-sizing: border-box;
}

.simple {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  overflow: visible;

  --simple-gold: #ad976f;
  --simple-text: #1d1a17;
}

/* Main article wrapper */
.simple .com-content-article.item-page {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

/* Title wrapper */
.simple .page-header {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 54px;
  padding: 0;
  background: var(--simple-gold);
  border: 0;
  text-align: center;
}

/* Main title ίδιο στυλ με Blog / Video Gallery */
.simple .page-header h1 {
  width: 100%;
  margin: 0;
  padding: 34px 24px 36px;

  color: #ffffff;
  background: transparent;

  font-family: "Noto Serif Display", serif;
  font-size: clamp(38px, 3.3vw, 54px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
}

/* Content area κάτω από τον τίτλο */
.simple .com-content-article__body {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

/* Καθαρισμός άκυρων κενών από Joomla paragraphs */
.simple .com-content-article__body > p:empty {
  display: none;
  margin: 0;
  padding: 0;
}

/* Gallery μέσα στο simple */
.simple .igui-scope {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 1100px) {
  .simple .com-content-article__body {
    padding: 0 28px 70px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .simple .page-header {
    margin-bottom: 34px;
  }

  .simple .page-header h1 {
    padding: 28px 18px 30px;
    font-size: 38px;
  }

  .simple .com-content-article__body {
    padding: 0 18px 56px;
  }
}




/* =========================================================
   MOBILE MENU CK 116 - CUSTOM DESIGN START
   Colors:
   Gold:  #AD976E
   Gray:  #E6E6E6
   Black: #000000
   ========================================================= */


/* -------------------------
   GLOBAL SETTINGS
   ------------------------- */

[data-id="maximenuck116"],
[data-id="maximenuck116"] * {
  box-sizing: border-box;
}

[data-id="maximenuck116"] {
  --mobile-menu-gold: #AD976E;
  --mobile-menu-gray: #E6E6E6;
  --mobile-menu-black: #000000;
  --mobile-menu-white: #FFFFFF;
  --mobile-menu-gold-soft: rgba(173, 151, 110, 0.12);
  --mobile-menu-gold-medium: rgba(173, 151, 110, 0.24);
  --mobile-menu-border: rgba(0, 0, 0, 0.10);
  --mobile-menu-shadow: -18px 0 50px rgba(0, 0, 0, 0.22);

  font-family: inherit !important;
}





/* =========================================================
   MOBILE MENU CK 116 - CLOSED BAR
   ========================================================= */

#maximenuck116-mobile-bar-wrap-topfixed {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #FFFFFF !important;
}

#maximenuck116-mobile-bar {
  position: relative !important;

  
  align-items: center !important;

  width: 100vw !important;
  max-width: none !important;
  height: 74px !important;
  min-height: 74px !important;

  left: 50% !important;
  margin: 0 !important;
  padding: 10px 16px !important;

  background: #FFFFFF !important;
  border-top: 2px solid #AD976E !important;
  border-bottom: 1px solid rgba(173, 151, 110, 0.45) !important;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08) !important;

  transform: translateX(-50%) !important;
  box-sizing: border-box !important;
}

/* Κρύβουμε τελείως το ΑΡΧΙΚΗ */
#maximenuck116-mobile-bar .mobilemenuck-bar-title,
#maximenuck116-mobile-bar .mobilemenuck-bar-title * {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: 0 !important;
}

#maximenuck116-mobile-bar .mobilemenuck-bar-title {
  display: flex !important;
  align-items: center !important;
  flex: 1 1 auto !important;

  width: auto !important;
  height: 54px !important;
  min-height: 54px !important;

  margin: 0 !important;
  padding: 0 75px 0 6px !important;

  background: transparent !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

#maximenuck116-mobile-bar .mobilemenuck-bar-title::before {
  content: "MENU" !important;

  display: block !important;

  color: #000000 !important;

  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 3px !important;
  text-indent: 0 !important;
  text-transform: uppercase !important;
}

/* Κυκλικό hamburger */
#maximenuck116-mobile-bar .mobilemenuck-bar-button {
  position: absolute !important;
  top: 50% !important;
  right: 16px !important;

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

  width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #AD976E !important;
  color: #FFFFFF !important;

  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: 0 7px 18px rgba(173, 151, 110, 0.30) !important;

  font-family: Arial, sans-serif !important;
  font-size: 23px !important;
  line-height: 1 !important;

  transform: translateY(-50%) !important;
  box-sizing: border-box !important;
}

#maximenuck116-mobile-bar .mobilemenuck-bar-button a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #FFFFFF !important;
  font-size: 23px !important;
  line-height: 1 !important;
}

@media (hover: hover) {
  #maximenuck116-mobile-bar .mobilemenuck-bar-button:hover {
    background: #000000 !important;
  }
}

/* =========================================================
   MOBILE MENU CK 116 - CLOSED BAR END
   ========================================================= */


/* -------------------------
   MAIN OFF-CANVAS PANEL
   ------------------------- */

#maximenuck116-mobile.mobilemenuck,
[data-id="maximenuck116"].mobilemenuck {
  width: min(88vw, 370px) !important;
  max-width: 370px !important;
  height: 100vh !important;
  height: 100dvh !important;
  padding: 0 0 30px !important;

  background: var(--mobile-menu-white) !important;
  color: var(--mobile-menu-black) !important;
  box-shadow: var(--mobile-menu-shadow) !important;

  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 400 !important;

  scrollbar-width: thin;
  scrollbar-color: var(--mobile-menu-gold) var(--mobile-menu-gray);
  overscroll-behavior: contain;
}

#maximenuck116-mobile::-webkit-scrollbar {
  width: 6px;
}

#maximenuck116-mobile::-webkit-scrollbar-track {
  background: var(--mobile-menu-gray);
}

#maximenuck116-mobile::-webkit-scrollbar-thumb {
  background: var(--mobile-menu-gold);
  border-radius: 10px;
}


/* -------------------------
   TOP BAR INSIDE PANEL
   ------------------------- */

[data-id="maximenuck116"] .mobilemenuck-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 20 !important;

  min-height: 72px !important;

  background: var(--mobile-menu-white) !important;
  border-bottom: 1px solid var(--mobile-menu-gray) !important;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07) !important;
}

[data-id="maximenuck116"] .mobilemenuck-topbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 24px;

  width: 46px;
  height: 2px;

  background: var(--mobile-menu-gold);
}

[data-id="maximenuck116"] .mobilemenuck-title {
  display: flex !important;
  align-items: center !important;

  width: 100% !important;
  height: 72px !important;
  margin: 0 !important;
  padding: 0 78px 0 24px !important;

  background: var(--mobile-menu-white) !important;
  color: var(--mobile-menu-black) !important;

  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 3px !important;
  text-indent: 0 !important;
  text-transform: uppercase !important;
}

[data-id="maximenuck116"] .mobilemenuck-title a {
  color: var(--mobile-menu-black) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 3px !important;
  text-indent: 0 !important;
  text-transform: uppercase !important;
}

[data-id="maximenuck116"] .mobilemenuck-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  top: 0 !important;
  right: 0 !important;

  width: 72px !important;
  height: 72px !important;
  min-height: 72px !important;
  padding: 0 !important;

  background: var(--mobile-menu-white) !important;
  color: var(--mobile-menu-black) !important;
  border: 0 !important;
  border-left: 1px solid var(--mobile-menu-gray) !important;

  font-family: Arial, sans-serif !important;
  font-size: 31px !important;
  font-weight: 300 !important;
  line-height: 1 !important;

  transition:
    background-color 0.25s ease,
    color 0.25s ease !important;
}

[data-id="maximenuck116"] .mobilemenuck-button:hover {
  background: var(--mobile-menu-gold) !important;
  color: var(--mobile-menu-white) !important;
}


/* -------------------------
   DISABLE DESKTOP TEXT EFFECTS
   ------------------------- */

[data-id="maximenuck116"] .titreck,
[data-id="maximenuck116"] .titreck-text,
[data-id="maximenuck116"] .titreck-title {
  position: static !important;
  display: block !important;

  width: auto !important;
  height: auto !important;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

[data-id="maximenuck116"] .titreck::before,
[data-id="maximenuck116"] .titreck::after,
[data-id="maximenuck116"] .titreck-text::before,
[data-id="maximenuck116"] .titreck-text::after {
  display: none !important;
  content: none !important;
}


/* -------------------------
   GENERAL ITEM RESET
   ------------------------- */

[data-id="maximenuck116"] .mobilemenuck-item > div:not(.mobilemenuck-submenu) {
  position: relative !important;

  margin: 0 !important;
  padding: 0 !important;

  border-radius: 0 !important;
  box-shadow: none !important;
  line-height: normal !important;
}

[data-id="maximenuck116"] .mobilemenuck-item a,
[data-id="maximenuck116"] .mobilemenuck-item .separator {
  display: flex !important;
  align-items: center !important;

  width: 100% !important;
  margin: 0 !important;

  text-decoration: none !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}


/* -------------------------
   LEVEL 1
   ------------------------- */

[data-id="maximenuck116"] .mobilemenuck-item > .level1 {
  min-height: 58px !important;

  background: var(--mobile-menu-white) !important;
  color: var(--mobile-menu-black) !important;
  border-bottom: 1px solid var(--mobile-menu-gray) !important;

  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease !important;
}

[data-id="maximenuck116"] .mobilemenuck-item > .level1 > a,
[data-id="maximenuck116"] .mobilemenuck-item > .level1 > .separator {
  min-height: 58px !important;
  padding: 17px 62px 17px 24px !important;

  color: var(--mobile-menu-black) !important;

  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.8px !important;
}

[data-id="maximenuck116"] .mobilemenuck-item > .level1.current,
[data-id="maximenuck116"] .mobilemenuck-item > .level1.active,
[data-id="maximenuck116"] .mobilemenuck-item > .level1.open {
  background: var(--mobile-menu-gold-soft) !important;
  box-shadow: inset 4px 0 0 var(--mobile-menu-gold) !important;
}

[data-id="maximenuck116"] .mobilemenuck-item > .level1.current > a,
[data-id="maximenuck116"] .mobilemenuck-item > .level1.current > .separator,
[data-id="maximenuck116"] .mobilemenuck-item > .level1.active > a,
[data-id="maximenuck116"] .mobilemenuck-item > .level1.active > .separator,
[data-id="maximenuck116"] .mobilemenuck-item > .level1.open > a,
[data-id="maximenuck116"] .mobilemenuck-item > .level1.open > .separator {
  color: var(--mobile-menu-gold) !important;
}


/* -------------------------
   LEVEL 2
   ------------------------- */

[data-id="maximenuck116"] .mobilemenuck-item > .level2 {
  min-height: 52px !important;

  background: var(--mobile-menu-gray) !important;
  color: var(--mobile-menu-black) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09) !important;

  transition:
    background-color 0.25s ease,
    color 0.25s ease !important;
}

[data-id="maximenuck116"] .mobilemenuck-item > .level2 > a,
[data-id="maximenuck116"] .mobilemenuck-item > .level2 > .separator {
  min-height: 52px !important;
  padding: 15px 62px 15px 32px !important;

  color: var(--mobile-menu-black) !important;

  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.15px !important;
}

[data-id="maximenuck116"] .mobilemenuck-item > .level2.open {
  background: var(--mobile-menu-gold) !important;
  color: var(--mobile-menu-white) !important;
}

[data-id="maximenuck116"] .mobilemenuck-item > .level2.open > a,
[data-id="maximenuck116"] .mobilemenuck-item > .level2.open > .separator {
  color: var(--mobile-menu-white) !important;
}


/* -------------------------
   LEVEL 3
   ------------------------- */

[data-id="maximenuck116"] .level2
+ .mobilemenuck-submenu
.mobilemenuck-item
> div:not(.mobilemenuck-submenu) {
  min-height: 48px !important;

  background: var(--mobile-menu-white) !important;
  color: var(--mobile-menu-black) !important;
  border-bottom: 1px solid var(--mobile-menu-gray) !important;
}

[data-id="maximenuck116"] .level2
+ .mobilemenuck-submenu
.mobilemenuck-item
> div:not(.mobilemenuck-submenu)
> a,
[data-id="maximenuck116"] .level2
+ .mobilemenuck-submenu
.mobilemenuck-item
> div:not(.mobilemenuck-submenu)
> .separator {
  position: relative !important;

  min-height: 48px !important;
  padding: 13px 24px 13px 48px !important;

  color: var(--mobile-menu-black) !important;

  font-size: 12.5px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

[data-id="maximenuck116"] .level2
+ .mobilemenuck-submenu
.mobilemenuck-item
> div:not(.mobilemenuck-submenu)
> a::before,
[data-id="maximenuck116"] .level2
+ .mobilemenuck-submenu
.mobilemenuck-item
> div:not(.mobilemenuck-submenu)
> .separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;

  width: 8px;
  height: 1px;

  background: var(--mobile-menu-gold);
  transform: translateY(-50%);
}


/* -------------------------
   TOGGLER PLUS / MINUS
   ------------------------- */

[data-id="maximenuck116"] .mobilemenuck-togglericon::after {
  content: "+" !important;

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

  position: absolute !important;
  top: 50% !important;
  right: 14px !important;

  width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;

  background: transparent !important;
  color: var(--mobile-menu-gold) !important;
  border: 1px solid var(--mobile-menu-gold) !important;
  border-radius: 50% !important;

  font-family: Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  line-height: 1 !important;

  transform: translateY(-50%) !important;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease !important;
}

[data-id="maximenuck116"] .open > .mobilemenuck-togglericon::after {
  content: "−" !important;

  background: var(--mobile-menu-gold) !important;
  color: var(--mobile-menu-white) !important;
}

[data-id="maximenuck116"] .level2.open > .mobilemenuck-togglericon::after {
  background: var(--mobile-menu-white) !important;
  color: var(--mobile-menu-gold) !important;
  border-color: var(--mobile-menu-white) !important;
}


/* -------------------------
   SUBMENU CONTAINERS
   ------------------------- */

[data-id="maximenuck116"] .mobilemenuck-submenu {
  background: var(--mobile-menu-white) !important;
  color: var(--mobile-menu-black) !important;
}


/* -------------------------
   BACK BUTTON
   ------------------------- */

[data-id="maximenuck116"] .mobilemenuck-backbutton {
  display: flex !important;
  align-items: center !important;

  min-height: 54px !important;
  padding: 14px 20px !important;

  background: var(--mobile-menu-black) !important;
  color: var(--mobile-menu-white) !important;
  border-bottom: 2px solid var(--mobile-menu-gold) !important;

  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

[data-id="maximenuck116"] .mobilemenuck-backbutton svg {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;

  width: 14px !important;
  margin-right: 10px !important;

  fill: var(--mobile-menu-white) !important;
}


/* -------------------------
   OVERLAY
   ------------------------- */

[data-id="maximenuck116"] + .mobilemenuck-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;

  background: rgba(0, 0, 0, 0.62) !important;
  opacity: 1 !important;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


/* -------------------------
   HOVER STATES
   ------------------------- */

@media (hover: hover) {

  [data-id="maximenuck116"] .mobilemenuck-item > .level1:hover {
    background: var(--mobile-menu-gold-soft) !important;
    box-shadow: inset 4px 0 0 var(--mobile-menu-gold) !important;
  }

  [data-id="maximenuck116"] .mobilemenuck-item > .level1:hover > a,
  [data-id="maximenuck116"] .mobilemenuck-item > .level1:hover > .separator {
    color: var(--mobile-menu-gold) !important;
  }

  [data-id="maximenuck116"] .mobilemenuck-item > .level2:hover {
    background: var(--mobile-menu-gold-medium) !important;
  }

  [data-id="maximenuck116"] .level2
  + .mobilemenuck-submenu
  .mobilemenuck-item
  > div:not(.mobilemenuck-submenu):hover {
    background: var(--mobile-menu-gold-soft) !important;
  }

  [data-id="maximenuck116"] .level2
  + .mobilemenuck-submenu
  .mobilemenuck-item
  > div:not(.mobilemenuck-submenu):hover
  > a {
    color: var(--mobile-menu-gold) !important;
  }
}


/* -------------------------
   KEYBOARD FOCUS
   ------------------------- */

[data-id="maximenuck116"] a:focus-visible,
[data-id="maximenuck116"] .mobilemenuck-button:focus-visible,
[data-id="maximenuck116"] .mobilemenuck-bar-button:focus-visible,
[data-id="maximenuck116"] .mobilemenuck-togglericon:focus-visible {
  outline: 2px solid var(--mobile-menu-gold) !important;
  outline-offset: -2px !important;
}


/* -------------------------
   ACCORDION MODE ON MOBILE
   ------------------------- */

@media screen and (max-width: 1100px) {

  #maximenuck116-mobile.mobilemenuck[data-display="flyout"],
  [data-id="maximenuck116"].mobilemenuck[data-display="flyout"] {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  [data-id="maximenuck116"].mobilemenuck[data-display="flyout"]
  .level1
  + .mobilemenuck-submenu,
  [data-id="maximenuck116"].mobilemenuck[data-display="flyout"]
  .level2
  + .mobilemenuck-submenu {
    position: static !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
  }
}


/* -------------------------
   VERY SMALL SCREENS
   ------------------------- */

@media screen and (max-width: 420px) {

  #maximenuck116-mobile.mobilemenuck,
  [data-id="maximenuck116"].mobilemenuck {
    width: 92vw !important;
    max-width: 92vw !important;
  }

  [data-id="maximenuck116"] .mobilemenuck-item > .level1 > a,
  [data-id="maximenuck116"] .mobilemenuck-item > .level1 > .separator {
    padding-left: 20px !important;
  }

  [data-id="maximenuck116"] .mobilemenuck-item > .level2 > a,
  [data-id="maximenuck116"] .mobilemenuck-item > .level2 > .separator {
    padding-left: 27px !important;
  }

  [data-id="maximenuck116"] .level2
  + .mobilemenuck-submenu
  .mobilemenuck-item
  > div:not(.mobilemenuck-submenu)
  > a,
  [data-id="maximenuck116"] .level2
  + .mobilemenuck-submenu
  .mobilemenuck-item
  > div:not(.mobilemenuck-submenu)
  > .separator {
    padding-left: 43px !important;
  }

  [data-id="maximenuck116"] .level2
  + .mobilemenuck-submenu
  .mobilemenuck-item
  > div:not(.mobilemenuck-submenu)
  > a::before,
  [data-id="maximenuck116"] .level2
  + .mobilemenuck-submenu
  .mobilemenuck-item
  > div:not(.mobilemenuck-submenu)
  > .separator::before {
    left: 26px !important;
  }
}


/* =========================================================
   MOBILE MENU CK 116 - CLOSE BUTTON FIX
   ========================================================= */

#maximenuck116-mobile
.mobilemenuck-topbar
> .mobilemenuck-button {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 999 !important;

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

  width: 72px !important;
  height: 72px !important;
  min-height: 72px !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #FFFFFF !important;
  color: transparent !important;
  border: 0 !important;
  border-left: 1px solid #E6E6E6 !important;

  font-size: 0 !important;
  line-height: 1 !important;

  cursor: pointer !important;
  pointer-events: auto !important;
}

#maximenuck116-mobile
.mobilemenuck-topbar
> .mobilemenuck-button::before {
  content: "×" !important;

  display: block !important;

  color: #000000 !important;

  font-family: Arial, sans-serif !important;
  font-size: 34px !important;
  font-weight: 300 !important;
  line-height: 1 !important;

  pointer-events: none !important;
}

#maximenuck116-mobile
.mobilemenuck-topbar
> .mobilemenuck-button:hover {
  background: #AD976E !important;
}

#maximenuck116-mobile
.mobilemenuck-topbar
> .mobilemenuck-button:hover::before {
  color: #FFFFFF !important;
}


/* =========================================================
   MOBILE MENU CK 116 - CUSTOM DESIGN END
   ========================================================= */




   #gallery-scope-5{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;

   }
 #gallery-scope-5 h2 {
    width: 100vw;
    max-width: none;
    margin: 0 0 34px;
    margin-left: calc(50% - 50vw);
    padding: 34px 24px;
    box-sizing: border-box;

    background: #AD976E;
    color: #fff;

    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
}
