@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



/* ============================= GLOBAL ================================== */

html, b, p, span, li, a, table, td, tr, input, div{
    font-family:  "Manrope", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family:  "Manrope", sans-serif !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(--seccol);
    background: var(--bgcol);
}

::selection {
    color: var(--seccol);
    background: var(--bgcol);
}

::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar
{
  width: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  background-color: var(--seccol);
}

a {
    color: var(--linkcol) !important;
    text-decoration: none !important;
    transition: 0.3s ease all;
}

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;
}

blockquote::before{
    background-image: url(/wp-content/themes/lioncode/assets/img/quote-before.svg);
    background-size: 40px 40px;
    display: inline-block;
    width: 40px;
    height: 40px;
    content: "";
}

blockquote::after {
    background-image: url(/wp-content/themes/lioncode/assets/img/quote-after.svg);
    background-size: 40px 40px;
    display: inline-block;
    width: 40px;
    height: 40px;
    content: "";
}

/* ============================= 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);
}

#mobileMenu .social a svg path{
    fill: white;
}

.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 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: 35px !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 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;

    }

}

/* ============================= 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-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: 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;
}


.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;
}


/* ================================== */
/* HEADER 
/* ================================== */


/* ============================= HEADER ΟΝΕ SEARCH BAR ================================== */

.search_bar.header-search {
    position: relative;
}

.search_bar.header-search form input {
    width: 100%;
    border-radius: 100px;
    background: var(--bgcol);
    border: 2px solid var(--seccol);
    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: 70px;
    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; */
    padding-top: 5px;
    padding-bottom: 5px;
}
  
.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 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: #336B6A !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: 56px;
    position: relative;
}
  
.header-row .nav-menu .drop-down ul a {
    padding: 5px 20px;
    font-size: 1rem;
    text-transform: none;
    color: #2c4964;
}
  
.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;
}








/* ============================= 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 {
    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(--seccol);
    text-decoration: none;
}

.mobile-nav .drop-down .opener {
    position: relative; 
    left: 6%;
    justify-content:left  !important;
}

.mobile-nav .current-page-ancestor .opener a {
    color: var(--seccol);
}
  


.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 THREE ================================== */

.headerThree {
    backdrop-filter: blur(5px);
}

.headerThree .icons li {
    list-style: none;
    margin-right: 5px;
    margin-left: 5px;
}

.headerThree .icons li a {
    text-transform: uppercase;
    color: var(--primcol) !important;
    font-weight: 600;
}

/* .headerThree .icons li:first-child:after {
    content: "|";
    position: relative;
    left: 5px;
} */

.headerThree .icons li.current-lang a {
    color: var(--primcol) !important;
}


/* ============================= 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;
    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;
}

#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);
}

#header-hero .entry-meta{
    color: var( --headerherotextcolor);
}

#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;
}


@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: 100px 0 50px 0;
    }
    
    #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;
    }

}



@media (max-height: 1000px) {

    #header-hero {
        height: 120% !important;
        padding: 240px 0 50px 0 !important;
    }

}




/**********blog menu bkgndcolor*****************/

#header-hero #post-flters
{
    background: var(--primcol) !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(--seccol);
    border-radius: 20px;
    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(--primcol);
    border-radius: 20px;
    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;
}

#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;
}




    

/* .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 .feedpost .feedpost-content{
    border: 1px solid var(--seccol50);
}   
*/

article.the-content .feedpost-content .feedpost-date {
    font-weight: 600;
}

article .feedpost h3, article .feedpost h3 a {
        font-size: 30px !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: 50%;
    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-size: 14px;
    font-weight: 500;
    border-radius: 50px;
}

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:", "; }



/* ============================= 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;
}


.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;
}


/*****************boxes******************/
.info_box-box-container{
    border: 1px solid  #e0e0e0 !important;
}











/************************divider*********************************************/






.vertical-dividercust{
    width: 7px; 
    height: 250px;
    background-color: #0A1D35; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: 50px;
    border-radius: 100px !important;
    top: 78%;

}



.vertical-dividercust1 {
    
    width: 7px; 
    height: 250px;
    background-color: #0A1D35; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: 50px;
    border-radius: 100px !important;
    top: 80%;
   
}


@media (max-width:1366px){
     .vertical-dividercust1{
            top: 78%;
            
        }
}




@media (max-width:1180px){
     .vertical-dividercust1{
            top: 75%;
            
        }
}


@media (max-width:810px){


    .vertical-dividercust1{
            top: 72%;
            height: 150px;
        }

        .vertical-dividercust{
            top: 82%;
            height: 150px;
        }

}



@media (max-width:768px){
        .vertical-dividercust1{
            top: 76%;
        }
}

@media (max-width:380px){

        .vertical-dividercust1{
            top: 77%;
            height: 150px;
        }

        .vertical-dividercust{
            top:84%;
            height: 150px;
        }

}

/***************************************ARCIEVE PAGE REDESIGNED************************************************/

/******************************** LAYOUT STRUCTURE *********************************/

.property-layout-wrapper {
    display: flex !important;
    gap: 0 !important;
    height: calc(100vh - 200px) !important;
    min-height: 600px !important;
}

.property-map-section {
    width: 65% !important;
    position: relative !important;
    background: #f5f5f5 !important;
}

.property-cards-section {
    width: 35% !important;
    overflow-y: auto !important;
    background: #fff !important;
    padding:  25px !important;
}

.acf-map {
    width: 100% !important;
    height: 100% !important;
}

.acf-map img {
    max-width: inherit !important;
}

/******************************** MOBILE HEADER CONTROLS *********************************/

.mobile-header-controls {
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 10px 15px !important;
    background: linear-gradient(135deg, #336B6A 0%, #2a5756 100%) !important;
    box-shadow: 0 4px 12px rgba(51, 107, 106, 0.3) !important;
    margin-bottom: 0 !important;
}

.hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 26px !important;
    height: 20px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 100 !important;
}

.hamburger span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg) !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0 !important;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg) !important;
}


/******************************** RESET MAP BUTTON *********************************/

.reset-map-btn {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--scnd-prmbg) !important;
    color: var(--scnd-prmcol) !important;
    border: 1px solid var(--scnd-prmbg) !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    z-index: 10 !important;
    transition: all 0.25s ease-in-out !important;
}

.reset-map-btn:hover {
    background: var(--scnd-prmcol) !important;
    color: var(--scnd-prmbg) !important;
    border: 1px solid var(--scnd-prmbg) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
}

.reset-map-btn svg {
    flex-shrink: 0 !important;
}

/******************************** PROPERTY CARDS *********************************/

.property-grid-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}

.property-card {
    position: relative !important;
    overflow: hidden !important;
    background-color: #000 !important;
    border-radius: 20px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease !important;
    aspect-ratio: 1 / 1 !important;
   
}

.property-card-inner {
    position: relative !important;
    height: 100% !important;
    width: 100% !important;
}

.property-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.property-card.selected {
    border: 3px solid transparent !important;
    box-shadow: 0 0 30px rgba(51, 107, 106, 0.6), 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.02) !important;
}

/* Remove house icon */
.property-card.selected::before {
    display: none !important;
}

.property-image-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

.property-bg-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
}

.property-card:hover .property-bg-image {
    opacity: 0.3 !important;
    filter: blur(8px) !important;
}

.property-card.selected .property-bg-image {
    opacity: 0.5 !important;
}

.property-content-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px !important;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.property-card:hover .property-content-overlay {
    background: rgba(51, 107, 106, 0.4) !important;
}

.property-card.selected .property-content-overlay {
    background: rgba(51, 107, 106, 0.5) !important;
}



/* --- CORNER BRACKET EFFECT --- */
.property-card-inner::before,
.property-card-inner::after {
    content: '' !important;
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    border: 3px solid #fff !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 5 !important;
}

.property-card-inner::before {
    top: 15px !important;
    left: 15px !important;
    border-right: none !important;
    border-bottom: none !important;
    border-top-left-radius: 8px !important;
}

.property-card-inner::after {
    bottom: 15px !important;
    right: 15px !important;
    border-left: none !important;
    border-top: none !important;
    border-bottom-right-radius: 8px !important;
}

.property-card:hover .property-card-inner::before,
.property-card:hover .property-card-inner::after {
    opacity: 0.8 !important;
}

.property-card.selected .property-card-inner::before,
.property-card.selected .property-card-inner::after {
    opacity: 1 !important;
    border-color: #336B6A !important;
}

.property-category {
    font-size: 0.75em !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    letter-spacing: 1.2px !important;
    opacity: 0.9 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
    color: #ffffff !important;
    transition: opacity 0.3s ease, filter 0.3s ease !important;
}

.property-title {
    color: #fff !important;
    font-size: 1.1em !important;
    margin: 8px 0 10px 0 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9) !important;
    line-height: 1.3 !important;
    font-weight: bold !important;
    transition: opacity 0.3s ease, filter 0.3s ease !important;
}

.property-location {
    font-size: 0.85em !important;
    font-weight: normal !important;
    opacity: 0.9 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
    color: #ffffff !important;
    transition: opacity 0.3s ease, filter 0.3s ease !important;
}

/* Hide and blur text on hover */
.property-card:hover .property-category,
.property-card:hover .property-title,
.property-card:hover .property-location {
    opacity: 0 !important;
    filter: blur(5px) !important;
}


/******************************** HOVER BUTTONS *********************************/

.property-hover-buttons {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.property-card:hover .property-hover-buttons {
    opacity: 1 !important;
    visibility: visible !important;
}

.property-map-btn,
.property-details-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--scnd-prmbg) !important;
    color: var(--scnd-prmcol) !important;
    border: 1px solid var(--scnd-prmbg) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.25s ease-in-out !important;
    white-space: nowrap !important;
    position: relative !important;
}

.property-map-btn:hover,
.property-details-btn:hover {
    background: var(--scnd-prmcol) !important;
    color: var(--scnd-prmbg) !important;
    border: 1px solid var(--scnd-prmbg) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
}

.property-map-btn:active,
.property-details-btn:active {
    transform: translateY(0) !important;
}

.btn-icon {
    flex-shrink: 0 !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)) !important;
}

.property-map-btn span,
.property-details-btn span {
    position: relative !important;
}

/******************************** CATEGORIES MENU *********************************/

.property-categories-menu {
    background: transparent !important;
    padding: 20px !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.categories-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.property-categories-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    animation: slideIn 0.5s ease-out !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-categories-list li a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: #0A1D35 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(51, 107, 106, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

.property-categories-list li a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent) !important;
    transition: left 0.5s !important;
}

.property-categories-list li a:hover::before {
    left: 100% !important;
}

.property-categories-list li a svg {
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
}

.property-categories-list li a:hover {
    background: linear-gradient(135deg, #336B6A 0%, #2a5756 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(51, 107, 106, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

.property-categories-list li a:hover svg {
    transform: scale(1.1) rotate(5deg) !important;
}

.property-categories-list li a.current-cat {
    background: linear-gradient(135deg, #336B6A 0%, #2a5756 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(51, 107, 106, 0.5), 
                inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    border-color: #0A1D35 !important;
    font-weight: 700 !important;
}

.property-categories-list li a.current-cat svg {
    transform: scale(1.15) !important;
}

/******************************** MOBILE VIEW TOGGLE *********************************/

.mobile-view-toggle {
    display: none !important;
    gap: 8px !important;
}

.view-toggle-btn {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    transition: all 0.25s ease-in-out !important;
    backdrop-filter: blur(10px) !important;
}

.view-toggle-btn.active {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #336B6A !important;
    border-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.view-toggle-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.toggle-icon {
    flex-shrink: 0 !important;
}

.no-properties-message {
    text-align: center !important;
    padding: 60px 20px !important;
    font-size: 1.2rem !important;
    color: #666 !important;
}

/******************************** MAP INFOWINDOW STYLING ***************************/

.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    max-width: 280px !important;
    overflow: hidden !important;
}

.gm-style .gm-style-iw-chr {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 0 !important;
    overflow: visible !important;
    z-index: 10 !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, rgba(255,255,255,0.95) 50%, transparent 51%, transparent) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3) !important;
    top: 0 !important;
    right: 0 !important;
}

.custom-info-window {
    padding: 0 !important;
    background: #fff !important;
    font-family: inherit !important;
    text-align: center !important;
    max-width: 280px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.info-window-image {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 12px 12px 0 0 !important;
}

.info-window-content {
    padding: 15px !important;
    background: #fff !important;
}

.info-window-category {
    display: inline-block !important;
    background: #f5f5f5 !important;
    color: #336B6A !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px !important;
}

.info-window-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0A1D35 !important;
    margin: 8px 0 10px 0 !important;
    line-height: 1.3 !important;
}

.info-window-location {
    display: block !important;
    font-size: 12px !important;
    color: #666 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.4 !important;
}

.info-window-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 20px !important;
    background: var(--scnd-prmbg) !important;
    color: var(--scnd-prmcol) !important;
    border: 1px solid var(--scnd-prmbg) !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.25s ease-in-out !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.info-window-btn:hover {
    background: var(--scnd-prmcol) !important;
    color: var(--scnd-prmbg) !important;
    border: 1px solid var(--scnd-prmbg) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

.gm-style .gm-style-iw-tc::after {
    background: #fff !important;
}

/* Close button styling */
.gm-ui-hover-effect {
    opacity: 1 !important;
    width: 32px !important;
    height: 32px !important;
    top: 8px !important;
    right: 8px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.gm-ui-hover-effect:hover {
    background: rgba(255, 255, 255, 1) !important;
}

.gm-ui-hover-effect > span {
    background-color: #0A1D35 !important;
    width: 16px !important;
    height: 16px !important;
    margin: 8px !important;
}

/******************************** RESPONSIVE - TABLET *********************************/

@media (max-width: 992px) {
    .property-layout-wrapper {
        flex-direction: column !important;
        height: auto !important;
    }
    
    .property-map-section {
        width: 100% !important;
        height: 400px !important;
    }
    
    .property-cards-section {
        width: 100% !important;
        max-height: none !important;
    }
    
    .property-grid-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/******************************** RESPONSIVE - MOBILE *********************************/

@media (max-width: 768px) {
    .mobile-header-controls {
         display: flex !important;
        width: calc(100% - 30px) !important;
        margin: 15px auto 0 auto !important;
        border-radius: 20px !important;
    }
    
    .mobile-view-toggle {
        display: flex !important;
    }
    
    .property-categories-menu {
        display: none !important;
        background: transparent !important;
        padding: 15px !important;
        animation: slideDown 0.3s ease-out !important;
    }
    
    .categories-wrapper {
        max-width: calc(100% - 30px) !important;
        margin: 0 auto !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        border-radius: 15px !important;
        padding: 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .property-categories-menu.active {
        display: block !important;
    }
    
    .property-categories-list {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .property-categories-list li a {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 12px 18px !important;
    }
    
    /* Keep original hover for mobile menu */
    .property-categories-list li a:hover {
        background: linear-gradient(135deg, #336B6A 0%, #2a5756 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 6px 20px rgba(51, 107, 106, 0.4), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        transform: translateY(-2px) !important;
    }
    
    .property-layout-wrapper {
        height: auto !important;
        flex-direction: column !important;
    }
    
    /* Mobile map section - properly centered with more height */
    .property-map-section {
        display: none !important;
        width: 100% !important;
        height: 550px !important;
        min-height: 550px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .property-map-section.active {
        display: block !important;
        margin: 15px 0 !important;
    }
    
    #property-map {
        width: calc(100% - 30px) !important;
        height: 100% !important;
        margin: 0 auto !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .property-cards-section {
        display: block !important;
        width: 100% !important;
        padding: 15px !important;
    }
    
    .property-cards-section.hidden {
        display: none !important;
    }
    
    .property-grid-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Hide Map button in grid mode on mobile */
    .property-map-btn {
        display: none !important;
    }
    
    /* Show only Details button in grid mode - BIGGER */
    .property-details-btn {
        display: flex !important;
        padding: 14px 40px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        gap: 10px !important;
    }
    
    .property-details-btn .btn-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* When map view is active, show both buttons at normal size */
    .property-map-section.active ~ .property-cards-section .property-map-btn {
        display: flex !important;
        padding: 10px 24px !important;
        font-size: 12px !important;
    }
    
    .property-map-section.active ~ .property-cards-section .property-details-btn {
        padding: 10px 24px !important;
        font-size: 12px !important;
    }
    
    .property-hover-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .reset-map-btn {
        top: 25px !important;
        right: 25px !important;
        padding: 10px 18px !important;
        font-size: 12px !important;
    }
    
    .view-toggle-btn span {
        font-size: 12px !important;
    }
    
    /* Adjust card aspect ratio for mobile */
    .property-card {
        aspect-ratio: 4 / 3 !important;
    }
    
    /* Corner brackets smaller on mobile */
    .property-card-inner::before,
    .property-card-inner::after {
        width: 30px !important;
        height: 30px !important;
        border-width: 2px !important;
    }
    
    .property-card-inner::before {
        top: 10px !important;
        left: 10px !important;
    }
    
    .property-card-inner::after {
        bottom: 10px !important;
        right: 10px !important;
    }
    
    /* Fix info window on mobile - prevent cutting */
    .gm-style .gm-style-iw-c {
        max-width: 260px !important;
        max-height: none !important;
    }
    
    .gm-style .gm-style-iw-d {
        max-height: none !important;
        overflow: visible !important;
    }
    
    .custom-info-window {
        max-width: 260px !important;
    }
    
    .info-window-image {
        height: 130px !important;
    }
    
    .info-window-content {
        padding: 12px !important;
    }
    
    .info-window-title {
        font-size: 14px !important;
    }
    
    .info-window-location {
        font-size: 11px !important;
    }
    
    .info-window-btn {
        padding: 8px 16px !important;
        font-size: 11px !important;
    }
}


/*************************SINGLE PROPERTY - REDESIGNED*******************************************/

/* ============================================== */
/* FULL WIDTH GALLERY SECTION - SIDE BY SIDE */
/* ============================================== */

.property-gallery-fullwidth {
    width: 100%;
    background-color: #f8f8f8;
    padding: 40px 0;
    margin-bottom: 0;
}

.property-gallery-fullwidth .container-xxl {
    padding-left: 12px;
    padding-right: 12px;
}

.gallery-layout-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 400px;
}

/* LEFT: Main Image - Calculate 70% minus gap */
.gallery-main-image {
    flex: 0 0 calc(70% - 14px); /* 70% minus proportional gap */
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-main-image img:hover {
    transform: scale(1.05);
}

/* RIGHT: Thumbnails Grid - Calculate 30% minus gap */
.gallery-thumbnails {
    flex: 0 0 calc(30% - 6px); /* 30% minus proportional gap */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    height: 100%;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-view-all {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(1px);
    z-index: 1;
}

.gallery-view-all::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 29, 53, 0.7);
    z-index: 2;
}

.gallery-view-all .view-all-text {
    position: relative;
    z-index: 3;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
}

.gallery-view-all .view-all-text strong {
    font-size: 28px;
    display: block;
    margin-top: 5px;
}



/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-layout-wrapper {
        height: 400px;
    }
    
    .gallery-thumbnails {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-layout-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .gallery-main-image {
        flex: 0 0 100%;
        height: 350px;
        margin-bottom: 15px;
    }
    
    .gallery-thumbnails {
        flex: 0 0 100%;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 200px;
    }
}

@media (max-width: 480px) {
    .property-gallery-fullwidth {
        padding: 20px 0;
    }
    
    .gallery-main-image {
        height: 350px;
    }
    
    .gallery-thumbnails {
        height: 150px;
        gap: 8px;
    }
    
    .gallery-view-all .view-all-text {
        font-size: 10px;
    }
    
    .gallery-view-all .view-all-text strong {
        font-size: 20px;
    }
}


/* ============================================== */
/* MAIN CONTENT WRAPPER - 80/20 SPLIT FIXED */
/* ============================================== */

.property-single-wrapper-new {
    background-color: #fff;
    padding: 30px 0;
}

.property-layout-row {
    display: flex;
    flex-wrap: nowrap;
}

.property-main-content {
    padding-right: 20px;
}

.property-sidebar-form {
    padding-left: 20px;
}

/* Sticky Sidebar */
.sticky-form-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 133px;
    z-index: 100;
}

/* Adjust for different screen sizes */
@media (max-width: 1399px) {
    .sticky-form-wrapper {
        top: 110px;
    }
}

@media (max-width: 1199px) {
    .sticky-form-wrapper {
        top: 100px;
    }
}

/* Tablet and Mobile */
@media (max-width: 991px) {
    .property-layout-row {
        flex-direction: column;
    }
    
    .property-main-content {
        padding-right: 15px;
        order: 2;
    }
    
    .property-sidebar-form {
        padding-left: 15px;
        order: 1;
        margin-bottom: 30px;
    }
    
    .sticky-form-wrapper {
        position: relative;
        top: 0;
        margin-top: 0;
        margin-bottom: 30px;
    }
}

/* ============================================== */
/* INFO BLOCKS (Sections) */
/* ============================================== */

.info-block {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.property-section-title {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    color: #0a1d35 !important;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #336B6A;
    display: inline-block;
}

/* ============================================== */
/* PROPERTY DETAILS - ONE CLEAN BOX */
/* ============================================== */

.property-details-section {
    padding: 30px !important;
}

.key-details-box {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

#apartment-details-new {
    position: relative;
}

/* ============================================== */
/* KEY DETAILS - WITH STATUS BADGE */
/* ============================================== */

.key-details-box .unit-details-modern {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.key-details-box .unit-details-modern.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Badges Row - Now with Status instead of Rooms */
.key-details-box .unit-icons-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.key-details-box .unit-detail-badge {
    flex: 1 1 auto;
    min-width: 100px;
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Circular Icon Containers */
.key-details-box .badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #336B6A;
    color: white;
}

.key-details-box .badge-icon svg {
    width: 28px;
    height: 28px;
}

/* Hover effect */
.key-details-box .unit-detail-badge:hover .badge-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(51, 107, 106, 0.3);
}

/* Badge Labels */
.key-details-box .badge-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Badge Values */
.key-details-box .badge-value {
    font-size: 1.1rem;
    color: #0a1d35;
    font-weight: 700;
}

/* ============================================== */
/* STATUS BADGE COLORS IN ICON SECTION */
/* ============================================== */

/* Keep icon background same as others (teal) */
.badge-icon-status-available,
.badge-icon-status-sold {
    background-color: #336B6A !important;
}

/* Only text color changes based on status */
.badge-status-status-available {
    color: #207033 !important;
    font-weight: 700;
}

.badge-status-status-sold {
    color: #dc3545 !important;
    font-weight: 700;
}


/* ============================================== */
/* IMAGE MAP PRO DISPLAY - WITH DIVIDER LINE */
/* ============================================== */

.image-map-display {
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.image-map-display .imp-main-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
}

.image-map-display img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-map-display canvas {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
}

/* Ensure proper rendering */
.image-map-display .imp-ui {
    border-radius: 8px;
}

/* Remove old toggle button and container styles */
.image-map-toggle-wrapper,
.image-map-toggle-btn,
.image-map-pro-container,
.image-map-hidden,
.image-map-visible {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .image-map-display {
        margin-top: 30px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .image-map-display {
        margin-top: 25px;
        padding-top: 25px;
    }
}


/* ============================================== */
/* FORM PRICE HEADER - AT TOP OF FORM */
/* ============================================== */

.form-price-header {
    background: linear-gradient(135deg, #336B6A 0%, #1f4443 100%);
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(10, 29, 53, 0.2);
}

.price-display {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.unit-code {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    text-align: right;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ============================================== */
/* SVG UNIT STYLING (Image Map Pro) */
/* ============================================== */

.sold-unit {
    fill: rgba(255, 0, 0, 0.3) !important;
}

polygon.sold-unit {
    fill: rgba(255, 0, 0, 0.3) !important;
}

.selected-unit {
    fill: rgba(0, 0, 0, 0.8) !important;
}

polygon.selected-unit {
    fill: rgba(0, 0, 0, 0.8) !important;
}

/* ============================================== */
/* DESCRIPTION SECTION */
/* ============================================== */

.description-section .property-description-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.description-section .property-description-content p {
    margin-bottom: 15px;
}

/* ============================================== */
/* FEATURES SECTION */
/* ============================================== */

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list > div[class*="col-"] li {
    padding: 12px 0;
    color: #444;
    font-size: 1rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================== */
/* MAP SECTION */
/* ============================================== */

.acf-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.acf-map .marker {
    display: none;
}

.map-container {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
    border-radius: 12px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================== */
/* STICKY CONTACT FORM */
/* ============================================== */


.singlepropform-container {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 15px;
    padding: 25px 30px 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: visible !important;
}


.singlepropform-header {
    text-align: left;
    margin-bottom: 25px;
}


.singlepropform-header .form-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0a1d35 !important;
    margin-bottom: 12px !important;
}


.singlepropform-header p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}


.singlepropform-product-name {
    font-weight: 600;
    color: #336B6A;
}


/* Form Fields */
.singlepropform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}


.singlepropform-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: #222;
}


.singlepropform-input,
.singlepropform-textarea,
input.singlepropform-input,
input.wpcf7-form-control.wpcf7-text,
input.wpcf7-form-control.wpcf7-email,
textarea.wpcf7-form-control.wpcf7-textarea {
    margin-top: 10px;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 0.95rem;
    background-color: #fff;
    width: 100%;
    transition: all 0.3s ease;
}


.singlepropform-input:focus,
.singlepropform-textarea:focus,
input.wpcf7-form-control:focus,
textarea.wpcf7-form-control:focus {
    outline: none;
    border-color: #0A1D35;
}


.singlepropform-textarea,
textarea.wpcf7-form-control.wpcf7-textarea {
    min-height: 110px;
    height: 110px;
    resize: vertical;
    border-radius: 20px;
}


/* Submit Button */
.singlepropform-submit,
input.wpcf7-form-control.wpcf7-submit {
    background-color: #0A1D35;
    color: white;
    border: none;
    padding: 15px 35px !important;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 12px;
}


.singlepropform-submit .icon svg {
    width: 18px;
    height: 18px;
}


/* Response Output - Prevent Cutoff */
.wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 10px 15px !important;
    clear: both;
    position: relative;
    z-index: 999;
}


/* Form Responsive */
@media (max-width: 768px) {
    .singlepropform-container {
        padding: 20px 25px 30px 25px;
    }
    
    .singlepropform-row {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .singlepropform-header {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .singlepropform-header .form-title {
        margin-bottom: 8px !important;
    }
    
    .singlepropform-header p {
        margin-bottom: 5px;
    }
    
    .singlepropform-input,
    .singlepropform-textarea,
    input.wpcf7-form-control.wpcf7-text,
    input.wpcf7-form-control.wpcf7-email,
    textarea.wpcf7-form-control.wpcf7-textarea {
        margin-top: 5px;
        padding: 10px 15px;
    }
    
    .singlepropform-textarea,
    textarea.wpcf7-form-control.wpcf7-textarea {
        min-height: 80px;
        height: 80px;
    }
    
    .singlepropform-submit,
    input.wpcf7-form-control.wpcf7-submit {
        padding: 12px 30px !important;
        margin-top: 8px;
    }
    
    .form-price-header {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .price-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .unit-code {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .image-map-display {
        margin-top: 30px;
        padding: 15px;
    }
}


/* ============================================== */
/* MORE PROPERTIES FEED */
/* ============================================== */

.akinta-feed-container {
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    margin: 0 !important;
}

.akinta-feed-container .feedpost .thumbnail {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 15px 15px 0 0;
}

.akinta-feed-container .property-location {
    font-size: 1em !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
}

.akinta-feed-container .location-label-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 18px !important;
    background-color: #fff !important;
    border-radius: 50px !important;
    color: #336B6A !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    text-shadow: none !important;
}

.akinta-feed-container .location-label-wrapper svg {
    width: 20px !important;
    height: 20px !important;
    vertical-align: middle !important;
}

.akinta-feed-container .location-label-wrapper .location-text {
    color: #336B6A !important;
    font-size: 1.1em !important;
    line-height: 1 !important;
}

.akinta-feed-container .feedpost h3,
.akinta-feed-container .feedpost h3 a {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #0a1d35 !important;
}

.akinta-feed-container .feedpost .excerpt p {
    font-size: 15px;
    font-weight: 300;
    color: #666;
}

.akinta-feed-container .feedpost-content {
    box-sizing: border-box;
    border: 1px solid #e8e8e8 !important;
    transition: all 0.3s ease;
}

.akinta-feed-container .feedpost-content:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-5px);
}

.akinta-feed-container .categories a {
    color: #000 !important;
    font-size: 0.85rem;
   
}



/* ============================================== */
/* RESPONSIVE ADJUSTMENTS */
/* ============================================== */

@media (max-width: 1200px) {
    .key-details-box .unit-icons-row {
        gap: 12px;
    }
    
    .key-details-box .badge-icon {
        width: 55px;
        height: 55px;
    }
    
    .key-details-box .badge-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 992px) {
    .key-details-box .unit-icons-row {
        justify-content: center;
    }
    
    .key-details-box .unit-detail-badge {
        min-width: 90px;
    }
    
    .property-single-wrapper-new {
        padding: 30px 0;
    }
    
    .info-block {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .property-gallery-fullwidth {
        padding: 20px 0 30px 0;
    }
    
    .gallery-main-container {
        padding: 0 10px;
    }
    
    .property-section-title {
        font-size: 1.4rem;
    }
    
    .info-block {
        margin-bottom: 20px;
    }
    
    .property-details-section {
        padding: 20px !important;
    }
    
    .key-details-box .unit-icons-row {
        gap: 15px;
    }
    
    .key-details-box .unit-detail-badge {
        flex: 0 0 calc(33.333% - 10px);
        min-width: auto;
        max-width: none;
    }
    
    .key-details-box .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .key-details-box .badge-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .key-details-box .unit-detail-badge {
        flex: 0 0 calc(50% - 8px);
    }
    
    .key-details-box .badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .key-details-box .badge-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .key-details-box .badge-label {
        font-size: 0.75rem;
    }
    
    .key-details-box .badge-value {
        font-size: 0.95rem;
    }
    
    .image-map-display {
        margin-top: 20px;
        padding: 10px;
    }
}

/* ============================================== */
/* UTILITY CLASSES */
/* ============================================== */

body {
    overflow-x: hidden;
}

.property-id-value {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/**************************REDESIGNED SINGLE PROPERTY MOBILE ********************************/

/* ========================================
   MOBILE-ONLY STYLES (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    
    /* 1. GALLERY AS SLIDER - One image at a time */
    .property-gallery-fullwidth .gallery-layout-wrapper {
        display: block !important;
    }
    
    .property-gallery-fullwidth .gallery-main-image {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    .property-gallery-fullwidth .gallery-thumbnails {
        display: none !important;
    }
    
    .property-gallery-fullwidth .gallery-main-image {
        position: relative !important;
        touch-action: pan-y !important;
    }
    
    .property-gallery-fullwidth .gallery-main-image img {
        transition: transform 0.4s ease, opacity 0.4s ease !important;
        min-height: 350px !important;
        object-fit: cover !important;
    }

    .property-gallery-fullwidth{
        min-height: 400px !important;
    }
    
    .property-gallery-fullwidth .gallery-main-image img.slide-left {
        transform: translateX(-30px) !important;
        opacity: 0 !important;
    }
    
    .property-gallery-fullwidth .gallery-main-image img.slide-right {
        transform: translateX(30px) !important;
        opacity: 0 !important;
    }
    
    /* 2. REORDER LAYOUT - Contact form to bottom */
    .property-layout-row {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .property-main-content {
        order: 1 !important;
    }
    
    .property-sidebar-form {
        order: 2 !important;
        margin-top: 30px !important;
    }
    
    /* 3. UNIT DETAILS - 2 rows, 3 items per line */
    .unit-details-modern .unit-icons-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
    
    .unit-detail-badge {
        padding: 12px 8px !important;
        font-size: 12px !important;
    }
    
    .unit-detail-badge .badge-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .unit-detail-badge .badge-label {
        font-size: 10px !important;
        margin: 4px 0 2px 0 !important;
    }
    
    .unit-detail-badge .badge-value {
        font-size: 13px !important;
        font-weight: 600 !important;
    }
    
    /* 4. MOVE IMAGE MAP ABOVE UNIT DETAILS */
    .property-details-section {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .key-details-box {
        order: 2 !important;
    }
    
    .image-map-display {
        order: 1 !important;
        margin-bottom: 20px !important;
    }
    
    /* More Properties Slider */
    .akinta-cards-row {
        display: block !important;
        overflow: hidden !important;
    }
    
    .akinta-cards-row > div {
        display: none !important;
    }
    
    .akinta-cards-row > div.active-slide {
        display: block !important;
        transition: transform 0.4s ease, opacity 0.4s ease !important;
    }
    
    .akinta-cards-row > div.slide-left {
        transform: translateX(-30px) !important;
        opacity: 0 !important;
    }
    
    .akinta-cards-row > div.slide-right {
        transform: translateX(30px) !important;
        opacity: 0 !important;
    }
    
    .swipe-hint {
        position: absolute !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: rgba(0,0,0,0.7) !important;
        color: #fff !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
        font-size: 13px !important;
        z-index: 10 !important;
    }
}



@media (min-width: 769px) {
    .sticky-contact-btn {
        display: none !important;
    }
}




/* Sticky Contact Button */
.sticky-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0A1D35;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(10, 29, 53, 0.4);
    display: none;
    transition: bottom 0.3s ease, opacity 0.3s ease;
}

.sticky-contact-btn.show {
    display: block;
}

.sticky-contact-btn.sold {
    background: #dc3545;
}

.sticky-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 29, 53, 0.5);
}

@media (min-width: 769px) {
    .sticky-contact-btn {
        display: none !important;
    }
}


@media (max-width: 1180px) {
   /* 2. REORDER LAYOUT - Contact form to bottom for ipad portrait mode */
    .property-layout-row {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .property-main-content {
        order: 1 !important;
    }
    
    .property-sidebar-form {
        order: 2 !important;
        margin-top: 30px !important;
    }
}




