@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&display=swap');


 :root {
    --primaryfont: "Geologica", sans-serif;
    --accentfont: "Geologica", sans-serif;
 }


/* ============================= GLOBAL ================================== */

html, b, p, span, li, a, table, td, tr, input, div{
    font-family: var(--primaryfont) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primaryfont) !important;
    font-weight: bold !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

#wpadminbar .ab-icon, #wpadminbar .ab-item:before, #wpadminbar>#wp-toolbar>#wp-admin-bar-root-default .ab-icon, .wp-admin-bar-arrow {
    font: normal 20px/1 dashicons !important;
}

::-moz-selection { /* Code for Firefox */
    color: var(--primcol);
    background: var(--thirdcol);
}

::selection {
    color: var(--primcol);
    background: var(--thirdcol);
}

::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: var(--bgcol);
}

::-webkit-scrollbar
{
    width: 6px;
    height: 6px;
    background-color: var(--bgcol);
}

::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background-color: var(--seccol);
}

a {
    color: var(--linkcol) !important;
    text-decoration: none !important;
    transition: 0.3s ease all;
    font-weight: 600;
}

a:hover {
    color: var(--seccol) !important;
    text-decoration: none;
    transition: 0.3s ease all;
}

.sr-only-focusable {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    z-index: 1000;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

a.sr-only-focusable {
    background: white !important;
    color: black !important;
}

.hideThis {
    display: none;
}

p, section ul li {
    color: var(--parcol) !important;  
}

blockquote {
    position: relative;
    padding: 0 2.5em !important;
    margin: 0 !important;
}

blockquote::before{
    content: "";
    background-image: url(/wp-content/themes/lioncode/assets/img/quote-before.svg);
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote::after {
    content: "";
    background-image: url(/wp-content/themes/lioncode/assets/img/quote-after.svg);
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
}

span.my-highlight.laurel_branches {
    display: block;
    position: relative;
    padding: 2.5em 0 5em 0 !important;
    width: 100%;
    text-align: center;
    min-height: 180px;
}

.laurel_branches::after {
    content: "";
    background-image: url(/wp-content/themes/lioncode/assets/img/awardafter.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block;
    width: 100%;
    max-width: 200px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 5.5em;
    margin: auto;
}

/* ============================= BASIC HEADING STYLES ================================== */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--headcol) !important;
    font-weight: normal !important;
}

/* Desktop */

h1, .h1 {
    font-size: 3rem !important; 
    line-height: 1.2 !important;
}

h2, .h2 {
    font-size: 2.75rem !important;
    line-height: 1.3 !important;
}

h3, .h3 {
    font-size: 2.5rem !important;
    line-height: 1.4 !important;
}

h4, .h4 {
    font-size: 2rem !important;
    line-height: 1.4 !important;
}

h5, .h5 {
    font-size: 1.75rem !important;
    line-height: 1.5 !important;
}

h6, .h6 {
    font-size: 1.5rem !important;
    line-height: 1.5 !important;
}

/* Tablets */

@media (max-width: 1024px) { 
    h1, .h1 {
    font-size: 2.5rem !important;
    }
    h2, .h2 {
    font-size: 2.25rem !important;
    }
    h3, .h3 {
    font-size: 1.875rem !important;
    }
    h4, .h4 {
    font-size: 1.625rem !important;
    }
    h5, .h5 {
    font-size: 1.375rem !important;
    }
    h6, .h6 {
    font-size: 1.125rem !important;
    }
}

/* Mobile */

@media (max-width: 768px) { 
    h1, .h1 {
    font-size: 2rem !important;
    }
    h2, .h2 {
    font-size: 1.75rem !important;
    }
    h3, .h3 {
    font-size: 1.5rem !important;
    }
    h4, .h4 {
    font-size: 1.25rem !important;
    }
    h5, .h5 {
    font-size: 1rem !important;
    }
    h6, .h6 {
    font-size: 0.875rem !important;
    }
}

/* ============================= SOCIAL ICONS ================================== */

.social a svg {
    width: 30px;
    height: 30px;
}

.social {
    display: flex;
    align-items: center;
}

.social a {
    text-decoration: none;
    margin-left: 2px;
    margin-right: 2px;
}

.social a svg path, .headericon .icon svg path {
    transition: 0.3s ease all;
    fill: var(--svgcol);
}

.social a:hover svg path, .headericon .icon:hover svg path {
    fill: var(--linkcol);
}


.headericon .icon svg {
    width: 24px;
    height: 24px;
}

/* ============================= SECTIONS GENERAL ================================== */

section, .section-padding {
    padding: 50px 0 !important;
    overflow: hidden;
}

.section-title {
    position: relative;
}

.section-bg {
    background: var(--primcol20) !important;
}

.section-title h2,
.section-title h3, 
.section-title h4, 
.section-title h5, 
.section-title h6 {
    font-size: 35px !important;
    font-weight: 700 !important;
    padding: 0;
    margin: 0 0 5px 0;
    /* letter-spacing: 2px; */
    color: var(--primcol);
}

.section-title p {
    font-size: 20px !important;
    font-weight: 400 !important;
    padding: 0;
    margin: 0 0 5px 0;
    /* letter-spacing: 2px; */
    color: var(--primcol);

}

.section-title h2 span, 
.section-title h3 span, 
.section-title h4 span, 
.section-title h5 span, 
.section-title h6 span{
    color: var(--seccol);

}

.section-title h2 a, 
.section-title h3 a, 
.section-title h4 a, 
.section-title h5 a, 
.section-title h6 a {
    color: var(--primcol) !important;
}

.section-title h2 a:hover, 
.section-title h3 a:hover, 
.section-title h4 a:hover, 
.section-title h5 a:hover, 
.section-title h6 a:hover{
    color: var(--seccol) !important;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--seccol);
}

.section-title-center {
    text-align: center;
    padding-bottom: 60px;
}

.section-title-center h2,
.section-title-center h3,
.section-title-center h4,
.section-title-center h5,
.section-title-center h6 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
}

.section-title-center h2:after,
.section-title-center h3:after,
.section-title-center h4:after, 
.section-title-center h5:after,
.section-title-center h6:after, 
.section-title-center p:after {
    content: url('data:image/svg+xml,<svg width="224" height="12" viewBox="0 0 224 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.00007 11.7734L0.226563 5.99994L6.00007 0.22644L10.7736 4.99994L213.227 4.99994L218 0.22644L223.774 5.99994L218 11.7734L213.227 6.99994L10.7736 6.99994L6.00007 11.7734Z" fill="var(--svgcol)"/></svg>');
    position: absolute;
    display: block;
    top: 60%;
    left: 0;
    right: 0;
    margin: auto;
}

.section-title-center p {
    margin-bottom: 0;
    color: var(--primcol);
    text-align: center;
}

.section-title .big-title {
    font-size: 7em;
    font-weight: 700;
    text-align: center;
    color: var(--thirdcol40);
    position: absolute;
    left: 0;
    top: -90px;
    z-index: -1;
}

.section-title-left h2,
.section-title-left h3,
.section-title-left h4,
.section-title-left h5,
.section-title-left h6,
.section-title-left p {
    font-size: 22px !important;
    font-weight: 700 !important;
    padding: 0;
    margin: 0 0 5px 0;
    /* letter-spacing: 2px; */
    color: var(--primcol);
}


.section-title-left h2::after,
.section-title-left h3::after,
.section-title-left h4::after,
.section-title-left h5::after,
.section-title-left h6::after,
.section-title-left p::after {
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    background: var(--seccol);
    margin: 4px 10px;
}


article .entry-content .section-title h2,
article .entry-content .section-title h3,
article .entry-content .section-title h4,
article .entry-content .section-title h5,
article .entry-content .section-title h6 {
    font-size: 22px !important;
    font-weight: 700 !important;
    padding: 0;
    margin: 0 0 5px 0;
    letter-spacing: 0;
    color: var(--primcol);
}


.section-title h2,
.section-title h3, 
.section-title h4, 
.section-title h5, 
.section-title h6,
.section-title h2 a,
.section-title h3 a, 
.section-title h4 a, 
.section-title h5 a, 
.section-title h6 a,
.section-title-center h2,
.section-title-center h3,
.section-title-center h4,
.section-title-center h5,
.section-title-center h6,
article .entry-content .section-title h2,
article .entry-content .section-title h3,
article .entry-content .section-title h4,
article .entry-content .section-title h5,
article .entry-content .section-title h6,
article .entry-content h2,
article .entry-content h3,
article .entry-content h4,
article .entry-content h5,
article .entry-content h6,
.section-title-left h2,
.section-title-left h3,
.section-title-left h4,
.section-title-left h5,
.section-title-left h6,
.section-title-left p {
    font-family: var(--accentfont) !important;
    font-weight: 700 !important;
}

section ul {
    margin: 0;
}

/* section ul li {
    list-style-image: url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.4' d='M5.82326 1.99631C6.04967 1.62021 6.72888 1.62021 7.03082 1.99631L9.21943 5.08012C10.6534 7.03572 10.6534 9.36742 9.14399 10.8717C8.46477 11.6238 7.48362 11.9999 6.42713 11.9999C5.37054 11.9999 4.38949 11.5487 3.71027 10.9469C2.65369 9.89389 1.82351 8.08875 3.63483 5.1553L5.82326 1.99631Z' fill='%23436797'/%3E%3Cpath d='M3.25197 0.282076C3.47838 -0.0940252 4.15759 -0.0940252 4.45953 0.282076L6.64814 3.36589C8.08209 5.32149 8.08209 7.65319 6.5727 9.1575C5.89348 9.90961 4.91234 10.2857 3.85584 10.2857C2.79925 10.2857 1.8182 9.83443 1.13898 9.23269C0.0823975 8.17966 -0.747784 6.37452 1.06354 3.44107L3.25197 0.282076ZM2.19539 8.02929C3.02557 8.93186 4.6104 8.93186 5.51602 8.02929C6.49708 7.05153 6.42164 5.54722 5.44058 4.19327L3.85575 1.93685L2.27092 4.11809C0.761432 6.60016 1.81802 7.65319 2.19539 8.02929Z' fill='%23436797'/%3E%3C/svg%3E%0A");
    margin: 0 0 20px 0;
} */


@media (max-width:767px) {

    section {
        padding: 50px 0 !important;
    }

    .section-title-center h2,
    .section-title-center h3,
    .section-title-center h4,
    .section-title-center h5,
    .section-title-center h6,
    .section-title p {
        font-size: 24px;
    }


    .section-title-left h2,
    .section-title-left h3,
    .section-title-left h4,
    .section-title-left h5,
    .section-title-left h6,
    .section-title-left p {
        font-size: 16px;
    }

    .section-title h2,
    .section-title h3, 
    .section-title h4, 
    .section-title h5, 
    .section-title h6 {
        font-size: 30px !important;

    }

}


.section-bg-layers{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.section-bg-layers .bg-layer{
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover; /* cover πάντα όπως ζήτησες */
  transform: translateZ(0);
}

/* stacking order */
.section-bg-layers .bg-img1{ z-index:1; }
.section-bg-layers .bg-img2{ z-index:2; }
.section-bg-layers .bg-grdnt{ z-index:3; }

.img_video_text .z-1{ position:relative; z-index:1; }

/* “Object fit” επιλογές σου (σαν background-size equivalents) */
.section-bg-layers .object-fit-cover   { background-size: cover; }
.section-bg-layers .object-fit-contain { background-size: contain; }
.section-bg-layers .object-fit-fill    { background-size: 100% 100%; }
.section-bg-layers .object-fit-scale   { background-size: auto; } /* πιο “ελεύθερο”, αν θες άλλο πες μου */
.section-bg-layers .object-fit-none    { background-size: auto; background-position: center; }

/* ============================= DEFAULT BUTTONS ================================== */

.btn-prm, a.btn-prm{
    background: var(--btn-prmbg) !important;
    color: var(--btn-prmcol) !important;
    border: 1px solid var(--btn-prmbg);
}

.btn-prm:hover, a.btn-prm:hover {
    background: var(--btn-prmcol) !important;
    color: var(--btn-prmbg) !important;
    border: 1px solid var(--btn-prmbg);
    transition: all 0.25s ease-in-out;
}

.btn-prm svg path, a.btn-prm svg path{
    fill: var(--btn-prmcol) !important;
}

.btn-prm:hover svg path, a.btn-prm:hover svg path {
    fill: var(--btn-prmbg) !important;
}

.btn-brd, a.btn-brd{
    background: transparent !important;
    color: var(--btn-prmbg) !important;
    border: 1px solid var(--btn-prmbg);
}

.btn-brd:hover, a.btn-brd:hover {
    background: var(--btn-prmbg) !important;
    color: var(--btn-prmcol) !important;
    border: 1px solid var(--btn-prmbg);
    transition: all 0.25s ease-in-out;
}

.btn-brd svg path, a.btn-brd svg path{
    fill: var(--btn-prmbg) !important;
}

.btn-brd:hover svg path, a.btn-brd:hover svg path {
    fill: var(--btn-prmcol) !important;
}

.btn-scnd, a.btn-scnd, button.btn-scnd{
    background: var(--scnd-prmbg);
    color: var(--scnd-prmcol) !important;
    border: 1px solid var(--scnd-prmbg);
}

.btn-scnd svg path, a.btn-scnd svg path{
    fill: var(--scnd-prmcol) !important;
}

.btn-scnd:hover svg path, a.btn-scnd:hover svg path {
    fill: var(--scnd-prmbg) !important;
}

.btn-scnd:hover, a.btn-scnd:hover, button.btn-scnd:hover {
    background: var(--scnd-prmcol) !important;
    color: var(--scnd-prmbg) !important;
    border: 1px solid var(--scnd-prmbg);
    transition: all 0.25s ease-in-out;
}

.btn-third, a.btn-third{
    background: var(--third-prmbg);
    color: var(--third-prmcol) !important;
    border: 1px solid var(--third-prmbg);
}

.btn-third svg path, a.btn-third svg path{
    fill: var(--third-prmcol) !important;
}

.btn-third:hover svg path, a.btn-third:hover svg path {
    fill: var(--third-prmbg) !important;
}

.btn-third:hover, a.btn-third:hover {
    background: var(--third-prmcol);
    color: var(--third-prmbg) !important;
    transition: all 0.25s ease-in-out;
}

.btn-prm,
a.btn-prm,
.btn-scnd,
a.btn-scnd,
button.btn-scnd,
.btn-third,
a.btn-third{
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px !important;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


.visually-hidden{
  position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;border:0;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;
}
.btn-prm,
.btn-scnd,
.btn-third{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    min-height:44px;
    padding:.5rem 1rem;
}

.btn-prm:focus-visible,
.btn-scnd:focus-visible,
.btn-third:focus-visible,
a:focus-visible,
a:focus-visible img,
img:focus-visible {
    outline:3px solid RED !important;
    outline-offset:3px !important;
}

@media (max-width: 991px) {
    .btn-prm,
    a.btn-prm,
    .btn-scnd,
    a.btn-scnd,
    button.btn-scnd,
    .btn-third,
    a.btn-third{
        font-size: 14px;
    }
}


.btn-third .collapse-icon-open {
    display: none;
}

.btn-third[aria-expanded="true"] .collapse-icon-open {
    display: inline-flex;
}

.btn-third[aria-expanded="true"] .collapse-icon-closed {
    display: none;
}

/* Προαιρετικά λίγο spacing */
.btn-third .collapse-icon {
    margin-left: 0.5rem;
    vertical-align: middle;
}


/* ================================== */
/* HEADER 
/* ================================== */


/* ============================= HEADER ΟΝΕ SEARCH BAR ================================== */

.search_bar.header-search {
    position: relative;
}

.search_bar.header-search form input {
    width: 245px !important;
    border-radius: 100px;
    background: var(--bgcol);
    border: 2px solid var(--primcol20);
    padding: 10px 20px;
    box-shadow: 0 0 15px var(--primcol20);
}
.search_bar.header-search form input {
    width: 100%;
}

.search_bar.header-search button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border: 0 !important;
    margin: 0 15px;
    background: unset !important;
}


.search.headerSearch svg path {
    fill: var(--svgcol);
}

.search-results-count p {
    font-size: 22px;
}

span.cart-contents-count {
    background: var(--thirdcol);
    padding: 5px 12px;
    border-radius: 100px;
    position: absolute;
    top: -20px;
    font-weight: 700;
    color: var(--bgcol);
}


/* ============================= HEADER LOGO ================================== */

img.custom-logo, svg.custom-logo {
    max-height: 115px;
    width: auto;
    padding: 5px 0;
}


@media (max-width: 991px){

    img.custom-logo, svg.custom-logo {
        max-height: 65px;
        width: auto;
    }

    .headerTop .right .social {
        display: none;
    }

}


/* ============================= NAVIGATION ================================== */

/* Desktop Navigation */
.header-row .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
  
.header-row .nav-menu > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
  
.header-row .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 5px 13px 5px 13px;
}

.header-row .nav-menu > ul > li:first-child {
    padding-left: 0px;
}

.header-row .nav-menu a {
    display: block;
    color: var(--primcol) !important;
    transition: 0.3s;
    font-size: 1rem;
    padding: 5px 0px;
    letter-spacing: 0px;
    position: relative;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.header-row .nav-menu .menu-item > a,
.header-row .nav-menu .menu-item div > a {
    color: var(--headcol) !important;
}

.header-row .nav-menu a:hover {
    color: var(--thirdcol) !important;
    transition: all 0.5s ease-in-out;
}

.header-row .nav-menu > ul > li.current_page_item > .opener > a {
    font-weight: bold;
    color: var(--seccol);
}

.header-row .nav-menu > ul > li.current_page_item > a {
    font-weight: bold;
    color: var(--headcol) !important;
}

.header-row .nav-menu > li.current-menu-item a {
    color: var(--seccol) !important;
}

.header-row .nav-menu > ul > li.popup {
    background: var(--linkcol);
    border-radius: 10px;
    padding: 0 10px;
    box-shadow: 0px 7px 10px #00000066;
    transition: all 0.25s ease-in-out;
}

.header-row .nav-menu > ul > li.popup a {
    color: var(--seccol) !important;
}

.header-row .nav-menu > ul > li.popup svg {
    margin-right: 7px;
    transition: all 0.25s ease-in-out;
}

.header-row .nav-menu > ul > li.popup:hover {
    box-shadow: unset;
    transition: all 0.25s ease-in-out;
    background: var(--primcol);
}

.header-row .nav-menu > ul > li.popup:hover svg {
    transform: rotate3d(1, 1, 1, 360deg);
    transition: transform 1s ease-in-out;
}

/* .header-row .nav-menu > ul > li.current-page-ancestor a:before {
    content: "";
    width: 10px;
    height: 2px;
    background: var(--seccol);
    display: inline-block;
    position: absolute;
    left: -12px;
    top: 50%;
    margin-top: -1px;
}

.header-row .nav-menu > ul > li.current-page-ancestor a:after {
    content: "";
    width: 10px;
    height: 2px;
    background: var(--seccol);
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 50%;
    margin-top: -1px;
    left: auto;
    bottom: auto;
} */

.header-row .nav-menu > ul > li.current-page-ancestor > .opener a {
    color:var(--seccol);
}

.header-row .nav-menu > ul > li.current-page-ancestor .current_page_item a {
    color: var(--seccol);
}
  
.header-row .nav-menu a:hover:before, .header-row .nav-menu li:hover > a:before, .header-row .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}
  
.header-row .nav-menu a:hover, .header-row .nav-menu .active > a, .header-row .nav-menu li:hover > a {
    color: var(--thirdcol);
}
  
.header-row .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 5px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    border-radius: 5px;
}
  
.header-row .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
  
.header-row .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}
  
.header-row .nav-menu .drop-down ul a {
    padding: 5px 20px;
    font-size: 1rem;
    text-transform: none;
    color: var(--primcol) !important;
}
  
.header-row .nav-menu .drop-down ul a:hover, .header-row .nav-menu .drop-down ul .active > a, .header-row .nav-menu .drop-down ul li:hover > a {
    color: var(--seccol);
}
  
.header-row .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
  
.header-row .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
  
.header-row .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.header-row .nav-menu .drop-down:hover .opener > svg {
    transform: rotate(-90deg);
}

.header-row .nav-menu .drop-down .opener > svg {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: 0.3s ease all;
    transform: rotate(-0deg);
}

.header-row .nav-menu .drop-down .drop-down .opener > svg {
    position: absolute;
    right: 15px;
}
  
@media (max-width: 1366px) {
    .header-row .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .header-row .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .header-row .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }

}

.header-row .nav-menu > ul > li.drop-down .subArrow {
    width: 20px;
    height: 20px;
    display: block;
    z-index: 99;
    position: relative;
}

.header-row .nav-menu > ul > li.drop-down .subArrow:before {
    content: "";
    width: 2px;
    height: 9px;
    background: var(--bgcol);
    display: block;
    transform: rotate(136deg);
    position: relative;
    left: 8px;
    top: 2px;
    transition:0.3s ease all;
}

.header-row .nav-menu > ul > li.drop-down .subArrow:after {
    content: "";
    width: 2px;
    height: 9px;
    background: var(--bgcol);
    display: block;
    transform: rotate(-136deg);
    position: relative;
    left: 8px;
    top: -1px;
    transition:0.3s ease all;
}

.header-row .nav-menu > ul > li.drop-down:hover .subArrow:before {
    width: 2px;
    height: 10px;
    transform: rotate(220deg);
    left: 12px;
    top: 6px;
}

.header-row .nav-menu > ul > li.drop-down:hover .subArrow:after {
    width: 2px;
    height: 10px;
    transform: rotate(-44deg);
    left: 6px;
    top: -4px;
}

/* Άνοιγμα dropdown όταν υπάρχει focus μέσα στο <li> */
.header-row .nav-menu .drop-down:focus-within > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}


@media (min-width: 992px) and (max-width: 1370px) {

    .header-row .nav-menu a,
    .header-row .nav-menu .drop-down ul a {
        font-size: 12px;
    }

    .header-row .nav-menu > ul > li {
        padding: 5px 10px;
    }

}

.header-row.top-bar .nav-menu .menu-item div > a {
    color: unset !important;
}


.header-row .nav-menu > ul > li.drop-down ul .subArrow:before {
    background: var(--primcol);
}

.header-row .nav-menu > ul > li.drop-down ul .subArrow:after {
    background: var(--primcol);
}

/* ============================= Mobile Menu ================================== */

.mobile-nav .drop-down ul a {
    padding: 0px;
    font-size: 1.2rem;
    font-weight: 400 !important;
}

.mobile-nav .active .opener a{
    padding-bottom:0px;
}
  
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1rem;
    font-weight: bold !important;
}
  
.mobile-nav a {
    font-family: var(--accentfont) !important;
    display: block;
    position: relative;
    color: white !important;
    padding: 8px 0px;
    margin: 5px 0;
    outline: none;
    text-decoration: unset;
    font-size: 20px;
    margin: 10px 0;
}
  
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--thirdcol);
    text-decoration: none;
}

.mobile-nav .drop-down .opener {justify-content: space-between !important;}

.mobile-nav .current-page-ancestor .opener a {
    color: var(--thirdcol);
}
  


.mobile-nav .drop-down .opener > svg {
    padding: 5px;
    width: 30px;
    transition: 0.3s ease all;
    height: 35px;
    position: absolute;
    right: 0px;
}


.mobile-nav .current-page-ancestor .current_page_item a {
    color: var(--seccol);
}

.mobile-nav .drop-down .opener > svg path {
    fill: var(--thirdcol);
}
  
.mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav li.drop-down.active > ul {
    display: block;
}
  
.mobile-nav .drop-down li {
    padding-left: 20px;
}
  
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9998;
    top: 0;
    left: 0;
    position: fixed;
    background:rgb(255 255 255 / 65%);
    background-position: 100% 50%;
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
    backdrop-filter: blur(3px);
}  

.mobile-nav-overly span {
    position: fixed;
    top: 15px;
    right: 15px;
    color: var(--thirdcol);
    font-size: 1.25rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-times-circle:before {
    content: "\f00d";
    color: white;
}

.mobile-nav-overly i:hover {
    color: var(--seccol);
}

.mobile-nav-active {
    overflow: hidden;
}
  
.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}
  
.mobile-nav-active .mobile-nav-toggle span {
    color: var(--primcol);
}

.mobile-nav-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.mobile-nav-logo img {
    max-height: 100px;
    width: auto !important;
}


.mobile-nav li {
    /* border-bottom: 1px solid #aea29966; */
    position: relative;
}

.mobile-nav li:last-child {
    border: none;
}

.mobile-nav .subArrow {
    width: 30px;
    height: 30px;
    display: block;
    z-index: 99;
    position: relative;
}

.mobile-nav .subArrow:before {
    content: "";
    width: 2px;
    height: 14px;
    background: var(--thirdcol);
    display: block;
    transform: rotate(136deg);
    position: relative;
    left: 20px;
    top: 4px;
    transition:0.3s ease all;
}



.mobile-nav .subArrow:after {
    content: "";
    width: 2px;
    height: 14px;
    background: var(--thirdcol);
    display: block;
    transform: rotate(-136deg);
    position: relative;
    left: 20px;
    top: 0px;
    transition:0.3s ease all;
}

.mobile-nav .drop-down ul li {
    border: none;
}


/* Ήδη έχεις display:none στα mobile submenus. Δείξ' τα όταν υπάρχει focus μέσα. */
.mobile-nav li.drop-down:focus-within > ul {
  display: block;
}




/* ============================= HEADER FOUR ================================== */

/* .headerFour {
    backdrop-filter: blur(5px);
    width: calc(100vw - 50px) !important;
} */

.headerFour li {
    list-style: none;
    margin-right: 5px;
    margin-left: 5px;
}

.headerFour .top-row-info a, .headerFour .top-row-menu a,  .headerFour .main-row a {
    color: var(--primcol) !important;
    font-weight: 600;
}

.headerFour .top-row-info a:hover, .headerFour .top-row-menu a:hover, .headerFour .main-row a:hover {
    color: var(--linkcol) !important;
    font-weight: 600;
}




/* ============================= HEADER HERO ================================== */


#header-hero {
    height: var( --headerheroheigh) !important;
    background-repeat: var( --headerherobgrepeat) !important;
    background-position: var( --headerherobgposition) !important;
    background-size: var( --headerherobgsize) !important;
    padding: 120px 0;
    z-index: 0;
}

#header-hero .header-hero-overlay{
    z-index: 1;
}

#header-hero .header-hero-container{
    z-index: 2;
}

#header-hero h1 {
    font-size: 40px !important;
    text-wrap: balance !important;
    font-weight: 600 !important;
    color: var( --headerherotextcolor) !important;
    font-family: var(--accentfont) !important;
}

#header-hero h2 {
    font-size: 24px !important;
    font-weight: 300 !important;
    color: var( --headerherotextcolor) !important;
}

#header-hero .breadcrumbs, .product-breadcrumbs .breadcrumbs {
    font-size: 18px;
    font-weight: 600;
}

#header-hero a, #header-hero .breadcrumbs a, #header-hero a time{
    color: var( --headerherolinkcolor) !important;
}

#header-hero a:hover, #header-hero .breadcrumbs a:hover, #header-hero a:hover time{
    color: var( --thirdcol) !important;
}

#header-hero .entry-meta{
    color: var( --headerherotextcolor) !important;
}

#header-hero .breadcrumbs a svg path, #header-hero .breadcrumbs span svg path{
    fill: var( --headerherolinkcolor) !important;
}

#header-hero .breadcrumbs span {
    margin: 0 5px 0 5px;
    color: var( --headerherotextcolor);
}

.header-hero .breadcrumbs {
    margin-bottom: 25px;
}


#header-hero.type-post h1 {
    font-size: 30px !important;
    font-weight: bold !important;
}

.headerhero-date time {
    font-family: var(--accentfont) !important;
    color: var(--headerherotextcolor) !important;
    font-size: 18px;
    font-weight: 600;
}


@media (max-width: 991px) {


    #header-hero .breadcrumbs {
        font-size: 16px !important;
    }

    #header-hero h1 {
        font-size: 25px !important;
    }

    #header-hero h2 {
        font-size: 18px !important;
    }
    
}

@media (max-width: 576px) {


    #header-hero {
        height: 100% !important;
        padding: 50px 0;
        width: calc(100vw - 25px);;
    }
    
    #header-hero .breadcrumbs {
        font-size: 12px !important;
    }

    #header-hero h1 {
        font-size: 20px !important;
        text-wrap: balance;
    }

    #header-hero .page-description p {
        font-size: 15px !important;
    }


    #header-hero.type-post h1 {
        font-size: 16px !important;
    }

}


/*hero section mobile*/
  @media (max-width: 575px) {
    
        .checkout-breadcrumbs {
        flex-wrap: wrap; 
        justify-content: flex-start; 
        line-height: 1.7;
    }

        #header-hero h1 {
            font-size: 30px !important;
        }
}

/* ============================= RESPONSIVE FORM ================================== */

#responsive-form .contact-section-title {
    font-weight: 500;
    font-size: 1rem;
    color: var(--seccol);
    margin: 0;
}

#responsive-form .row label {
    color: var(--primcol);
    font-size: 14px;
    font-weight: 600;
}

#responsive-form span.wpcf7-radio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 10px;
    margin: 15px auto;
}

#responsive-form span.wpcf7-radio span.wpcf7-list-item {
    border: 1px solid var(--primcol);
    border-radius: 100px;
    padding: 15px 30px;
    min-width: 300px;
    margin: 0;
}

#responsive-form input[type="text"],
#responsive-form input[type="email"],
#responsive-form input[type="url"],
#responsive-form input[type="password"],
#responsive-form input[type="search"],
#responsive-form input[type="number"],
#responsive-form input[type="tel"],
#responsive-form input[type="range"],
#responsive-form input[type="date"],
#responsive-form input[type="month"],
#responsive-form input[type="week"],
#responsive-form input[type="time"],
#responsive-form input[type="datetime"],
#responsive-form input[type="datetime-local"],
#responsive-form input[type="color"],
#responsive-form textarea, 
#responsive-form select {
    color: var(--primcol);
    border: 0;
    border: 1px solid var(--seccol);
    border-radius: 100px;
    padding: 15px 20px;
    background: transparent;
    width: 100%;
}

#responsive-form .field{
    margin: 0 0 30px 0;
}


#responsive-form button,
#responsive-form input[type="button"],
#responsive-form input[type="reset"],
#responsive-form input[type="submit"] {
    background: var(--primcol) !important;
    color: var(--bgcol) !important;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px 10px 30px !important;
    border-radius: 100px;
    border: 1px solid var(--primcol);
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#responsive-form button:hover,
#responsive-form input[type="button"]:hover,
#responsive-form input[type="reset"]:hover,
#responsive-form input[type="submit"]:hover  {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: var(--bgcol) !important;
    color: var(--thirdcol) !important;
    border: 1px solid var(--thirdcol);
    transition: all 0.25s ease-in-out;
}


.wpcf7 input[type="file"]::file-selector-button {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px !important;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 100px;
    background: var(--third-prmbg);
    color: var(--third-prmcol) !important;
    border: 1px solid var(--third-prmbg);
    cursor: pointer;
}

#responsive-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    row-gap: 10px;
    margin: 15px 0;
}

#responsive-form .app-info {
    margin: 15px 0;
    font-size: 16px;
    font-style: italic;
    background: var(--thirdcol20);
    padding: 15px;
    border-radius: 10px;
}

#responsive-form .info-tip {
    font-style: italic;
    font-size: 15px;
    margin-left: 15px;
}


select {
    border-radius: 100px;
    border: 1px solid var(--linkcol) !important;
    background: white;
    padding: 5px 15px;
}

/* ============================= Post Card Carousel ================================== */

.post-carousel #splide-carousel-list h3 a,
.post-carousel #splide-carousel-list .categories a {
    color: var(--headcol) !important;
}

.post-carousel #splide-carousel-list h3 a {
    font-size: 30px;
}

.post-carousel .splide__arrow {

    background: transparent;
    height: 50px;
    width: 50px;
}

.post-carousel .splide__arrow svg {
    fill: #000;
    height: 50px;
    width: 50px;
}

.post-carousel .splide__arrow--prev {
    right: 5em;
    left: unset;
}

.my-carousel-progress {
    background: #212121;
}

.my-carousel-progress-bar {
    background: #03D2FF;
    height: 2px;
    transition: width 400ms ease;
    width: 0;
}

@media (max-width: 991px) {

    .post-carousel #splide-carousel-list h3 a {
        font-size: 20px;
    }

    .post-carousel .post-content {
        background: #ffffff;
        border-radius: 2rem;
        margin-top: -50px;
        min-height: 340px;
    }

}



/* ============================= Menu modal ================================== */

.menumodal-nav li button {
    font-size: 16px !important;
    color: var(--headcol);
    transition: all 0.5s ease-in-out;
}

.menumodal-nav li button.active {
    color: var(--headcol);
    font-weight: 500 !important;
    border-bottom: 2px solid;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}

.menu-section-title h3 {
    font-size: 25px !important;
    margin-bottom: 5px !important;
}

.menu-section-title p {
    font-size: 18px !important;
    font-weight: 300 !important;
}

.menu-section-element h3 {
    font-size: 20px !important;
    font-weight: 500 !important;
}

.menu-section-element p {
    font-size: 16px !important;
    font-weight: 300 !important;
    font-style: italic;
}

.menu-section-element .the-price {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.menu-section:nth-child(even)  {
    background : #F9F9FB;
}

.menu-section:nth-child(even) .menu-section-element  {
    background : #fff;
}

.menu-section:nth-child(odd) .menu-section-element  {
    background : #F9F9FB;
}

span.element-attr {
    background: var(--primcol);
    padding: 5px 10px;
    color: var(--linkcol);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    margin: 0 0 5px 0;
    float: left;
}

/* ============================= Vertical Post Feed ================================== */


.vertical_post_feed .the_post h3 {
    font-size: 30px !important;
}

.vertical_post_feed .the_post .categories a,
.vertical_post_feed .the_post h3 a {
    color: var(--headcol) !important;
}


@media (max-width: 991px) {

    .vertical_post_feed .the_post h3 a{
        font-size: 20px;
    }

    .vertical_post_feed .the_post .post-content {
        background: #ffffff;
        border-radius: 2rem;
        margin-top: -50px;
        min-height: 340px;
    }

}


/* ============================= Archive Post Feed ================================== */


.archive .my-4 {
    justify-content: center !important;
}




.archive-description p {
    font-size: 15px;
    font-weight: 300;
}


.archive-description p a {
    font-size: 15px;
    font-weight: 400;
    color: var(--thirdcol) !important;
}

.archive-description p a:hover {
    color: var(--seccol) !important;
}


article .feedpost .categories li a



article.the-content .thumbnail {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-position: center !important;
}


article .feedpost .feedpost-content{
    border: 1px solid var(--seccol50);
}

/* .feedhorizontal .feedpost .thumbnail .feedpost-date {
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 19px 0px 20px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 60px;
    text-align: center;
    font-weight: 700;
    padding: 5px;
    color: var(--primcol);
} */

article.the-content .feedpost-content .feedpost-date {
    font-weight: 600;
}

article .feedpost h3, article .feedpost h3 a {
        font-family: var(--accentfont) !important;
        font-size: 18px !important; /* Adjust size */
        font-weight: 700 !important;  /* Make it bold */
        line-height: 1.4 !important;
        margin-top: 10px !important; /* Space above title, after category/image */
        margin-bottom: 5px !important; /* Space below title */
        color: var(--primcol) !important;
}

article .feedpost .thumbnail {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    height: 400px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 15px 15px 0 0 !important;
}

article .feedpost h3:hover a {
    color: var(--seccol) !important;
}

article .feedpost .thumbnail a {
    color: white !important;
}

article .feedpost .categories {
    margin: 10px 0 15px 0;
}
article .feedpost .excerpt p {
    font-size: 15px;
    font-weight: 300;
}

article .feedpost .categories a.feed-cat {
    color: var(--headcol) !important;
    font-family: var(--accentfont) !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
}

article .feedpost-date time {
    font-weight: 600;
    font-size: 14px;
}

article .feedpost .categories a:hover {
    color: var(--seccol) !important;
}

/* οι λίστες σου είναι ήδη inline */
article .feedpost .categories [role="list"] li { display:inline; }
/* κόμμα μετά από κάθε li εκτός του τελευταίου */
article .feedpost .categories [role="list"] li:not(:last-child)::after { content:", "; }


/* Κουμπάκια κατηγοριών – ικανοποιούν touch target size */
.btn-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;       /* ≈ WCAG / Lighthouse target size */
  min-width: 44px;
  padding: 0 0.75rem;     /* extra οριζόντιο padding */

  font-size: 0.875rem;
  line-height: 1.2;

  border-radius: 999px;
  border: 1px solid #ccc;
  background-color: #f8f9fa;
  text-decoration: none;
}

/* Hover / focus δείκτες */
.btn-cat:hover,
.btn-cat:focus {
  background-color: #e2e6ea;
  border-color: #999;
}

/* Σαφές keyboard focus (WCAG 2.1) */
.btn-cat:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}



/* ============================= Comments ================================== */

#comments {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
}


#comments .comment {
    list-style: none;
    padding: 20px;
    border-radius: 15px;
    margin: 10px 0;
}

#comments ul{
    margin: 0;
    padding: 0;
}

#comments .comment.even {
    background: #f3f3f3;
}

#comments .comment.odd {
    background: #dedede;
}

.comments-title, #respond h3 {
    font-size: 1.25rem;
}

#respond {
    background: #f3f3f3;
    padding: 15px;
    border-radius: 15px;
}

.comment-form-comment {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

form#commentform .logged-in-as {
    font-size: 0.85rem;
    color: var(--primcol);
}

form#commentform .logged-in-as a{
    font-size: 0.85rem;
    color: var(--primcol);
    transition: all 0.5s ease-in-out;
}

form#commentform .logged-in-as a:hover{
    font-size: 0.85rem;
    color: var(--primcol);
    transition: all 0.5s ease-in-out;
}

.form-submit input#submit {
    background: var(--primcol);
    border: 0;
    padding: 10px 15px;
    color: var(--bgcol);
    transition: all 0.5s ease-in-out;
}

.form-submit input#submit:hover {
    background: var(--bgcol);
    color: var(--primcol);
    transition: all 0.5s ease-in-out;
}

.comment-form-comment label {
    font-size: 1rem;
    color: var(--primcol);
}

.comment-form-comment textarea {
    border: 0;
    border-radius: 10px;
    color: var(--primcol);
    padding: 5px 10px;
    background: #fff;
}

/*Comment Output*/
 
.commentlist .reply {}
.commentlist .reply a {
    color: var(--primcol);
}

.commentlist .reply a:hover {
    color: var(--primcol);
}

.commentlist .alt {}
.commentlist .odd {
    background: #66666621 !important;
}
.commentlist .even {
    background: #cfcfcf21 !important;
}
.commentlist .thread-alt {}
.commentlist .thread-odd {}
.commentlist .thread-even {}
.commentlist li ul.children .alt {}
.commentlist li ul.children .odd {}
.commentlist li ul.children .even {}
 
.commentlist .vcard {
    padding: 10px;
}
.commentlist .vcard cite.fn {}
.commentlist .vcard span.says {}
.commentlist .vcard img.photo {}
.commentlist .vcard img.avatar {
    border-radius: 50px;
    margin: 5px;
    width: 100%;
    height: auto;
    max-width: 65px;
}
.commentlist .vcard cite.fn a.url {
    color: var(--primcol) !important;
    font-size: 0.95rem;
}
.commentlist .vcard cite.fn a.url:hover {
    color: var(--primcol) !important;
}
 
.commentlist .comment-meta {

}
.commentlist .comment-meta a {
    color: var(--primcol) !important;
}
.commentlist .comment-meta a:hover {
    color: var(--primcol) !important;
}
.commentlist .commentmetadata {
    font-weight: light !important;
    font-size: 0.85rem;
    font-style: italic;
}
.commentlist .commentmetadata a {
    color: var(--primcol) !important;
}
.commentlist .commentmetadata a:hover {
    color: var(--primcol) !important;
}
 
.commentlist .parent {}
.commentlist .comment {
    border-radius: 10px;
    overflow: hidden;
}
.commentlist .children {}
.commentlist .pingback {}
.commentlist .bypostauthor {}
.commentlist .comment-author {}
.commentlist .comment-author-admin {}
 
.commentlist {}
.commentlist li {
    margin: 15px 0;
    border: 0.0125rem solid var(--primcol80);
}
.commentlist li p {
    margin: 35px auto;
    color: var(--primcol);
    font-size: 1rem;
}
.commentlist li ul {}
.commentlist li ul.children li {}
.commentlist li ul.children li.alt {}
.commentlist li ul.children li.byuser {}
.commentlist li ul.children li.comment {}
.commentlist li ul.children li.bypostauthor {}
.commentlist li ul.children li.comment-author-admin {}
 
.commentlist .reply {
    padding: 10px;
}
#cancel-comment-reply a {
    font-size: 1rem;
}

p.comment-form-author, p.comment-form-email, p.comment-form-url {
    max-width: 370px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

input#author, input#email, input#url {
    background: var(--primcol80);
    border: 0;
    border-radius: 10px;
    color: var(--primcol);
    padding: 5px 10px;
}



nav.navigation.pagination .nav-links {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
}

nav.pagination-wrapper ul.page-numbers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

nav.pagination-wrapper ul.page-numbers li {
    list-style: none;
}

.post .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

img.prev-next-arrow {
    margin: 5px;
}

span.page-numbers.current {
    color: var(--primcol) !important;
    font-size: 1rem;
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    box-shadow: 0 0 15px #0000002e;
}

a.page-numbers {
    color: var(--primcol) !important;
    font-size: 1rem;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    width: 30px;
    height: 30px;
}

a.page-numbers:hover {
    color: var(--darkblue) !important;
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 0 15px #0000002e;
}


.sr-only-focusable {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    z-index: 1000;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.visually-hidden-focusable a {
    background: white !important;
    color: black !important;
}

/* 
a.header-espa-logos img {
    max-height: 100px;
    width: auto;
    padding: 5px;
}
 */





/* #primary ul, #primary ol {
    margin: 0 0 1.5em 0em !important;
} */




/*--------------------------------------------------------------
# project
--------------------------------------------------------------*/
.project .project-item {
    margin-bottom: 30px;
}

.project #project-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    background: #ddd;
    border-radius: 50px;
    padding: 2px 15px;
}

.project #project-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--primcol);
    transition: all 0.3s ease-in-out;
}

.project #project-flters li.current-cat a {
    color: var(--seccol) !important;
}

.project #project-flters li:hover,
.project #project-flters li.filter-active {
    color: #0563bb;
}

.project #project-flters li:last-child {
    margin-right: 0;
}

.project #project-flters li.cat-item a, .project #project-flters li.cat-item-all a {
    color: var(--primcol);
    transition: all 0.5s ease;
}

.project .project-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--primcol80);
    aspect-ratio: 1 / 1;
}


.project .project-wrap img.img-fluid {
    object-fit: cover !important;
    height: 100%;
    width: auto;
}

.project .project-wrap::before {
    content: "";
    background: var(--primcol60);
    position: absolute;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 1;
}

.project .project-wrap .project-info {
    /* opacity: 0; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primcol80);
}

.project .project-wrap .project-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 15px;
    left: 15px;
    border-top: 3px solid var(--thirdcol);
    border-left: 3px solid var(--thirdcol);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.project .project-wrap .project-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-bottom: 3px solid var(--thirdcol);
    border-right: 3px solid var(--thirdcol);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.project .project-wrap .project-info h3, .project .project-wrap .project-info h3 a {
    font-size: 20px;
    color: var(--bgcol) !important;
    font-weight: 600;
    padding: 10px;
    line-height: 25px !important;
}

.project .project-wrap .project-info h3 a:hover {
    color: var(--thirdcol) !important;
}

.project .project-wrap .project-info p {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.project .project-wrap .project-info a {
    color: #fff;
}

.project .project-wrap .project-links {
    text-align: center;
    z-index: 4;
}

.project .project-wrap .project-links a {
    color: #45505b;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.project .project-wrap .project-links a:hover {
    color: #148af9;
}

.project .project-item .title h4 a {
    color: var(--primcol);
    font-size: 1rem;
    font-weight: 600;
}

.project .project-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background: var(--primcol70);
    backdrop-filter: blur(12px);
    transition: all ease-in-out 0.3s;
}

.project .project-wrap:hover .project-info {
    opacity: 1;
}

.project .project-wrap:hover .project-info::before {
    top: 0;
    left: 0;
}

.project .project-wrap:hover .project-info::after {
    bottom: 0;
    right: 0;
}

.project .project-wrap .project-info .categories {
    padding: 0 30px;
    hyphens: auto;
    color: var(--thirdcol);
}

.project .project-wrap .project-info .feedpost-date {
    padding: 0 30px;
    hyphens: auto;
    color: var(--thirdcol);
}

.project figure.post-thumbnail {
    height: 100% !important;
    width: auto !important;
}

.project figure.post-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.feedloop_horizontal .ratio-responsive {
    aspect-ratio: 0.55;
}

@media (min-width: 992px) and (max-width: 1100px){

    .feedloop_horizontal .ratio-responsive {
        aspect-ratio: 0.28;
    }

}


@media (min-width: 769px) and (max-width: 991px){

    .feedloop_horizontal .ratio-responsive {
        aspect-ratio: 0.25;
    }

}

@media (max-width: 768px){

    .feedloop_horizontal .ratio-responsive {
        aspect-ratio: 3;
    }

}








.analuseis .post .date {
    background: var(--primcol);
    color: white !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 125px;
}

.analuseis .post .date date.month {
    font-weight: bold;
    font-size: 16px;
}

.analuseis .post .date date.year {
    font-weight: bold;
    font-size: 18px;
    color: var(--bgcol) !important;
}





.ditty.ditty-ticker {
    background: var(--primcol);
    padding: 15px;
}

.ditty-item__elements {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ditty.ditty-ticker .ditty-item__elements a{
    color: white !important;
    font-size: 1rem !important;
    font-weight: 700;
}


/* Μεγαλύτερο tap target για το κουμπί Ditty play/pause */
.ditty-playPause {
  /* ελάχιστο μέγεθος για touch */
  min-width: 48px;
  min-height: 48px;

  /* κέντροσε το icon */
  display: flex;
  align-items: center;
  justify-content: center;

  /* προαιρετικά λίγο border-radius για να δείχνει σαν κουμπί */
  border-radius: 4px;
}

/* κράτα το icon σε λογικό μέγεθος */
.ditty-playPause svg {
  width: 20px;
  height: 20px;
}

.ditty .ditty-layout--1_default .ditty-item__elements a {
    pointer-events: auto !important;
}

.ditty .ditty-layout--1_default .ditty-item__elements a:focus {
    outline:3px solid RED !important;
    outline-offset:3px !important;
}






/*================================== TIMELINE ==================================*/
/*-- GENERAL STYLES ------------------------------*/
.timeline {
    line-height: 1.4em;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/*----- TIMELINE ITEM -----*/

.timeline-item {
    padding-left: 40px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/*----- TIMELINE INFO -----*/

.timeline-info .section-title.date h3 {
    font-size: 24px !important;
    font-weight: 900 !important;
    font-style: italic;
}

.timeline-content .section-title h3.timeline-title {
    font-size: 28px !important;
}

/*----- TIMELINE MARKER -----*/

.timeline-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
}

.timeline-marker:before {
    background: var(--primcol);
    border: 3px solid transparent;
    border-radius: 100%;
    content: "";
    display: block;
    height: 15px;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.timeline-marker:after {
    content: "";
    width: 3px;
    background:  var(--thirdcol);
    display: block;
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 6px;
}

.timeline-item:last-child .timeline-marker:after {
    content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
    background: transparent;
    border: 3px solid var(--seccol);
}

/*----- TIMELINE CONTENT -----*/

.timeline-content {
    padding-bottom: 40px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}



/*---------------------------------------------- MOD: TIMELINE SPLIT ----------------------------------------------*/
@media (min-width: 768px) {
    .timeline-split .timeline, .timeline-centered .timeline {
        display: table;
   }
    .timeline-split .timeline-item, .timeline-centered .timeline-item {
        display: table-row;
        padding: 0;
   }
    .timeline-split .timeline-info, .timeline-centered .timeline-info, .timeline-split .timeline-marker, .timeline-centered .timeline-marker, .timeline-split .timeline-content, .timeline-centered .timeline-content, .timeline-split .period .timeline-info, .timeline-centered .period .timeline-info {
        display: table-cell;
        vertical-align: top;
   }
    .timeline-split .timeline-marker, .timeline-centered .timeline-marker {
        position: relative;
   }
    .timeline-split .timeline-content, .timeline-centered .timeline-content {
        padding-left: 30px;
   }
    .timeline-split .timeline-info, .timeline-centered .timeline-info {
        padding-right: 30px;
   }
    .timeline-split .period .timeline-title, .timeline-centered .period .timeline-title {
        position: relative;
        left: -45px;
   }
}
/*---------------------------------------------- MOD: TIMELINE CENTERED ----------------------------------------------*/
@media (min-width: 992px) {
    .timeline-centered, .timeline-centered .timeline-item, .timeline-centered .timeline-info, .timeline-centered .timeline-marker, .timeline-centered .timeline-content {
        display: block;
        margin: 0;
        padding: 0;
   }
    .timeline-centered .timeline-item {
        padding-bottom: 100px;
        overflow: hidden;
   }
    .timeline-centered .timeline-marker {
        position: absolute;
        left: 50%;
        margin-left: -7.5px;
   }
    .timeline-centered .timeline-info, .timeline-centered .timeline-content {
        width: 50%;
   }
    .timeline-centered > .timeline-item:nth-child(odd) .timeline-info {
        float: left;
        text-align: right;
        padding-right: 30px;
   }
    .timeline-centered > .timeline-item:nth-child(odd) .timeline-content {
        float: right;
        text-align: left;
        padding-left: 30px;
   }
    .timeline-centered > .timeline-item:nth-child(even) .timeline-info {
        float: right;
        text-align: left;
        padding-left: 30px;
   }
    .timeline-centered > .timeline-item:nth-child(even) .timeline-content {
        float: left;
        text-align: right;
        padding-right: 30px;
   }
    .timeline-centered > .timeline-item.period .timeline-content {
        float: none;
        padding: 0;
        width: 100%;
        text-align: center;
   }
    .timeline-centered .timeline-item.period {
        padding: 50px 0 90px;
   }
    .timeline-centered .period .timeline-marker:after {
        height: 30px;
        bottom: 0;
        top: auto;
   }
    .timeline-centered .period .timeline-title {
        left: auto;
   }
}



/* -------------------------------------------------------
   WCAG 2.1 AAA-friendly table styling (focus + readability)
   Works with: .acf-generic-table.GeneratedTable.m-0
-------------------------------------------------------- */

/* Base table */
.acf-generic-table.GeneratedTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  color: #111;
  font-size: 1rem;
  line-height: 1.5;
}

/* Cells */
.acf-generic-table.GeneratedTable th,
.acf-generic-table.GeneratedTable td {
  border: 2px solid #1b1b1b;
  padding: 12px 10px;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Header cells */
.acf-generic-table.GeneratedTable thead th {
  font-weight: 700;
}

/* Section title rows you colored with bgcolor="#84add6" */
.acf-generic-table.GeneratedTable [bgcolor="#84add6"] {
  background: #124a76; /* darker for better contrast */
  color: #fff;
}

/* Any links inside header dark text span */
.acf-generic-table.GeneratedTable [bgcolor="#84add6"] a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Zebra striping (still works even with some inline bgcolors) */
.acf-generic-table.GeneratedTable tbody tr:nth-child(even) td {
  background: #f6f7f8;
}

/* Keep explicit white cells white */
.acf-generic-table.GeneratedTable [bgcolor="#ffffff"] {
  background: #fff;
}

/* Links (AAA-friendly: underline + offset) */
.acf-generic-table.GeneratedTable a {
  color: #0b3d91;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hover (non-essential, but nice) */
.acf-generic-table.GeneratedTable a:hover {
  text-decoration-thickness: 3px;
}

/* -------------------------------------------------------
   Keyboard focus (very important)
   - td has tabindex="0" so it must have a clear focus style
   - also style links inside cells
-------------------------------------------------------- */

/* Focus ring for any focusable element inside the table */
.acf-generic-table.GeneratedTable :focus {
  outline: 3px solid #000;
  outline-offset: 3px;
}

/* Extra visible focus for the focused cell itself */
.acf-generic-table.GeneratedTable td:focus {
  outline: 4px solid #000;
  outline-offset: -4px; /* stays within the cell borders */
  box-shadow: inset 0 0 0 2px #fff; /* makes the ring stand out on dark bg */
}

/* If a link is focused inside a focused td, keep both readable */
.acf-generic-table.GeneratedTable td:focus a:focus {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* Optional: highlight row when any cell in that row is focused */
.acf-generic-table.GeneratedTable tbody tr:has(td:focus) td {
  background: #fff7cc;
}

/* -------------------------------------------------------
   Responsive wrapper (use: <div class="table-responsive"> ... </div>)
-------------------------------------------------------- */
.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Prevent table from shrinking too much on small screens */
@media (max-width: 768px) {
  .acf-generic-table.GeneratedTable {
    min-width: 720px;
  }
}

/* Optional: reduce padding on very small screens */
@media (max-width: 480px) {
  .acf-generic-table.GeneratedTable th,
  .acf-generic-table.GeneratedTable td {
    padding: 10px 8px;
  }
}


/* Blue header/section rows */
.acf-generic-table.GeneratedTable [bgcolor="#84add6"] {
  background: #0b0081 !important;
  color: #fff !important;
}

/* Make sure any text inside stays white */
.acf-generic-table.GeneratedTable [bgcolor="#84add6"] *,
.acf-generic-table.GeneratedTable [bgcolor="#84add6"] strong,
.acf-generic-table.GeneratedTable [bgcolor="#84add6"] span {
  color: #fff !important;
}

/* Links inside blue header rows */
.acf-generic-table.GeneratedTable [bgcolor="#84add6"] a {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}



.callout-box{
  padding: 24px;
  border-radius: 16px; /* ή ό,τι radius χρησιμοποιείς */
  background: rgba(140, 220, 190, 0.25); /* κοντά στο πράσινο του screenshot */
  border: 1px solid rgba(140, 220, 190, 0.35);
}




