@charset "UTF-8";
/*!
Theme Name: Devocean Theme
Author: DevOcean
Author URI: https://devocean.gr/
Description: This is a starter theme for DevOcean Projects
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: devocean
*/
/**
* Color Palette 
* @type {Map}
* @property {Map} light - The light theme color palette
* @property {Map} dark - The dark theme color palette
* @note To add a new theme, add a new map with the theme name as the key
* and the color palette as the value.
*/
/**
* Generate color variables for each theme mode
*/
@font-face {
  font-family: "Commissioner";
  src: url("/wp-content/themes/devocean-theme/assets/fonts/Commissioner-Thin.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Play";
  src: url("/wp-content/themes/devocean-theme/assets/fonts/Play-Bold.woff2") format("woff2"), url("/wp-content/themes/devocean-theme/assets/fonts/Play-Bold.woff") format("woff"), url("/wp-content/themes/devocean-theme/assets/fonts/Play-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
:root {
  --neutral-color: #242424;
  --primary-color: #ffffff;
  --accent-color: #ed1c24;
  --text-color: #1f1f1f;
  --accent-light-color: #fde8e9;
  --neutral-light-color: #f2f2f2;
  --surface-dark-color: #1a1a1a;
  --text-inverse-color: #ffffff;
  --text-muted-color: #a3a3a3;
}

@media only screen and (min-width: 1400px) and (max-width: 1920px) {
  :root {
    --padding-inline-spacing: 110px;
    --padding-block-spacing: 40px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  :root {
    --padding-inline-spacing: 90px;
    --padding-block-spacing: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  :root {
    --padding-inline-spacing: 50px;
    --padding-block-spacing: 25px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --padding-inline-spacing: 30px;
    --padding-block-spacing: 30px;
  }
}
:root {
  --spacing-xxs: clamp(0.625rem, 0.597133758rem + 0.127388535vw, 0.75rem);
  --spacing-xs: clamp(0.75rem, 0.722133758rem + 0.127388535vw, 0.875rem);
  --spacing-s: clamp(0.875rem, 0.847133758rem + 0.127388535vw, 1rem);
  --spacing-rg: clamp(1rem, 0.9442675159rem + 0.2547770701vw, 1.25rem);
  --spacing-md: clamp(1.25rem, 1.1385350318rem + 0.5095541401vw, 1.75rem);
  --spacing-lg: clamp(1.5rem, 1.3885350318rem + 0.5095541401vw, 2rem);
  --spacing-xl: clamp(2rem, 1.7770700637rem + 1.0191082803vw, 3rem);
  --spacing-xxl: clamp(3rem, 2.7770700637rem + 1.0191082803vw, 4rem);
  --spacing-xxxl: clamp(4rem, 3.5541401274rem + 2.0382165605vw, 6rem);
  --spacing-xxxxl: clamp(6rem, 5.5541401274rem + 2.0382165605vw, 8rem);
}

:root {
  --font-family-heading: Manrope, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  --font-family-text: Manrope, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

:root {
  --struct-max-site: 1920px;
  --struct-max-content: 1440px;
  --struct-header-height: 80px;
  --struct-sidebar-width: 280px;
  --struct-radius-sm: 4px;
  --struct-radius-md: 8px;
  --struct-radius-lg: 16px;
  --struct-radius-round: 50%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption,
details,
summary,
blockquote,
dl,
dd,
dt,
menu,
menuitem,
picture,
canvas {
  display: block;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
figure,
dl,
dd,
ul,
ol,
li,
table,
fieldset,
legend,
textarea,
input,
button {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: normal;
}

p:empty {
  display: none;
}

ul,
ol {
  list-style: none;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  border-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  overflow: visible;
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

:focus:not(:focus-visible) {
  outline: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0;
}

svg,
img,
video,
canvas,
audio,
iframe,
embed,
object {
  vertical-align: middle;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

[hidden] {
  display: none;
}

[disabled] {
  pointer-events: none;
}

button[disabled],
input[disabled] {
  cursor: default;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

progress {
  vertical-align: baseline;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

small {
  font-size: 80%;
}

strong {
  font-weight: bold;
}

meter {
  vertical-align: baseline;
}

mark {
  background-color: transparent;
  color: inherit;
}

summary {
  display: list-item;
  cursor: pointer;
}

details {
  display: block;
}

template {
  display: none;
}

textarea {
  resize: vertical;
}

legend {
  display: table;
  max-width: 100%;
  white-space: normal;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

u,
ins {
  text-decoration: none;
}

s,
del {
  text-decoration: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

figure {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

ruby {
  display: inline-block;
}

rb,
rt,
rtc,
rp {
  display: none;
}

[hidden] {
  display: none !important;
}

picture {
  display: block;
}

[contenteditable]:focus {
  outline: auto;
}

:host {
  display: block;
}

slot {
  display: contents;
}

html,
body {
  height: 100%;
  margin: 0;
}
html *,
body * {
  box-sizing: border-box;
  font-family: var(--font-family-text);
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  main {
    overflow: initial;
  }
}

section {
  margin-bottom: clamp(50px, 8.3333333333vw, 160px);
}

.container {
  width: 100%;
  max-width: var(--struct-max-site, 1920px);
  margin-inline: auto;
  padding-inline: var(--padding-inline-spacing, 110px);
}
@media only screen and (max-width: 1279px) {
  .container {
    padding-inline: var(--padding-inline-spacing, 30px);
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding-inline: 20px;
  }
}

section.block.hero-slider-block {
  margin-bottom: 0;
}

section.block.about-with-logo-block {
  margin-bottom: 0;
}

section.block.about-with-logo-block + section.block.product-categories-block {
  margin-top: 0;
  padding-top: clamp(40px, 5vw, 72px);
}

main > section.block.product-categories-block:last-child {
  margin-bottom: 0;
  padding-bottom: clamp(40px, 5vw, 72px);
}

section.block.contact-block {
  margin-top: 0;
  padding-top: clamp(40px, 5vw, 72px);
}

@media (prefers-reduced-motion: no-preference) {
  section.block.block-reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  section.block.block-reveal.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  section.block.block-reveal:not(.is-revealed) .product-categories-block__card,
  section.block.block-reveal:not(.is-revealed) .about-with-logo-block__mark,
  section.block.block-reveal:not(.is-revealed) .about-with-logo-block__content,
  section.block.block-reveal:not(.is-revealed) .contact-block__form-col,
  section.block.block-reveal:not(.is-revealed) .contact-block__info-col,
  section.block.block-reveal:not(.is-revealed) .boxes-block__item {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  section.block.block-reveal.is-revealed .product-categories-block__card,
  section.block.block-reveal.is-revealed .about-with-logo-block__mark,
  section.block.block-reveal.is-revealed .about-with-logo-block__content,
  section.block.block-reveal.is-revealed .contact-block__form-col,
  section.block.block-reveal.is-revealed .contact-block__info-col,
  section.block.block-reveal.is-revealed .boxes-block__item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
  section.block.block-reveal.is-revealed .about-with-logo-block__content,
  section.block.block-reveal.is-revealed .contact-block__info-col {
    transition-delay: 0.12s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(1),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(1) {
    transition-delay: 0.08s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(2),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(2) {
    transition-delay: 0.18s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(3),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(3) {
    transition-delay: 0.28s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(4),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(4) {
    transition-delay: 0.38s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(5),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(5) {
    transition-delay: 0.48s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(6),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(6) {
    transition-delay: 0.58s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(7),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(7) {
    transition-delay: 0.68s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(8),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(8) {
    transition-delay: 0.78s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(9),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(9) {
    transition-delay: 0.88s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(10),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(10) {
    transition-delay: 0.98s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(11),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(11) {
    transition-delay: 1.08s;
  }
  section.block.block-reveal.is-revealed .product-categories-block__card:nth-child(12),
  section.block.block-reveal.is-revealed .boxes-block__item:nth-child(12) {
    transition-delay: 1.18s;
  }
}
@media (prefers-reduced-motion: reduce) {
  section.block.block-reveal {
    opacity: 1;
    transform: none;
  }
}
header.header {
  z-index: 1000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
header.header .main-navbar {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
  width: 100%;
  max-width: var(--struct-max-site, 1920px);
  margin: 0 auto;
  padding: clamp(16px, 2.5vh, 28px) var(--padding-inline-spacing, 110px);
  min-height: var(--struct-header-height, 80px);
}
@media only screen and (max-width: 1279px) {
  header.header .main-navbar {
    grid-template-columns: 1fr auto;
    padding: clamp(14px, 2vh, 20px) var(--padding-inline-spacing, 30px);
  }
}
@media only screen and (max-width: 767px) {
  header.header .main-navbar {
    padding: 14px 20px;
  }
}
header.header .main-navbar--left .custom-logo-link {
  display: block;
  width: clamp(120px, 11vw, 200px);
}
header.header .main-navbar--left img {
  width: 100%;
  height: auto;
  display: block;
}
header.header .main-navbar--center {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1279px) {
  header.header .main-navbar--center {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    pointer-events: none;
  }
  header.header .main-navbar--center nav.main-nav {
    pointer-events: auto;
  }
}
header.header .main-navbar--right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
}
header.header .header-tools {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
}
header.header .header-tools__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(20px, 2vw, 32px);
  border-radius: 999px;
  background-color: var(--accent-color, #ed1c24);
  color: var(--text-inverse-color, #fff);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
header.header .header-tools__cta:hover, header.header .header-tools__cta:focus-visible {
  background-color: #c9181f;
  color: var(--text-inverse-color, #fff);
}
header.header .header-tools__cta:active {
  transform: scale(0.98);
}
@media only screen and (max-width: 767px) {
  header.header .header-tools__cta {
    display: none;
  }
}
header.header .header-tools__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-inverse-color, #fff);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  header.header .header-tools__lang--desktop {
    display: none;
  }
}
header.header .header-tools__lang--mobile {
  display: none;
}
header.header .header-tools__lang-item {
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}
header.header .header-tools__lang-item.is-active {
  opacity: 1;
  color: var(--text-inverse-color, #fff);
}
header.header .header-tools__lang-item:hover {
  opacity: 1;
}
header.header .header-tools__lang-sep {
  opacity: 0.45;
}
header.header .burger-menu {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
header.header .burger-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background-color: var(--text-inverse-color, #fff);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.2s ease;
}
header.header .burger-line:nth-child(1) {
  transform: translateY(-8px);
}
header.header .burger-line:nth-child(2) {
  transform: translateY(0);
}
header.header .burger-line:nth-child(3) {
  transform: translateY(8px);
}
header.header .burger-menu.active .burger-line {
  background-color: var(--accent-color, #ed1c24);
}
header.header .burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
header.header .burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}
header.header .burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
header.header nav.main-nav {
  display: flex;
  justify-content: center;
}
header.header nav.main-nav ul.main-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 40px);
}
header.header nav.main-nav ul.main-nav__list li a {
  color: var(--text-inverse-color, #fff);
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s ease, opacity 0.2s ease;
}
header.header nav.main-nav ul.main-nav__list li.current-menu-item a,
header.header nav.main-nav ul.main-nav__list li a:hover,
header.header nav.main-nav ul.main-nav__list li a:focus-visible {
  color: var(--accent-color, #ed1c24);
}
@media (max-width: 1280px) {
  header.header .burger-menu {
    display: flex;
  }
  header.header nav.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(100%, 420px);
    height: 100vh;
    background-color: var(--surface-dark-color, #1a1a1a);
    padding: calc(var(--hh, 80px) + 24px) 30px 40px;
    transition: right 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }
  header.header nav.main-nav .header-tools__lang--mobile {
    display: inline-flex;
    margin-top: auto;
    padding-top: 28px;
    font-size: 15px;
  }
  header.header nav.main-nav.active {
    right: 0;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  }
  header.header nav.main-nav.active .main-nav__list li {
    opacity: 1;
    transform: translateY(0);
  }
  header.header nav.main-nav.active .header-tools__lang--mobile {
    opacity: 1;
    transform: translateY(0);
  }
  header.header nav.main-nav .header-tools__lang--mobile {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.35s ease;
    transition-delay: 0.42s;
  }
  header.header nav.main-nav ul.main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  header.header nav.main-nav ul.main-nav__list li {
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.35s ease;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(1) {
    transition-delay: 0.06s;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(2) {
    transition-delay: 0.12s;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(3) {
    transition-delay: 0.18s;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(4) {
    transition-delay: 0.24s;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(5) {
    transition-delay: 0.3s;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(6) {
    transition-delay: 0.36s;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(7) {
    transition-delay: 0.42s;
  }
  header.header nav.main-nav ul.main-nav__list li:nth-child(8) {
    transition-delay: 0.48s;
  }
  header.header nav.main-nav ul.main-nav__list li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }
}
header.header.scrolled {
  background-color: var(--surface-dark-color, #1a1a1a);
  border-bottom-color: var(--accent-color, #ed1c24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

body.has-solid-header header.header {
  background-color: var(--surface-dark-color, #1a1a1a);
  border-bottom-color: var(--accent-color, #ed1c24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

body.nav-active {
  overflow: hidden;
}

footer.footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: var(--surface-dark-color, #1a1a1a);
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 45%), radial-gradient(circle at 80% 0%, rgba(237, 28, 36, 0.08), transparent 35%), linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  color: var(--text-inverse-color, #fff);
}
footer.footer .container-main {
  width: 100%;
  max-width: var(--struct-max-site, 1920px);
  margin-inline: auto;
  padding-inline: var(--padding-inline-spacing, 110px);
}
@media only screen and (max-width: 1279px) {
  footer.footer .container-main {
    padding-inline: var(--padding-inline-spacing, 30px);
  }
}
@media only screen and (max-width: 767px) {
  footer.footer .container-main {
    padding-inline: 20px;
  }
}
footer.footer .footer-row--top {
  display: grid;
  grid-template-columns: minmax(160px, 1.1fr) minmax(160px, 1fr) minmax(160px, 1fr) minmax(180px, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(48px, 6vw, 80px);
}
@media only screen and (max-width: 1279px) {
  footer.footer .footer-row--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }
}
@media only screen and (max-width: 767px) {
  footer.footer .footer-row--top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 40px 32px;
  }
}
footer.footer .footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 24px);
  min-width: 0;
}
footer.footer .footer__col--brand .custom-logo-link {
  display: block;
  width: clamp(140px, 12vw, 220px);
}
footer.footer .footer__col--brand img {
  width: 100%;
  height: auto;
  display: block;
}
footer.footer .footer__col--important,
footer.footer .footer__col--policy {
  position: relative;
  padding-right: clamp(24px, 3vw, 48px);
}
footer.footer .footer__col--important::after,
footer.footer .footer__col--policy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: var(--accent-color, #ed1c24);
}
@media only screen and (max-width: 1279px) {
  footer.footer .footer__col--important,
  footer.footer .footer__col--policy {
    padding-right: 0;
  }
  footer.footer .footer__col--important::after,
  footer.footer .footer__col--policy::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  footer.footer .footer__col--policy {
    padding-right: 0;
  }
}
footer.footer .footer__col-title {
  font-family: var(--font-family-heading);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-inverse-color, #fff);
  margin: 0;
}
footer.footer .footer-important-nav,
footer.footer .footer-policy-nav {
  width: 100%;
}
footer.footer .footer-important-nav ul,
footer.footer .footer-policy-nav ul {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vh, 14px);
  margin: 0;
  padding: 0;
  list-style: none;
}
footer.footer .footer-important-nav li a,
footer.footer .footer-policy-nav li a {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}
footer.footer .footer-important-nav li a:hover, footer.footer .footer-important-nav li a:focus-visible,
footer.footer .footer-policy-nav li a:hover,
footer.footer .footer-policy-nav li a:focus-visible {
  color: var(--accent-color, #ed1c24);
}
footer.footer .footer__col--social .social-media {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer.footer .footer__col--social .social-media--item a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
footer.footer .footer__col--social .social-media--item a svg {
  width: 18px;
  height: 18px;
}
footer.footer .footer__col--social .social-media--item a:hover, footer.footer .footer__col--social .social-media--item a:focus-visible {
  border-color: var(--accent-color, #ed1c24);
  background-color: rgba(237, 28, 36, 0.12);
}
footer.footer .footer-row--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: clamp(18px, 2.5vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
@media only screen and (max-width: 767px) {
  footer.footer .footer-row--bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
footer.footer .footer__copyright-left p,
footer.footer .footer__copyright-right p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}
footer.footer .footer__copyright-right a {
  display: inline-flex;
  align-items: center;
}
footer.footer .footer__copyright-right a img {
  width: clamp(88px, 8vw, 110px);
  height: auto;
  display: block;
  transform: translateY(-3px);
}

body.error404 section.error {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 800px;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(20px, 5vw, 60px);
  padding: clamp(20px, 5vw, 110px);
}
body.error404 section.error .error__background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: -1;
  aspect-ratio: 1024/557;
}
body.error404 section.error .error__background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.error404 section.error .container .error__content .error__content-text h1 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: clamp(36px, 3.5vw, 60px);
  color: var(--neutral-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(10px, 1vw, 15px);
  max-width: 788px;
  width: 100%;
}
body.error404 section.error .container .error__content .error__content-text p {
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: clamp(24px, 2vw, 36px);
  color: rgb(31, 31, 31);
  text-align: center;
  max-width: 788px;
  width: 100%;
  font-weight: 300;
  margin-bottom: clamp(20px, 2vw, 30px);
}
body.error404 section.error .container .error__content .error__content-text a {
  margin: 0 auto;
}

body.page-template-simple main .container {
  padding: 0 clamp(20px, 5vw, 110px);
  max-width: 1105px;
  margin: 0 auto;
  margin-bottom: clamp(50px, 8.3333333333vw, 160px);
}
body.page-template-simple main .container h1 {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--accent-color);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
body.page-template-simple main .container .post-content h2 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: clamp(36px, 3.5vw, 60px);
  color: var(--neutral-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(10px, 1vw, 15px);
  width: 100%;
  margin-bottom: clamp(25px, 4vw, 50px);
}
body.page-template-simple main .container .post-content h3,
body.page-template-simple main .container .post-content h4 {
  font-size: clamp(16px, 1.5vw, 24px);
  color: var(--accent-color);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
}
body.page-template-simple main .container .post-content strong {
  font-weight: 600;
}
body.page-template-simple main .container .post-content em {
  font-style: italic;
}
body.page-template-simple main .container .post-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 20px 0;
  background-color: var(--accent-light);
  font-style: italic;
  color: rgb(31, 31, 31);
}
body.page-template-simple main .container .post-content blockquote p {
  margin: 0;
}
body.page-template-simple main .container .post-content p {
  font-size: clamp(16px, 1.5vw, 24px);
  color: rgb(31, 31, 31);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 20px;
}
body.page-template-simple main .container .post-content ul,
body.page-template-simple main .container .post-content ol {
  margin: 20px 0;
  padding-left: 25px;
}
body.page-template-simple main .container .post-content ul li,
body.page-template-simple main .container .post-content ol li {
  font-size: clamp(16px, 1.5vw, 24px);
  color: rgb(31, 31, 31);
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 300;
}
body.page-template-simple main .container .post-content ol {
  list-style-type: decimal;
}
body.page-template-simple main .container .post-content ul {
  list-style-type: disc;
}
body.page-template-simple main .container .post-content pre {
  background-color: var(--neutral-light);
  padding: 20px;
  border-radius: 4px;
  margin: 20px 0;
  overflow-x: auto;
}
body.page-template-simple main .container .post-content pre code {
  font-family: monospace;
  color: rgb(31, 31, 31);
  font-size: clamp(14px, 1.25vw, 20px);
}
body.page-template-simple main .container .post-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 4px;
}
body.page-template-simple main .container .post-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
body.page-template-simple main .container .post-content a:hover {
  color: rgb(31, 31, 31);
}
body.page-template-simple main .container .post-content a.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
body.page-template-simple main .container .post-content a.button:hover {
  background-color: rgb(31, 31, 31);
}
body.page-template-simple main .container .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
body.page-template-simple main .container .post-content table th,
body.page-template-simple main .container .post-content table td {
  padding: 12px;
  border: 1px solid var(--neutral-light);
  text-align: left;
  font-size: clamp(14px, 1.25vw, 20px);
}
body.page-template-simple main .container .post-content table th {
  background-color: var(--accent-light);
  color: rgb(31, 31, 31);
  font-weight: 500;
}
body.page-template-simple main .container .post-content table td {
  color: rgb(31, 31, 31);
}
body.page-template-simple main .container .post-content table tbody tr:nth-child(even) {
  background-color: var(--neutral-light);
}
body.page-template-simple main .container .post-content hr {
  border: none;
  height: 1px;
  background-color: var(--neutral-light);
  margin: 30px 0;
}

body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.single-product {
  background-color: #f5f2eb;
}

nav.breadcrumbs {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #f5f2eb;
  padding-top: calc(var(--hh, 80px) + clamp(24px, 3vh, 40px));
  padding-bottom: clamp(24px, 3vh, 40px);
  margin-bottom: 0;
  font-size: clamp(13px, 0.9vw, 15px);
  color: #6b6b6b;
}
nav.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
nav.breadcrumbs a:hover, nav.breadcrumbs a:focus-visible {
  color: var(--text-color, #1f1f1f);
}
nav.breadcrumbs .breadcrumb_last,
nav.breadcrumbs span.breadcrumb_last {
  color: var(--text-color, #1f1f1f);
  font-weight: 700;
}

body.has-solid-header main > nav.breadcrumbs + * {
  margin-top: 0;
}

.shop-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  min-height: clamp(220px, 28vw, 360px);
  overflow: hidden;
  background-color: var(--surface-dark-color, #1a1a1a);
}
.shop-hero > img, .shop-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.72) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.shop-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(220px, 28vw, 360px);
  padding-block: clamp(32px, 4vw, 56px);
  text-align: right;
  color: var(--text-inverse-color, #fff);
}
.shop-hero__title {
  margin: 0 0 clamp(10px, 1.2vw, 16px);
  max-width: 16ch;
  font-family: var(--font-family-heading);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.shop-hero__subtitle {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.woocommerce-main-wrapper {
  padding-block: 30px clamp(48px, 6vw, 96px);
}

.shop-section-title {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-family: var(--font-family-heading);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-color, #1f1f1f);
}

.shop-categories-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(8px, 1vw, 12px);
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: clamp(24px, 3vw, 36px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shop-categories-nav::-webkit-scrollbar {
  display: none;
}
.shop-categories-nav .category-tile {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px clamp(16px, 2vw, 24px);
  border: 1px solid var(--text-color, #1f1f1f);
  border-radius: 999px;
  background-color: transparent;
  color: var(--text-color, #1f1f1f);
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.shop-categories-nav .category-tile:hover, .shop-categories-nav .category-tile:focus-visible {
  border-color: var(--text-color, #1f1f1f);
  background-color: rgba(0, 0, 0, 0.06);
}
.shop-categories-nav .category-tile.is-active {
  background-color: var(--text-color, #1f1f1f);
  border-color: var(--text-color, #1f1f1f);
  color: var(--text-inverse-color, #fff);
}

.shop-loop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: clamp(14px, 1.5vw, 18px);
  margin-bottom: clamp(24px, 3vw, 36px);
  border-top: 1px solid #d8d4cb;
  border-bottom: 1px solid #d8d4cb;
}
@media only screen and (max-width: 767px) {
  .shop-loop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.woocommerce-result-count {
  margin: 0;
  font-size: clamp(13px, 0.9vw, 15px);
  color: #4a4a4a;
}

.woocommerce-ordering {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.woocommerce-ordering::before {
  content: "Ταξινόμηση κατά:";
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  color: var(--text-color, #1f1f1f);
  white-space: nowrap;
}
.woocommerce-ordering select {
  appearance: none;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231f1f1f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right center;
  padding: 0 22px 0 0;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  color: var(--text-color, #1f1f1f);
  cursor: pointer;
}
.woocommerce-ordering select:focus-visible {
  outline: 2px solid var(--accent-color, #ed1c24);
  outline-offset: 2px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 1279px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}
.woocommerce ul.products::before, .woocommerce ul.products::after {
  display: none;
}
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  margin: 0 !important;
  padding: 0;
  float: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.woocommerce ul.products li.product .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: clamp(14px, 1.2vw, 18px);
  margin-bottom: clamp(14px, 1.5vw, 18px);
  aspect-ratio: 4/3;
  background-color: #e8e4dc;
  text-decoration: none;
  color: inherit;
}
.woocommerce ul.products li.product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.woocommerce ul.products li.product:hover .image img, .woocommerce ul.products li.product:focus-within .image img {
  transform: scale(1.03);
}
.woocommerce ul.products li.product .card-meta {
  margin: 0 0 clamp(8px, 1vw, 12px);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-color, #1f1f1f);
}
.woocommerce ul.products li.product .card-meta a {
  color: inherit;
  text-decoration: none;
}
.woocommerce ul.products li.product .card-meta a:hover, .woocommerce ul.products li.product .card-meta a:focus-visible {
  color: var(--accent-color, #ed1c24);
}
.woocommerce ul.products li.product .card-desc {
  flex: 1;
  margin-bottom: clamp(16px, 2vw, 20px);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.55;
  color: #3a3a3a;
}
.woocommerce ul.products li.product .card-desc p {
  margin: 0;
}
.woocommerce ul.products li.product a.button.request-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 20px;
  border: 1px solid var(--text-color, #1f1f1f);
  border-radius: 999px;
  background-color: #f5f2eb;
  color: var(--text-color, #1f1f1f);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.woocommerce ul.products li.product a.button.request-quote:hover, .woocommerce ul.products li.product a.button.request-quote:focus-visible {
  background-color: var(--text-color, #1f1f1f);
  border-color: var(--text-color, #1f1f1f);
  color: var(--text-inverse-color, #fff);
}
.woocommerce ul.products li.product .low-stock-badge,
.woocommerce ul.products li.product .new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: clamp(40px, 5vw, 64px);
}
.woocommerce nav.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers a,
.woocommerce nav.woocommerce-pagination ul.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #d8d4cb;
  border-radius: 999px;
  background-color: transparent;
  color: var(--text-color, #1f1f1f);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers a:hover,
.woocommerce nav.woocommerce-pagination ul.page-numbers a:focus-visible,
.woocommerce nav.woocommerce-pagination ul.page-numbers span.current {
  background-color: var(--text-color, #1f1f1f);
  border-color: var(--text-color, #1f1f1f);
  color: var(--text-inverse-color, #fff);
}

.featured-products {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid #d8d4cb;
}
.featured-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.featured-products__header .shop-section-title {
  margin: 0;
}
.featured-products__nav {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.featured-products__nav .slick-arrow {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--text-color, #1f1f1f);
  border-radius: 10px;
  background-color: transparent;
  color: var(--text-color, #1f1f1f);
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.featured-products__nav .slick-arrow::before {
  font-size: 18px;
  line-height: 1;
  opacity: 1;
  color: inherit;
}
.featured-products__nav .slick-arrow:hover, .featured-products__nav .slick-arrow:focus-visible {
  background-color: var(--text-color, #1f1f1f);
  border-color: var(--text-color, #1f1f1f);
  color: var(--text-inverse-color, #fff);
}
.featured-products__nav .slick-arrow.slick-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.featured-products .featured-products-slider {
  margin: 0;
}
.featured-products .featured-products-slider .slick-list {
  margin: 0 clamp(-10px, -1vw, -16px);
}
.featured-products .featured-products-slider .slick-slide > li.product {
  margin: 0 clamp(10px, 1vw, 16px);
}

body.single-product .woocommerce-main-wrapper {
  padding-block: 0 clamp(64px, 8vw, 120px);
}
body.single-product .product-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  padding-block: clamp(24px, 3vw, 48px) clamp(40px, 5vw, 72px);
}
@media only screen and (max-width: 1279px) {
  body.single-product .product-row {
    grid-template-columns: 1fr;
  }
}
body.single-product .product-images {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: clamp(20px, 2.5vw, 36px);
  overflow: hidden;
  background-color: #e8e4dc;
}
body.single-product .product-images > img,
body.single-product .product-images > .single-product-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.single-product .product-images .product-images-slider {
  position: absolute;
  inset: 0;
}
body.single-product .product-images .product-images-slider .slick-list,
body.single-product .product-images .product-images-slider .slick-track,
body.single-product .product-images .product-images-slider .slick-slide,
body.single-product .product-images .product-images-slider .slick-slide > div,
body.single-product .product-images .product-images-slider .product-images-slide {
  height: 100%;
}
body.single-product .product-images .product-images-slider .slick-list,
body.single-product .product-images .product-images-slider .slick-track {
  border-radius: inherit;
}
body.single-product .product-images .product-images-slider .product-images-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.single-product .product-images .product-images-slider .slick-arrow {
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
body.single-product .product-images .product-images-slider .slick-arrow::before {
  color: var(--text-color, #1f1f1f);
  opacity: 1;
}
body.single-product .product-images .product-images-slider .slick-arrow.slick-prev {
  left: clamp(12px, 1.5vw, 20px);
}
body.single-product .product-images .product-images-slider .slick-arrow.slick-next {
  right: clamp(12px, 1.5vw, 20px);
}
body.single-product .product-images .product-images-slider .slick-dots {
  bottom: clamp(12px, 1.5vw, 20px);
}
body.single-product .product-images .product-images-slider .slick-dots li button::before {
  color: #fff;
  opacity: 0.55;
  font-size: 10px;
}
body.single-product .product-images .product-images-slider .slick-dots li.slick-active button::before {
  opacity: 1;
}
body.single-product .summary.entry-summary {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  padding-top: clamp(8px, 1vw, 16px);
}
body.single-product .summary.entry-summary .product_title {
  margin: 0;
  font-family: var(--font-family-heading);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-color, #1f1f1f);
}
body.single-product .summary.entry-summary .short-desc {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: #4a4a4a;
}
body.single-product .summary.entry-summary .short-desc p {
  margin: 0 0 1em;
}
body.single-product .summary.entry-summary .short-desc p:last-child {
  margin-bottom: 0;
}
body.single-product .summary.entry-summary a.button.request-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-top: clamp(8px, 1vw, 16px);
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  background-color: var(--accent-color, #ed1c24);
  color: var(--text-inverse-color, #fff);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
body.single-product .summary.entry-summary a.button.request-quote:hover, body.single-product .summary.entry-summary a.button.request-quote:focus-visible {
  background-color: #c9151c;
  color: var(--text-inverse-color, #fff);
}
body.single-product .product-description-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(40px, 5vw, 72px);
  padding: clamp(40px, 5vw, 72px) var(--padding-inline-spacing, 110px);
  border-radius: clamp(24px, 3vw, 40px);
  background-color: var(--surface-dark-color, #1a1a1a);
  color: var(--text-inverse-color, #fff);
}
body.single-product .product-description-section__inner {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 2px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  max-width: var(--struct-max-site, 1920px);
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  body.single-product .product-description-section__inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 2.5vw, 32px);
  }
}
body.single-product .product-description-section__label h2 {
  margin: 0;
  font-family: var(--font-family-heading);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-inverse-color, #fff);
}
body.single-product .product-description-section__divider {
  width: 2px;
  min-height: 100%;
  background-color: var(--accent-color, #ed1c24);
}
@media only screen and (max-width: 1279px) {
  body.single-product .product-description-section__divider {
    display: none;
  }
}
body.single-product .product-description-section__content {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
body.single-product .product-description-section__content p {
  margin: 0 0 1.25em;
}
body.single-product .product-description-section__content p:last-child {
  margin-bottom: 0;
}
body.single-product .product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
}
@media only screen and (max-width: 1279px) {
  body.single-product .product-specs {
    grid-template-columns: 1fr;
  }
}
body.single-product .product-specs-title {
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  font-family: var(--font-family-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-color, #1f1f1f);
}
body.single-product .product-specs-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid #d8d4cb;
  font-size: clamp(13px, 0.9vw, 14px);
  font-weight: 500;
  color: #8a8a8a;
}
body.single-product .product-specs-list--table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  margin: 0;
  padding: 0;
}
body.single-product .product-specs-list--table dt,
body.single-product .product-specs-list--table dd {
  margin: 0;
  padding: clamp(14px, 1.5vw, 18px) 0;
  border-bottom: 1px solid #d8d4cb;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.4;
}
body.single-product .product-specs-list--table dt {
  font-weight: 600;
  color: var(--text-color, #1f1f1f);
}
body.single-product .product-specs-list--table dd {
  font-weight: 400;
  color: #3a3a3a;
}
body.single-product .product-characteristics-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.single-product .product-characteristics-list li {
  padding: clamp(14px, 1.5vw, 18px) 0;
  border-bottom: 1px solid #d8d4cb;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color, #1f1f1f);
}
body.single-product .product-characteristics-list li:first-child {
  padding-top: 0;
}
body.single-product .product-storage-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  padding: clamp(16px, 2vw, 24px) 0;
  margin-bottom: clamp(8px, 1vw, 16px);
  border-top: 1px solid #d8d4cb;
  border-bottom: 1px solid #d8d4cb;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.4;
}
body.single-product .product-storage-bar__label {
  font-weight: 600;
  color: var(--text-color, #1f1f1f);
}
body.single-product .product-storage-bar__value {
  font-weight: 400;
  color: #6b6b6b;
}
body.single-product .featured-products {
  border-top: 0;
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(24px, 3vw, 40px);
}

body.page-template-contact,
body.page-slug-epikoinonia {
  background-color: #f5f2eb;
}
body.page-template-contact .contact-block,
body.page-slug-epikoinonia .contact-block {
  min-height: auto;
  max-height: none;
  overflow: visible;
  padding-top: 0;
  padding-bottom: clamp(40px, 6vw, 64px);
}
@media only screen and (min-width: 1280px) {
  body.page-template-contact .contact-block,
  body.page-slug-epikoinonia .contact-block {
    padding-bottom: clamp(48px, 6vw, 80px);
  }
}
body.page-template-contact .contact-block__inner,
body.page-slug-epikoinonia .contact-block__inner {
  min-height: auto;
}
body.page-template-contact .contact-block.block-reveal, body.page-template-contact .contact-block.block-reveal.is-revealed,
body.page-slug-epikoinonia .contact-block.block-reveal,
body.page-slug-epikoinonia .contact-block.block-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

body.page-template-inner-page,
body.page-slug-trofodosies-katastimaton,
body.page-slug-synergasies {
  background-color: #f5f2eb;
}
