/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Root
# Global
    ## Tools
# Typography
# actusblank
# Menu
# Footer
# Layout
--------------------------------------------------------------*/
 


/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

/*
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Sofia+Sans+Condensed:300,400,500,700,900,1000&display=swap&subset=greek');
*/

@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Geologica:300,400,700,900&display=swap&subset=greek');



/* Root */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
:root {

    --fontA: 'Manrope', sans-serif;
    --fontB: 'Geologica', sans-serif;
	
	--colorA: #7e4939;
	--colorB: #505f58;
	--colorC: #b38972;
	--colorD: #21221c;
	--prod: #919437;


    --txA: 0 0 1px hsla(176, 99%, 33%, 0.4);
    --txB: 0 0 1px hsla(217, 51%, 20%, 0.4);
    --txC: 0 0 1px hsla(215, 26%, 37%, 0.4);
    --txD: 0 0 1px hsla(0, 0%, 90%, 0.4);

    --txA3: 0 0 1px hsla(210, 74%, 48%, 0.4);

    --txWH: 0 0 1px hsla(0, 0%, 100%, 0.4);
    --txBL: 0 0 1px hsla(0, 0%, 0%, 0.4);

	--gradA1: linear-gradient(90deg, #0a486f00, #0a486f69, #0a486f69);


}


 
/* Typography - Colors */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
html {
	box-sizing: border-box;
	font-family: sans-serif; 
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body { margin: 0; font-family: var(--fontA); }
body, body * { box-sizing: border-box; }
html, body { overflow-x: hidden; }
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--colorA);
}
::-webkit-scrollbar-thumb {
    background: var(--colorB);
    border: 2px solid var(--colorA);
}
body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}


a,p,li,h1,h2,h3,h4,h5,h6 { font-family: var(--fontA); }
.uline::after { border-bottom: 8px solid var(--colorA); }
a { color: var(--colorA); text-decoration: none; }
a h1, a h2, a h3, a h4, a h5, a h6, a li,
a p { color: black; }



.A-round,
.A-button-round { background: var(--colorA); }

.backA { background: var(--colorA); }
.backB { background: var(--colorB); }
.backC { background: var(--colorC); }
.backD { background: var(--colorD); }
.backE { background: #021d26; }
.backF { background: #cecece; }

.A-flex { display: flex; }
.A-flex-wrap { display: flex; flex-flow: row wrap; }

.abs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}




body main#content,
body footer { display: block; }
figure { margin: 0; }


img { position: relative; }
img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: white;
}
.A-content img { max-width: 100%; height: auto; }
[data-show="1"] { cursor: zoom-in; }



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ HEADER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
header {
	position: relative;
    text-align: center;
	padding: 32px 64px 0;
    background: #066fb0;
}
header .A-flex {
	place-items: center;
	place-content: space-between;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0 0 32px 0;
	transition: 1s all;
}
header .A-logo img {
    width: 260px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}
header .A-logo.closed { transform: scale(0); }


/* Navigation */
header nav .menu-toggle {
	display: none;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	cursor: pointer;
}
header nav .menu-toggle svg {
	height: 32px;
    fill: black;
    stroke: black;
    stroke-width: 12px;
}
header nav {
    position: relative;
	display: block;
    width: auto;
	margin: 0;
    text-align: right;
	transition: 1s all;
    z-index: 9;
}
header nav.closed { left: -300px; }
header nav ul {
	width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
	text-align: center;
}
header nav ul li {
    display: inline-block;
    position: relative;
    width: auto;
    padding: 0px;
    margin: 0px 0px 0px 32px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 700 20px var(--fontA);
	text-decoration: none;
	color: white;
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: var(--colorB);
    opacity: 1;
}
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 178px;
	padding: 8px;
	text-align: left;
	background: #066fb0;
}
header nav ul.sub-menu li {
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul li:hover ul.sub-menu { display: block; }
header nav ul li img { height: 20px; }
header nav ul.menu > li:last-child { margin-left: 16px; }

[lang="el"] header nav ul.sub-menu { min-width: 220px; }


nav.A-breadcrumb {}

nav.A-breadcrumb ul { display: flex; list-style: none; }
nav.A-breadcrumb ul li { margin-right: 8px; }
nav.A-breadcrumb ul li a { text-decoration: none; font-weight: 700; color: var(--colorB); }
nav.A-breadcrumb ul li a:hover { text-decoration: underline; }


/* SEARCH */
.A-search {
	display: flex;
	position: absolute;
    top: 32px;
    right: 5%;
}
.A-search:hover {opacity: 1;}
.A-search form { display: flex; }
.A-search label span { display: none; }
.A-search input[type="search"] {
    width: 100%;
    min-width: 260px;
    padding: 6px 32px 6px 8px;
    font: 400 14px var(--fontA);
    background: hsla(0, 0%, 0%, 0.1);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.A-search .search-submit {
    top: 2px;
    margin-left: -34px;
    font-size: 14px;
    opacity: 0.7;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.A-search .search-submit:hover { opacity: 1; }
.A-search .search-submit img {
    width: auto;
    height: 20px;
    padding: 2px 0;
	object-fit: contain;
}
.A-search svg {
    position: relative;
    top: 2px;
	height: 16px;
	pointer-events: none;
}


.search-result-list {
	padding: 0;
	list-style: none;
}
.search-result-list li { margin-bottom: 16px; }
.search-result-list li > a {
	display: flex;
    align-items: center;
}
.search-result-list li .img-placeholder,
.search-result-list li img {
	flex: 0 0 auto;
	width: 100px;
	height: 100px;
	object-fit: cover;
	margin-right: 16px;
	background: #DDD;
}
.search-result-list li h3 { margin: 0 0 12px; }
.search-result-list li p { margin: 0; }


.A-404,
.A-SEARCH-RESULTS { padding: 32px 10%; }
.A-SEARCH-RESULTS ul {
	padding: 0;
	list-style: none;
}
.A-SEARCH-RESULTS .pagination { margin-top: 64px; }
.A-SEARCH-RESULTS .pagination > .screen-reader-text {
	display: none;
}
.A-SEARCH-RESULTS .nav-links {
	display: flex;
	align-items: center;
	place-content: center;
}
.A-SEARCH-RESULTS .nav-links span,
.A-SEARCH-RESULTS .nav-links a {
	margin: 0 4px;
	font-size: 18px;
	line-height: 1;
}
.A-SEARCH-RESULTS .page-numbers {
	margin: 4px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
}
.A-SEARCH-RESULTS .prev,
.A-SEARCH-RESULTS .next {
	background: transparent;
	color: var(--colorA);
}
.A-SEARCH-RESULTS .page-numbers:hover {
	background: var(--colorB);
	color: white;
}



#act_map {
	display: none;
	width: 60%;
	height: 300px;
}
.gm-style-mtc { display: none; }




.A-video-frame {
	position: relative;
	background: url(img/laptop.png) no-repeat;
	background-size: 100%;
    width: 80%;
	padding: 2.5% 0.4% 10% 0.3%;
	margin: 32px 0 64px;
    margin-left: 10%;
}
.A-video-frame .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% / 1.3);
	padding-top: calc(56.25% / 1.3);
	margin: 0 auto;
}
.A-video-frame .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.A-shadow-R { position: relative; }
.A-shadow-R:before {
	content: "";
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 128px;
	background: url(img/shadow-R.jpg) no-repeat;
	background-size: contain;
}


.Aitem .more,
.A-more {
	display: inline-block;
	position: relative;
	margin-top: 32px;
	padding: 6px 16px;
	font: 700 14px var(--fontA);
	line-height: 1;
	background: var(--colorA);
	color: white;
	border-radius: 40px;
	cursor: pointer;
}
.A-more a { color: white; font: 700 14px var(--fontA); }
.Aitem .more:hover,
.A-more:hover { background: black; }





/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ MAIN */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
h1 { font-size: 56px; color: var(--colorD); font-weight: 900; }
h2 { font-size: 48px; color: var(--colorD); }
h3 { font-size: 32px; color: var(--colorD); }
p, li { font-size: 18px; color: #333; }
a { font-size: 18px; color: var(--colorA); }
h3 a { font-size: 24px; color: var(--colorA); font-family: var(--fontB); }

h1, h2, h3, h4 { font-family: var(--fontB); }




.RUV-home-slider {
    position: relative;
	height: 600px;
    overflow: hidden;
}
.RUV-home-slider .R-slider-logo {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
    padding: 0 40% 6%;
    mix-blend-mode: color-burn;
    object-fit: contain;
}


#home-A {
	padding: 96px 25%;
	text-align: center;
}
#home-A h1 { margin: 0; }

#home-icons {
	margin-bottom: 64px;
	padding: 64px 15%;
	text-align: center;
	line-height: 1;
	background: var(--colorC);
}
#home-icons .Acolumn {
	position: relative;
	border-right: 4px solid var(--colorA);
}
#home-icons .Acolumn:last-child { border: 0; }


#home-icons.home-icons-a {
	justify-content: center;
	flex-flow: row wrap;
	gap: 64px 32px;
}
#home-icons.home-icons-a img { height: 200px; }
#home-icons.home-icons-a .Acolumn {
	flex: 0 0 auto;
	width: calc(33.333% - 32px);
	border: 0;
}


#home-icons h3 {
	margin: 16px 0 0;
	transition: 0.3s;
	line-height: 0.7;
}
#home-icons h3 a { color: #000; font-size: 20px; }
#home-icons img {
	width: auto;
	height: 100px;
}

#home-icons .Apic { transition: 0.3s; }
#home-icons .Acolumn:hover .Apic { transform: scale(0.85); }
#home-icons .Acolumn:hover h3 { transform: scale(1.15); }

.home-icons-a .Acolumn { padding: 0 2%; }
.home-icons-b .Acolumn { padding: 0 5%; }
.home-icons-a .Apic .ACB-svg svg {
    width: 100%;
	height: 130px;
	margin-bottom: -30px;
}
.home-icons-a svg {
	fill: transparent;
	stroke: #0270ae;
	stroke-width:9px;
	stroke-linecap:round;
	stroke-linejoin:round;
	font-size: 56px;
	font-weight: 300;
}
.home-icons-a svg text { stroke-width: 6px; }
.home-icons-a svg .clsb-3 {stroke-dasharray:100 40 120 20;}
.home-icons-a svg .clsb-4 {stroke-dasharray:120 60 200 30;}
.home-icons-a svg .clsb-5 {stroke-dasharray:127.18 38.15 95.39 19.08;}
.home-icons-a svg .clsb-6 {stroke-dasharray:300 60 200 30;}
.home-icons-a svg .clsb-7 {stroke-dasharray:180 40 200 30;}
.home-icons-a svg .clse-3,
.home-icons-a svg .clse-5 {stroke-width:12px;}
.home-icons-a svg .clse-4,
.home-icons-a svg .clse-6 {stroke:var(--colorC);}
.home-icons-a svg .clse-4 {stroke-width:20px;}
.home-icons-a svg .clse-6 {stroke-width:21px;}
.home-icons-a svg .clse-1,
.home-icons-a svg .clse-5 {fill:var(--colorC);}

.home-icons-b .Apic .ACB-svg svg {
    width: 100%;
	height: 150px;
}


.A-page-content {
	padding-bottom: 96px;
}






/* MARK: PRODUCT            
   ----------------------- */
X#postid-46 { --prod: #919437; }



.single-products {}
.product-top .Col1 {
	flex: 0 0 auto;
    position: relative;
	width: 40%;
}
.product-top > .Col2 {
	padding-left: 96px;
	padding-right: 10%;
	padding-bottom: 24px;
	background: var(--colorC);
}
.product-top h1 {
	margin: 0;
	color: var(--prod);
}
.product-photo {
	height: 400px;
	filter: drop-shadow(-4px 8px 16px hsla(0, 0%, 0%, 0.5));
}
.product-photo img {
	height: 100%;
	object-fit: contain;
	object-position: right;
}
.product-top .Col2 .Acolumns {
	padding: 24px 0;
	margin-top: 48px;
	width: 170%;
	align-items: center;
	margin-left: calc(-48% - 96px);
}
.product-top .Col2 .Col1 {
	flex: 0 0 auto;
	width: 35%;
}
.product-top .Col2 .Col2 {
	padding: 0 0 0 64px;
}
.product-top .Col2 .Col2 h3 {
	margin: 12px 0 32px;
	font-size: 22px;
	color: #333;
}
.product-top ul { padding: 0 0 16px 24px;}
.product-top ul li {
	margin: 12px 0;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--fontB);
	color: var(--colorA);
	color: var(--prod);
}
.product-top .warning {
	max-width: 80%;
	margin-top: 24px;
	padding: 16px 32px;
    font-family: var(--fontB);
    font-size: 16px;
	background: hsla(50, 99%, 50%, 0.4);
}
.product-top .warning:empty { display: none; }
.product-top .ACB-SHORTCODE {
    position: relative;
	height: 100%;
}
.product-top .RUV-home-slider {
    position: relative;
	height: 100%;
}

.product-A {
	padding: 96px 25% 48px;
}

.product-icon svg {
    width: 100%;
	height: 200px !important;
	fill: var(--prod) !important;
}
.product-C svg path,
.product-icon svg path {
	fill: var(--prod) !important;
}

.product-B {
	padding: 48px 15% 96px;
}
.product-B .Col1 {
	flex: 0 0 auto;
	position: relative;
	width: 50%;
	padding-right: 48px;
	text-align: right;
	border-right: 4px solid var(--colorB);
}
.product-B .Acolumn > *:first-child { margin-top: 0; }
.product-B .Col2 {
	padding-left: 64px;
}
.product-B h3 {
	margin: 16px 0 0;
	font-size: 22px;
}
.product-B p {
	margin: 0;
	font-size: 14px;
} 


.product-C {
	text-align: center;
}
.product-C h2 { margin: 0 0 16px; }
.product-C p { font-size: 20px; }
.product-C .Acolumns {
	flex-flow: row wrap;
	place-content: center;
	position: relative;
	margin: 0 -16px 24px;
}
.product-C .Acolumn {
	flex: 0 0 auto;
	width: calc(25% - 32px);
	margin: 0 8px 16px;
	padding: 24px;
	border: 4px solid var(--colorA);
	border-radius: 16px;
}

.product-C svg {
	width: 100%;
	height: 140px !important;
	fill: var(--prod);
}
.product-C .warning:empty { display: none; }
.product-C .warning {
	max-width: unset; 
	margin: 24px 0 0;
	padding: 16px 32px;
    font-family: var(--fontB);
    font-size: 16px;
	border-bottom: 2px solid var(--colorC);
}

.product-C .R-usage .Acolumn {
	width: auto;
	margin: 0;
	padding: 16px;
	border: 0;
}
.product-C .R-usage img,
.product-C .R-usage svg {
	width: 100%;
	height: 200px;
	fill: var(--prod);
	border-radius: 12px;
}


.packages {
	place-content: center;
	margin: 0 0 48px;
	padding: 48px 15%;
	background-color: var(--colorC);
}
.packages .Acolumn {
    flex: 0 0 auto;
	width: auto;
	margin: 0 32px;
	text-align: center;
}
.packages h3 {
	margin: 16px 0 0;
}
.packages img {
	max-height: 300px;
	object-fit: contain;
}


.product-warn {
	margin: 64px 20% 0;
	padding: 32px;
	background: hsla(50, 95.5%, 71%, 0.4);
	border-radius: 24px;
	box-shadow: 0 0px 16px hsla(50, 99%, 50%, 0.4), 0 16px 26px hsla(50, 99%, 20%, 0.1);
}

.product-warn h2 {
	font-size: 32px;
}
.product-warn ul {
    padding-left: 38px;
}

.product-warn li {
	margin-bottom: 12px;
    padding-left: 16px;
}






#home-icons.solution-icons img { height: 120px; }
#home-icons.solution-icons p {
	font-size: 16px;
	line-height: 1.3;
}



/* MARK: SLIDER            
   ----------------------- */
.RUV-home-slider {
	position: relative;
	width: 100%;
	background: var(--colorC);
	overflow: hidden;
}
.RUV-home-slider .slide,
.RUV-home-slider .slides,
.RUV-home-slider img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.RUV-home-slider .moto {
	display: flex;
	flex-flow: row wrap;
	align-content: flex-end;
	position: absolute;
	right: 0%;
	top: 0;
	width: 750px;
	height: 100%;
	padding: 0 7vw 64px 0;
	background: var(--gradA1);
	text-align: right;
}
.RUV-home-slider .moto h2:first-child { text-transform: uppercase; }
.RUV-home-slider .moto h2 {
	width: 100%;
	margin: 0;
	font: 700 38px var(--fontB);
	line-height: 1;
	color: white;
	text-shadow: var(--txWH);
}
.RUV-home-slider .moto h2 span {
	margin-top: 4px;
	font-size: 31px;
	color: var(--colorB);
	text-shadow: var(--txA);
	float: right;
}
.RUV-home-slider .slides .AB-slide { overflow: hidden; }





.ruv-gallery { display: none !important; }








.A-page-title { position: relative; padding: 0 10vw; }
.A-page-title:before {
    display: inline-block;
    content: "";
    width: 40px;
    height: 40px;
    margin-right: 16px;
    background: var(--colorB);
}

.A-author-info {  }
.A-author-info .author_link { display: block; margin-top: 16px; }
#author-description > p { margin: 0; }
#author-description h2 { margin: 0; }
#author-description .bio {}
.A-archive .A-page-title.author { margin-bottom: 48px; }


/* 	--------------
	ARCHIVE
 	-------------- */
.A-archive { position: relative; padding: 0 10vw 48px;  }
.A-archive .A-page-title { padding: 0; margin: 0; }
.A-archive .A-subcategories {
	margin-top: 16px;
}
.A-archive .A-subcategories > a {
	margin-right: 16px;
}
.A-archive .A-list {
	display: flex;
	flex-flow: row wrap;
	margin-top: 48px;
}


.A-archive.related-products .A-list a,
.A-archive .A-list > a {
	width: 33.333%;
	margin-bottom: 48px;
	padding-right: 32px;
}
.A-pagination { margin-top: 64px; }
.A-pagination ul {
	display: flex;
    place-content: center;
	padding: 0;
	list-style: none;
}
.A-pagination ul li { margin: 0 8px; }
.A-pagination ul li a { color: black; }



.A-archive.related-products .A-list a img,
.A-archive .A-list > a img {
	width: 100%;
	height: 240px;
	object-fit: contain;
}


.category-head {
	display: flex;
	margin: 0 -10vw;
	padding: 24px 10vw;
	background: var(--colorC);
}
.category-head h1:before {
    display: inline-block;
	content: "";
	width: 40px;
	height: 40px;
	margin-right: 16px;
	background: var(--colorB);
}
.category-head .A-text { flex: 1; margin-left: -56px; }
.category-head .A-image { flex: 0 0 auto; }
.category-head img { width: 92px; height: 92px; object-fit: contain; }
.category-head .A-description {
	margin-left: 60px;
}


.A-archive.related-products {
	padding: 32px 15%;
	border-top: 2px solid var(--colorC);
}
.A-archive.related-products h2 {
	font-size: 32px;
}
.A-archive.related-products h3 {
	margin: 12px 0 8px;
}
.A-archive.related-products .product-excerpt p {
	margin: 0;
}
.A-archive.related-products .A-list a { width: 25%; }
.A-archive.related-products .A-list a img { height: 180px; }



.A-content .actus-store-locator {
	max-width: unset;
	margin: 0 10vw;
	padding: 0;
}



/* Store Locator Section */
.store-locator-section {
    background: linear-gradient(135deg, #ece2d7 0%, #c5e5ff 100%);
    padding: 80px 0%;
    position: relative;
    overflow: hidden;
    border-left: 200px solid var(--colorD);
}

.store-locator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    pointer-events: none;
}

.store-locator-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.store-locator-content {
    flex: 1;
    color: white;
}

.store-locator-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.store-locator-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.store-locator-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1a73a8;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.store-locator-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.store-locator-btn:hover::before {
    left: 100%;
}

.store-locator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    color: #0d5a8a;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.store-locator-btn:hover .btn-icon {
    transform: scale(1.1);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.store-locator-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.location-icon::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: ripple 3s ease-out infinite;
}

.location-icon::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: ripple 3s ease-out infinite 1s;
}

.location-icon svg {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: relative;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-locator-section {
        padding: 60px 0;
    }
    
    .store-locator-section .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .store-locator-content h2 {
        font-size: 2rem;
    }
    
    .store-locator-visual {
        flex: none;
    }
    
    .location-icon {
        width: 100px;
        height: 100px;
    }
    
    .location-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .store-locator-content h2 {
        font-size: 1.8rem;
    }
    
    .store-locator-content p {
        font-size: 1rem;
    }
    
    .store-locator-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}








/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ FOOTER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
.A-footer {
	display: flex;
    padding: 64px 0 32px;
    background: #f8f8f8;
}
.A-footer-col {
    width: 25%;
    padding: 16px;
    float: left;
}
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 120px;
    height: auto;
    padding: 0 32px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: var(--colorB);
}
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
    display: block;
	margin: 2px 0;
	font: 400 16px var(--fontA);
	color: black;
}
.A-footer-col label { display: inline-block; margin-right: 8px; }
.A-footer-col a:hover { color: var(--colorB);  font-weight: 700; }
.A-footer-col ul { padding: 0; margin: 0; list-style: none; }
.A-contact-row {
	display: flex;
	margin: 16px 0;
}
.A-contact-row svg {
	height: 24px;
	margin-right: 8px;
	fill: white;
	stroke: white;
}
.A-footer-col li.lang-item {
	display: inline-block;
	margin-right: 16px;
	margin-top: 8px;
}

footer a { text-decoration: none; }
footer .A-social {
	display: flex;
    padding: 32px;
	text-align: center;
}
footer .A-social a {
	margin: 0 16px 0 0;
	cursor: pointer;
}
footer .A-social svg { 
	height: 24px;
	fill: var(--colorA);
	transition: 0.3s all;
}
footer .A-social a:hover svg { fill: var(--colorB); transform: scale(1.2); }



.A-footer-created {
	position: relative;
    width: 100%;
    text-align: center;
    padding: 8px;
    background: var(--colorC);
	z-index: 9;
}
.A-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: var(--colorA);
}
.A-footer-created a:hover { color: var(--colorB); }
.A-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}






/* PARALLAX */
.actus-parallax { overflow: hidden; }

.velaki {
    display: none;
    background: var(--colorA);
    position: fixed;
    bottom: 16px;
	left: calc(100% - 64px);
    padding: 8px 12px 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transform: rotate(-90deg) scale(1);
    cursor: pointer;
    z-index: 9999;
    border-radius: 7px;
    box-shadow: -4px 4px 8px hsla(0, 0%, 0%, 0.3);
    transition: 0.3s;
}




form .form-field { margin-bottom: 16px; }
form .form-submit { position: relative; text-align: center; }
form label { padding-left: 12px; color: var(--colorA); }
form input,
form textarea {
	width: 100%;
	padding: 8px 16px;
	font: 400 22px var(--fontA);
	background: var(--colorC);
	border-radius: 24px;
	border: 0;
	outline: 0;
}
form textarea { font-size: 18px; }
form .wpcf7-acceptance:hover label { color: var(--colorB); }
form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
form .wpcf7-acceptance label { display: flex; }
form input[type="checkbox"] {
	position: relative;
	flex: 0 0 auto;
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
	padding: 0;
	margin-right: 8px;
	background: transparent;
    border: 6px solid var(--colorB);
	border-radius: 0;
	cursor: pointer;
}
form input[type="checkbox"]::before {
    content: "";
	position: absolute;
    width: 16px;
    height: 16px;
    margin: 2px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 20px 20px var(--colorB);
}
form input[type="checkbox"]:checked::before { transform: scale(1); }
form input[type="submit"] { text-align: center; }
form .form-submit:after {
	content: " ";
	position: absolute;
	top: 43px;
	left: 20%;
	width: 80%;
	height: 48px;
	background: url(img/shadow-2.jpg) no-repeat;
	background-size: 100% 100%;
}
form input[type="submit"] {
	position: relative;
	background: var(--colorA);
	color: white;
	cursor: pointer;
}
form input[type="submit"]:hover { background: var(--colorB); }
form input[type="submit"][disabled] {
	background: var(--colorC);
	cursor: not-allowed;
}





/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ RESPONSIVE */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1600px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */




}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1280px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	


}






/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	
}





/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 800px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	header .A-flex { place-items: flex-start; }
	header nav { margin-top: 32px; }
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; }
	header nav ul li {
		display: block;
		margin: 6px 0px 12px 0;
	}
	
}





/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 640px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	
	.search-result-list li { margin-bottom: 32px; }
	.search-result-list li .img-placeholder,
	.search-result-list li img { display: none; }

	
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	

}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 320px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


}












.fontA { font-family: var(--fontA) !important; }
.fontB { font-family: var(--fontB) !important; }
