/* ================================================================
   site.css  —  Anatomic Line
   1:1 visual match of the old ecommercen-powered site, mapped
   to the BEM class names used in the Classic ASP templates.

   Fonts loaded via Google Fonts (Roboto) in header.asp.
   Bootstrap 4.6.2 loaded from CDN in header.asp.
   Font Awesome 5.10.2 loaded from CDN in header.asp.
================================================================ */


/* ── 1. CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --color-primary:       #404040;
  --color-primary-hover: #4d4d4d;
  --color-accent:        #008c44;
  --color-accent-light:  #58ba49;
  --color-text:          #273444;
  --color-text-muted:    #8492a6;
  --color-body:          #8492a6;
  --color-border:        #e0e6ed;
  --color-border-header: #eaeaea;
  --color-bg:            #fff;
  --color-bg-alt:        #efeff1;
  --color-bg-nav:        #f2f2f2;
  --font-base: 'LatoWeb', 'Lato', -apple-system, BlinkMacSystemFont,
             "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --header-h:            110px;
  --header-h-mob:        90px;
  --nav-w:               280px;
  --radius:              .25rem;
  --shadow-sm:           0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
  --transition:          all .3s ease-in-out;
}


/* ── 2. BASE RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size:   1rem;
  font-weight: 400;
  line-height: 1.7;
  color:       var(--color-body);
  text-align:  left;
  background:  var(--color-bg);
}

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

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); text-decoration: none; }

h1,h2,h3,h4,h5,h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

p { margin-top: 0; margin-bottom: 1rem; }

/* Tables inside product descriptions */
table.template1,
.prod-detail__desc table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin: 1rem 0;
  border: 1px solid #008c44;
}
table.template1 th,
table.template1 td,
.prod-detail__desc table th,
.prod-detail__desc table td {
  padding: .4rem .75rem;
  border: 1px solid #008c44;
}
table.template1 th,
.prod-detail__desc table th { background: var(--color-bg-alt); font-weight: 600; }
table.template1 tr:first-child td,
table.template1 tr:first-child th,
.prod-detail__desc table tr:first-child td,
.prod-detail__desc table tr:first-child th {
  border-top: 1px solid #008c44;
}


/* ── 3. SITE WRAPPER & PAGE MAIN ────────────────────────────── */
.site-wrapper {
  display:        flex;
  flex-direction: column;
  min-height:     100vh;
}

.page-main {
  flex: 1;
}

/* Desktop: no margin — header overlays the hero image.
   Mobile:  margin pushes content below fixed header. */
@media (max-width: 991px) {
  .page-main { margin-top: 75px; }
}


/* ── 4. SITE HEADER ─────────────────────────────────────────── */

/* Desktop: header floats OVER the hero (position absolute, 91% width, centered) */
.site-header {
  position:   absolute;
  top:        60px;
  left:       0;
  right:      0;
  width:      91%;
  margin:     0 auto;
  background: transparent;
  z-index:    1000;
  color:      #fff;
  transition: var(--transition);
}

/* On scroll: JS adds .is-scrolled — header rises, logo bar goes solid white */
.site-header.is-scrolled {
  top: -25px;
}
.site-header.is-scrolled .site-header__logo-nav {
  background: #fff;
}

/* Mobile: fixed full-width bar at top */
@media (max-width: 991px) {
  .site-header {
    position: fixed;
    top:      0;
    width:    100%;
    max-width: 100%;
    background: #fff;
  }
  .site-header.is-scrolled { top: 0; }
}

/* Top row: info bar — transparent on desktop, sits above the logo bar */
.site-header__toprow {
  display:         flex;
  align-items:     center;
  justify-content: flex-end;
  gap:             0;
  padding:         5px 15px;
  font-size:       15px;
  background:      transparent;
}

/* Search form inside top row — wider, centered-ish (old: width 25%, right 30%) */
.site-header__toprow .search-form {
  flex:      0 0 25%;
  max-width: 320px;
  margin:    0;
}

/* Search in top row: standard gray border (not green) to match old screenshot */
.site-header__toprow .search-form__input {
  border:       1px solid #999;
  border-right: none;
  background:   #fff;
}
.site-header__toprow .search-form__btn {
  border:     1px solid #999;
  border-left: none;
  background: #fff;
  color:      #666;
}
.site-header__toprow .search-form__btn:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: #fff;
}

/* Language flags */
.site-header__lang-switch {
  display: flex;
  gap: 0;
  align-items: center;
}
.lang-flag {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
}
.lang-flag img {
  display: block;
  max-width: 25px;
  height: auto;
}

/* Contact links — white text on transparent header to match old screenshot */
.site-header__contact {
  display: flex;
  gap: 0;
}
.site-header__contact-link {
  color:        green;
  font-size:    15px;
  font-weight:  400;
  padding-left:  15px;
  padding-right: 15px;
}
.site-header__contact-link:last-child { padding-right: 0; }
.site-header__contact-link:hover { color: var(--color-accent-light); }

/* When scrolled, contact links turn green (visible on white bg) */
.site-header.is-scrolled .site-header__contact-link { color: green; }

/* Row 2: Logo + Nav — semi-transparent white background */
.site-header__logo-nav {
  display:     flex;
  align-items: center;
  padding:     15px;
  gap:         0;
  float:       left;
  width:       100%;
  min-height:  110px;
  position:    relative;
  background:  hsla(0,0%,100%,.8);
  transition:  var(--transition);
}
@media (min-width: 768px) {
  .site-header__logo-nav { padding: 10px; }
}
@media (min-width: 992px) {
  .site-header__logo-nav { padding: 3px 15px; }
}

/* Mobile: solid white, centered logo */
@media (max-width: 991px) {
  .site-header__logo-nav {
    float: none;
    text-align: center;
    padding: 5px;
    background: #fff;
  }
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  float: left;
  max-width: 200px;
  padding: 0;
  margin: -14px -14px -14px 0;
}
.site-header__logo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Mobile: center the logo */
@media (max-width: 991px) {
  .site-header__logo {
    float: none;
    display: inline-block;
    width: 150px;
    max-width: 100%;
    padding: 0;
    margin: auto;
  }
  .site-header__logo-img { max-width: 150px; }
}

/* Search form (general styling) */
.search-form {
  display:   flex;
  flex:      1;
  max-width: 600px;
  margin:    0;
  position:  relative;
}
.search-form__input {
  flex:         1;
  border:       2px solid var(--color-accent-light);
  border-right: none;
  border-radius: 0;
  padding:      .45rem .85rem;
  font-size:    .9rem;
  outline:      none;
  transition:   border-color .2s;
  color:        #000;
  box-shadow:   none;
}
.search-form__input:focus { border-color: var(--color-accent); }
.search-form__btn {
  border:        2px solid var(--color-accent-light);
  border-left:   none;
  background:    var(--color-accent-light);
  color:         #fff;
  padding:       .45rem .9rem;
  border-radius: 0;
  cursor:        pointer;
  transition:    background .2s;
}
.search-form__btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Hamburger nav-toggle */
.nav-toggle {
  display:    none;
  width:      36px;
  height:     28px;
  margin-right: 10px;
  position:   relative;
  cursor:     pointer;
  background: none;
  border:     none;
  padding:    0;
  flex-shrink: 0;
  z-index:    2001;
  transition: var(--transition);
}
.nav-toggle__bar {
  display:    block;
  position:   absolute;
  left:       0;
  width:      100%;
  height:     4px;
  background: #010101;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-toggle__bar:nth-child(1) { top: 0; }
.nav-toggle__bar:nth-child(2) { top: 12px; }
.nav-toggle__bar:nth-child(3) { bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(12px) rotate(-45deg);
  background: #fff;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
  background: #fff;
}

/* Mobile: show hamburger, hide top row */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
    position: fixed;
    top: 30px;
    right: 15px;
    z-index: 10000;
  }
  .site-header__toprow { display: none; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-toggle { top: 40px; }
}


/* ── 5. MAIN NAVIGATION ─────────────────────────────────────── */

/* Desktop (≥992px): flexbox layout — each item's width follows its own text,
   with the SAME padding on every link, so the visual gap around every
   menu item (HOME, PRODUCTS, ABOUT US, SECURITY & PRIVACY, CONTACT US)
   feels consistent instead of some items being stretched and others cramped. */
@media (min-width: 992px) {
  .main-nav {
    position:   absolute;
    right:      0;
    top:        0;
    bottom:     0;
    height:     100%;
    width:      auto;
    max-width:  calc(100% - 220px); /* leaves room for the logo */
    background: transparent;
  }
  .main-nav__list {
    display:      flex;
    align-items:  stretch;
    justify-content: flex-end;
    height:       100%;
    list-style:   none;
    margin:       0;
    padding:      0;
    border-right: 1px solid #fff;
    border-left:  1px solid #fff;
  }
  .main-nav__item {
    display:        flex;
    align-items:    center;
    justify-content: center;
    flex:           0 0 auto;
    height:         100%;
    text-align:     center;
    border-right:   1px solid #000;
    transition:     var(--transition);
    position:       relative;
  }
  .main-nav__item:first-child { border-left: 1px solid #000; }
  .main-nav__item:last-child  { border-right: 0; }

  .main-nav__item:hover { background: #fff; }
  .main-nav__item:hover .main-nav__link { color: var(--color-accent); }

  .main-nav__link {
    display:   flex;
    align-items:     center;
    justify-content: center;
    height:       100%;
    gap:          .35rem;
    /* equal padding on every item — bigger text simply pushes its own
       item wider, keeping the breathing room around each label even */
    padding:      0 clamp(14px, 1.7vw, 28px);
    font-size:    clamp(.78rem, .95vw, .875rem);
    font-weight:  600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color:        #000;
    white-space:  nowrap;
    transition:   color .2s, background .2s;
  }
  .main-nav__arrow { font-size: .6rem; transition: transform .25s; display: none; }
}

/* Narrower desktop / small laptop: tighten padding & font a touch so five
   items (incl. the long "SECURITY & PRIVACY") never wrap or overflow */
@media (min-width: 992px) and (max-width: 1199px) {
  .main-nav__link {
    padding:   0 clamp(10px, 1.4vw, 18px);
    font-size: .78rem;
  }
}

/* Desktop mega-dropdown */
@media (min-width: 992px) {
  .main-nav__dropdown {
    position:    fixed;
    top:         115px;
    left:        0;
    right:       0;
    margin:      0 auto;
    max-width:   90%;
    width:       100%;
    background:  var(--color-bg);
    border:      1px solid grey;
    box-shadow:  none;
    border-radius: 0;
    z-index:     200;
    padding:     15px 15px 10px;
    visibility:  hidden;
    opacity:     0;
    height:      0;
    overflow:    hidden;
    transition:  all .2s ease-in-out;
    transition-delay: 0s;
  }
  .main-nav__item--has-dropdown:hover .main-nav__dropdown {
    visibility: hidden;
    opacity:    0;
    height:     0;
    overflow:   hidden;
  }
  .main-nav__item--has-dropdown:hover .main-nav__arrow {
    transform: rotate(180deg);
  }

  .main-nav__dropdown-list {
    list-style:  none;
    margin:      0;
    padding:     0;
    display:     flex;
    flex-wrap:   wrap;
  }
  .main-nav__dropdown-item {
    width: 16.6667%;
    padding: 0;
  }
  .main-nav__dropdown-item + .main-nav__dropdown-item { border-top: none; }

  .main-nav__dropdown-link {
    display:     block;
    float:       left;
    width:       100%;
    padding:     0 10px 5px 0;
    font-size:   14px;
    font-weight: 600;
    color:       var(--color-primary);
    line-height: 16px;
    letter-spacing: .3px;
    text-align:  left;
    transition:  var(--transition);
  }
  .main-nav__dropdown-link:hover {
    color: var(--color-primary-hover);
  }

  /* "All categories" link at bottom — full-width dark bar */
  .main-nav__dropdown-item--all {
    width: 100%;
    margin-top: 15px;
  }
  .main-nav__dropdown-item--all .main-nav__dropdown-link {
    float:       left;
    width:       100%;
    background:  var(--color-primary-hover);
    font-size:   16px;
    font-weight: 600;
    color:       #fff;
    padding:     10px;
    text-align:  center;
  }
  .main-nav__dropdown-item--all .main-nav__dropdown-link:hover {
    background:  grey;
    color:       #fff;
  }

  .main-nav__dropdown-close { display: none; }
}


/* Mobile Nav (≤991px): off-canvas from right */
@media (max-width: 991px) {
  .main-nav {
    position:   fixed;
    left:       0;
    top:        0;
    bottom:     0;
    width:      100%;
    height:     100%;
    background: rgba(0,0,0,.92);
    overflow-y: auto;
    overflow-x: hidden;
    z-index:    9999;
    transition: var(--transition);
    box-shadow: none;
    opacity:    0;
    visibility: hidden;
  }
  .main-nav.is-open {
    opacity:    1;
    visibility: visible;
  }
  .main-nav__list {
    list-style:     none;
    display:        block;
    margin:         60px 0 0;
    padding:        20px;
    text-align:     center;
    width:          100%;
  }
  .main-nav__item {
    float:   left;
    width:   100%;
    position: relative;
  }
  .main-nav__link {
    display:       block;
    float:         left;
    width:         100%;
    padding:       .8rem 1.25rem;
    border-bottom: none;
    font-size:     1.1rem;
    font-weight:   600;
    color:         #fff;
    text-transform: uppercase;
    transition:    var(--transition);
  }
  .main-nav__link:hover {
    background: transparent;
    color:      #fff;
    text-decoration: none;
  }
  .main-nav__arrow {
    display:    inline-block !important;
    visibility: visible !important;
    color:      #fff;
    font-size:  14px;
    margin-left: 10px;
    transition: transform .25s;
    opacity:    1 !important;
  }
  .main-nav__item--has-dropdown.is-open .main-nav__arrow {
    transform: rotate(180deg);
  }

  /* Dropdown: hidden by default, shown on click */
  .main-nav__dropdown {
    position:    static;
    opacity:     0;
    visibility:  hidden;
    width:       100%;
    height:      0;
    overflow:    hidden;
    background:  transparent;
    display:     block;
    transition:  var(--transition);
  }
  .main-nav__item--has-dropdown.is-open .main-nav__dropdown {
    visibility: visible;
    opacity:    1;
    height:     auto;
    overflow:   visible;
  }

  .main-nav__dropdown-close { display: none; }
  .main-nav__dropdown-list {
    list-style: none;
    margin:     0;
    padding:    0;
  }
  .main-nav__dropdown-item + .main-nav__dropdown-item {
    border-top: none;
  }
  .main-nav__dropdown-link {
    display:       block;
    width:         100%;
    color:         #fff;
    padding:       .8rem 1.25rem;
    font-size:     1.1rem;
    font-weight:   600;
    text-transform: uppercase;
    border-bottom: none;
    transition:    var(--transition);
  }
  .main-nav__dropdown-link:hover {
    background: transparent;
    color:      #fff;
    text-decoration: none;
  }
  .main-nav__dropdown-item--all { display: none; }
}


/* Nav overlay (mobile) */
.nav-overlay {
  position:   fixed;
  inset:      0;
  background: rgba(0,0,0,.45);
  z-index:    102;
  opacity:    0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }


/* ── 6. BREADCRUMBS ─────────────────────────────────────────── */
.breadcrumbs {
  padding: 5px;
  margin-bottom: 0;
  background: rgba(198,190,190,.13);
  border: 0;
  border-radius: 35px;
  position: relative;
  top: 10px;
}
@media (min-width: 992px) {
  .breadcrumbs { margin-top: 260px; }
}
@media (max-width: 991px) {
  .breadcrumbs {
    background: rgba(198, 190, 190, 0.18);
    border-radius: 8px;
    top: 0;
    margin: 1.5rem 1rem 1rem;
    padding: 0.6rem 1rem;
    font-size: 13px;
  }
  .breadcrumbs a,
  .breadcrumbs span,
  .breadcrumbs__item,
  .breadcrumbs__item a,
  .breadcrumbs__item--active { color: #444 !important; }
}

.breadcrumbs__list {
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-wrap:       wrap;
  list-style:      none;
  margin:          0;
  padding:         0;
  font-size:       .875rem;
  font-style:      italic;
  text-transform:  lowercase;
  color:           var(--color-text-muted);
  gap:             0;
}
.breadcrumbs__item + .breadcrumbs__item { padding-left: .5rem; }
.breadcrumbs__item a { color: var(--color-text-muted); }
.breadcrumbs__item a:hover { color: var(--color-accent); }
.breadcrumbs__item--active { color: #c0ccda; font-weight: 500; }
.breadcrumbs__sep {
  display: inline-block;
  padding-right: .5rem;
  color: var(--color-border);
  font-size: .8rem;
}


/* ── 7. HERO SLIDER ─────────────────────────────────────────── */
.hero-slider {
  position:      relative;
  overflow:      hidden;
  border-bottom: 5px solid var(--color-accent);
}

/* Mobile: push below fixed header */
@media (max-width: 1023px) {
  .hero-slider { margin-top: 0; }
}

.hero-slider__item { position: relative; display: block; }
.hero-slider__img  { width: 100%; display: block; object-fit: cover; }

.hero-slider__caption {
  display:      block;
  position:     absolute;
  left:         0;
  right:        0;
  margin:       0 auto;
  width:        100%;
  padding-left:  15px;
  padding-right: 15px;
  max-width:    768px;
  top:          50%;
  transform:    translateY(-50%);
  color:        green;
  text-align:   center;
  bottom:       auto;
  z-index:      2;
}

.hero-slider__title {
  font-size:   80px;
  float:       left;
  width:       100%;
  margin:      0 0 15px;
  color:       green;
  line-height: 1;
}

.hero-slider__subtitle {
  display:     block;
  color:       var(--color-accent);
  font-size:   80px;
  font-weight: 300;
  margin:      0;
  line-height: 1;
}

@media (max-width: 1199px) {
  .hero-slider__caption {
    top:       auto;
    bottom:    50px;
    transform: none;
  }
  .hero-slider__title { font-size: 35px; margin: 0; }
}

@media (max-width: 767px) {
  .hero-slider__caption { bottom: 15px; }
  .hero-slider__title    { font-size: 25px; }
  .hero-slider__subtitle { font-size: 20px; }
}

/* Vanilla fade slider */
.hero-slider--ready {
  display: grid;
}
.hero-slider--ready .hero-slider__item {
  grid-area:      1 / 1;
  opacity:        0;
  transition:     opacity .7s ease;
  pointer-events: none;
}
.hero-slider--ready .hero-slider__item.is-active {
  opacity:        1;
  z-index:        1;
  pointer-events: auto;
}

/* Dot indicators */
.hero-slider__dots {
  position:  absolute;
  bottom:    1rem;
  left:      50%;
  transform: translateX(-50%);
  z-index:   10;
  display:   flex;
  gap:       .5rem;
}
.hero-slider__dot {
  width:         10px;
  height:        10px;
  border-radius: 50%;
  background:    rgba(255,255,255,.4);
  border:        2px solid rgba(255,255,255,.75);
  cursor:        pointer;
  padding:       0;
  transition:    background .3s;
}
.hero-slider__dot.is-active { background: #fff; }


/* ── 8. CATEGORY CAROUSEL ───────────────────────────────────── */
.cat-carousel {
  margin-top:    45px;
  margin-bottom: 45px;
}
.cat-carousel__heading {
  text-align:    center;
  font-size:     40px;
  font-weight:   300;
  margin:        0 0 45px;
  padding:       0;
  color:         var(--color-text);
}
@media (max-width: 576px) {
  .cat-carousel__heading { font-size: 25px; }
}

.cat-carousel__track {
  display: flex;
  gap:     0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
  scrollbar-width: none;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-carousel__track::-webkit-scrollbar { display: none; }

.cat-carousel__item {
  flex:             0 0 25%;
  scroll-snap-align: start;
  text-align:       center;
  padding-left:     0;
  padding-right:    0;
  position:         relative;
}

/* Gradient overlay on category images (matches old site) */
.cat-carousel__item a {
  display:  block;
  float:    left;
  width:    100%;
  position: relative;
  overflow: hidden;
  z-index:  3;
}
.cat-carousel__item a::before {
  content:    '';
  position:   absolute;
  left:       0;
  width:      100%;
  top:        0;
  bottom:     0;
  height:     100%;
  z-index:    1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.12) 52%,
    rgba(0,0,0,.35) 100%
  );
  transition: var(--transition);
}
.cat-carousel__item a:hover::before { opacity: 0; }

.cat-carousel__img {
  width:       100%;
  display:     block;
  transition:  transform .4s ease;
}
.cat-carousel__item:hover .cat-carousel__img { transform: scale(1.08); }

.cat-carousel__label {
  position:       absolute;
  line-height:    1;
  left:           0;
  right:          0;
  top:            50%;
  transform:      translateY(-50%);
  margin:         0 auto;
  padding:        0 10px;
  color:          green;
  font-size:      28px;
  font-weight:    600;
  text-shadow:    1px 1px #000;
  text-align:     center;
  text-transform: uppercase;
  z-index:        2;
}

@media (max-width: 767px) {
  .cat-carousel__item { flex: 0 0 50%; }
  .cat-carousel__label { font-size: 20px; }
  .cat-carousel { width: 100%; max-width: 100%; }
}

/* Nav arrows (injected by JS) */
.cat-carousel__nav-wrap { position: relative; }
.cat-carousel__btn {
  position:      absolute;
  top:           50%;
  transform:     translateY(-50%);
  z-index:       2;
  width:         36px;
  height:        36px;
  border-radius: 50%;
  border:        1px solid var(--color-border);
  background:    var(--color-bg);
  color:         var(--color-text);
  font-size:     1.35rem;
  line-height:   1;
  display:       flex;
  align-items:   center;
  justify-content: center;
  cursor:        pointer;
  box-shadow:    0 2px 8px rgba(0,0,0,.1);
  transition:    background .2s, color .2s, border-color .2s;
}
.cat-carousel__btn:hover        { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.cat-carousel__btn:disabled     { opacity: .3; cursor: default; pointer-events: none; }
.cat-carousel__btn--prev        { left:  -18px; }
.cat-carousel__btn--next        { right: -18px; }
@media (max-width: 767px) {
  .cat-carousel__btn {
    width:      30px;
    height:     30px;
    font-size:  1.1rem;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    z-index: 10;
  }
  .cat-carousel__btn--prev { left:  4px; }
  .cat-carousel__btn--next { right: 4px; }
}


/* ── 9. BODY SELECTOR (interactive diagram) ────────────────── */
.body-selector {
  background:    #fff;
  position:      relative;
  border-bottom: 40px solid var(--color-accent);
  margin-bottom: 45px;
}
.body-selector__inner {
  position: relative;
  z-index:  1;
  display:  block;
}
.body-selector__img { width: 100%; display: block; }

/* Caption: positioned on the RIGHT side of the image (matching old site) */
.body-selector__caption {
  position:  absolute;
  right:     10%;
  top:       15%;
  width:     20%;
  z-index:   2;
}
@media (min-width: 577px) and (max-width: 767px) {
  .body-selector__caption { right: 5%; width: 25%; }
}

.body-selector__caption span { display: block; line-height: 1; }

.body-selector__choose {
  font-size:   60px;
  font-weight: 700;
  color:       var(--color-accent);
  margin:      0 0 10px;
}
@media (max-width: 767px) {
  .body-selector__choose { font-size: 20px; }
}

.body-selector__right {
  font-size:   50px;
  font-weight: 700;
  color:       #010101;
  margin:      0 0 10px;
}
@media (max-width: 767px) {
  .body-selector__right { font-size: 18px; }
}

.body-selector__caption p {
  font-size:   20px;
  color:       #010101;
  margin:      0;
  display:     block;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .body-selector__caption p { font-size: 14px; }
}
@media (max-width: 576px) {
  .body-selector__caption p { display: none; }
}

/* Dots — positioned within .body-selector__inner.
   The old site used a sub-container (.mid-dots-col) at left:31%, width:37%.
   Dot positions below are calculated to match: containerLeft + (dotLeft * containerWidth) */
.body-selector__dot {
  position:      absolute;
  width:         25px;
  height:        25px;
  z-index:       2;
  display:       inline-block;
}
.body-selector__dot a {
  position:      absolute;
  left:          0;
  top:           0;
  bottom:        0;
  width:         100%;
  height:        100%;
  border-radius: 50%;
  background:    rgba(0,140,68,.2);
  border:        3px solid var(--color-accent);
  text-indent:   -9999px;
  overflow:      hidden;
  transition:    var(--transition);
}
.body-selector__dot a:hover {
  border-color:  #fff;
  background:    var(--color-accent);
  transform:     scale(1.2);
  transform-origin: center center;
}

/* Tooltip on hover */
.body-selector__dot::after {
  content:       attr(title);
  visibility:    hidden;
  width:         120px;
  background:    var(--color-accent);
  color:         #fff;
  text-align:    center;
  border-radius: 6px;
  padding:       5px 0;
  margin-left:   30px;
  bottom:        -5px;
  position:      absolute;
  z-index:       3;
  font-size:     13px;
  text-indent:   0;
}
.body-selector__dot:hover::after { visibility: visible; }

/* Dot positions (calculated from old site's dot-container at left:31%, width:37%) */
.body-selector__dot--ankle    { left: 40.6%; top: 19%; }
.body-selector__dot--waist    { left: 51.4%; top: 39%; }
.body-selector__dot--knee     { left: 32.9%; top: 44%; }
.body-selector__dot--abdomen  { left: 48%;   top: 47%; }
.body-selector__dot--shoulder { left: 57.3%; top: 54%; }
.body-selector__dot--elbow    { left: 64.7%; top: 59%; }
.body-selector__dot--wrist    { left: 66.5%; top: 70%; }
.body-selector__dot--insoles  { left: 31.7%; top: 80%; }

@media (max-width: 767px) {
  .body-selector__dot { width: 16px; height: 16px; }
  .body-selector__dot a { border-width: 2px; }
  .body-selector__dot::after { width: auto; padding: 3px 8px; font-size: 11px; }
}


/* ── 10. USP SECTION ────────────────────────────────────────── */
.usp-section {
  padding-bottom: 30px;
  padding-top:    30px;
}
.usp-section > .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}
.usp-section__row {
  display:   flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
}
.usp-section__img-col {
  flex:       0 0 50% !important;
  max-width:  50% !important;
  background: #fff;
  padding:    15px 30px;
}
.usp-section__img { width: 100%; display: block; }

@media (max-width: 767px) {
  .usp-section__row { flex-wrap: wrap !important; }
  .usp-section__img-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.usp-section__content {
  background:     #fff;
  color:          #000;
  padding:        30px 15px 30px 40px;
  display:        flex;
  flex-direction: column;
  justify-content: center;
}

.usp-section__title {
  font-size:   40px;
  font-weight: 800;
  color:       #000;
  margin:      0 0 15px;
  padding:     0;
  display:     block;
  line-height: 1;
}
.usp-section__subtitle {
  font-size:   30px;
  font-weight: 100;
  color:       #000;
  margin:      0;
  padding:     0;
  display:     block;
  line-height: 1;
}

.usp-section__content > p {
  margin-top:    15px;
  margin-bottom: 100px;
  display:       block;
  font-size:     18px;
  color:         #000;
  line-height:   1.2;
}

.usp-section__btn {
  display:      inline-block;
  background:   #000;
  color:        #fff;
  font-size:    14px;
  font-weight:  700;
  padding:      10px 30px;
  text-align:   center;
  transition:   background .2s;
  width:        fit-content;
  border-radius: 0;
}
.usp-section__btn:hover { background: var(--color-primary-hover); color: #fff; }

@media (max-width: 767px) {
  .usp-section__content {
    text-align:     center;
    padding-bottom: 15px;
    padding-top:    15px;
    padding-left:   15px;
    padding-right:  15px;
    width: 100%;
  }
  .usp-section__title,
  .usp-section__subtitle { text-align: center; }
  .usp-section__title    { font-size: 30px; }
  .usp-section__subtitle { font-size: 20px; }
  .usp-section__content > p {
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    margin-bottom: 30px;
  }
  .usp-section__btn { display: inline-block; }
}


/* ── 11. ESPA STICKY BANNER ─────────────────────────────────── */
.espa-sticky {
  position:  fixed;
  bottom:    10px;
  right:     60px;
  z-index:   999;
  max-width: 450px;
}
.espa-sticky img {
  width:      100%;
  display:    block;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
@media (max-width: 767px) {
  .espa-sticky { max-width: 200px; }
}


/* ── 12. CATEGORY PAGE ──────────────────────────────────────── */
.cat-page { padding: 1rem 0 3rem; }
.cat-page__sidebar { padding-right: 3%; }
@media (max-width: 991px) { .cat-page__sidebar { padding-right: 15px; margin-bottom: 1.5rem; } }
.cat-page__header { text-align: center; padding: 1.5rem 1rem; }
.cat-page__title {
  font-size:  2rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}
.cat-page__empty {
  text-align: center;
  color:      var(--color-text-muted);
  padding:    3rem;
}

/* Sidebar (matches old .filterbar: black border, white bg) */
.cat-sidebar {
  border:     1px solid #010101;
  background: #fff;
  border-radius: 0;
  padding:    15px 0;
}
.cat-sidebar__list {
  list-style: none;
  margin:     0;
  padding:    0;
}
.cat-sidebar__link {
  display:      block;
  padding:      8px 10px 8px 10px;
  font-size:    14px;
  color:        var(--color-text-muted);
  border-left:  5px solid transparent;
  border-bottom: 1px solid #010101;
  position:     relative;
  transition:   color .15s, background .15s, border-color .15s;
}
.cat-sidebar__item:first-child .cat-sidebar__link {
  border-top: 1px solid #010101;
}
.cat-sidebar__link:hover {
  color:              var(--color-accent);
  border-left-color:  #008c44;
  background:         #ebebe9;
}
.cat-sidebar__link--active {
  font-weight:        700;
  color:              var(--color-primary);
  border-left-color:  #008c44;
  background:         #ebebe9;
}


/* ── 13. PRODUCT CARD ───────────────────────────────────────── */
.product-grid { margin: 0 -.5rem; }
.product-grid__cell { padding: .5rem; }

.product-card {
  background:    var(--color-bg);
  border:        1px solid var(--color-border);
  border-radius: var(--radius);
  overflow:      hidden;
  height:        100%;
  display:       flex;
  flex-direction: column;
  transition:    box-shadow .2s, border-color .2s;
}
.product-card:hover {
  box-shadow:   -2px 5px 8px -3px #8a888a;
  border-color: var(--color-primary);
}
.product-card__img-wrap {
  aspect-ratio: 1;
  overflow:     hidden;
  background:   var(--color-bg-alt);
  display:      flex;
  align-items:  center;
  justify-content: center;
}
.product-card__img {
  width:       100%;
  height:      100%;
  object-fit:  contain;
  transition:  transform .3s;
}
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card__body {
  padding:     .75rem;
  flex:        1;
  display:     table;
  width:       100%;
  text-align:  center;
}
.product-card__code {
  display:    block;
  font-size:  .75rem;
  color:      var(--color-text-muted);
  margin-bottom: .2rem;
}
.product-card__name {
  display:       table-cell;
  vertical-align: middle;
  width:         100%;
  height:        90px;
  font-size:     18px;
  font-weight:   600;
  color:         var(--color-text);
  line-height:   1.2;
  padding-left:  10px;
  padding-right: 10px;
  transition:    color .15s;
}
.product-card__name:hover { color: var(--color-accent); }


/* ── 14. PRODUCT DETAIL ─────────────────────────────────────── */
.prod-detail { padding-top: 3rem; padding-bottom: 2rem; }
.prod-detail__gallery { padding-right: 2rem; }

.prod-detail__main-img-wrap {
  border:        1px solid var(--color-border);
  border-radius: var(--radius);
  overflow:      hidden;
  padding:       1.5rem;
  background:    var(--color-bg-alt);
  text-align:    center;
}
.prod-detail__main-img {
  max-height: 300px;
  object-fit: contain;
  width:      100%;
}

.prod-detail__thumbnails {
  display:    flex;
  gap:        .5rem;
  margin-top: .75rem;
  flex-wrap:  wrap;
}
.prod-detail__thumb-btn {
  border:        1px solid var(--color-border);
  background:    var(--color-bg-alt);
  border-radius: var(--radius);
  padding:       .2rem;
  cursor:        pointer;
  width:         64px;
  height:        64px;
  overflow:      hidden;
  transition:    border-color .2s;
}
.prod-detail__thumb-btn:hover,
.prod-detail__thumb-btn.is-active { border-color: var(--color-accent); }
.prod-detail__thumb-img { width: 100%; height: 100%; object-fit: contain; }

.prod-detail__info { padding: 0 1.5rem; }
.prod-detail__title {
  font-size:     25px;
  font-weight:   700;
  margin:        0 0 15px;
  padding:       0;
  border-bottom: 1px solid #000;
}
.prod-detail__code {
  font-size: .875rem;
  color:     var(--color-text-muted);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-border);
}
.prod-detail__desc { font-size: .9rem; line-height: 1.8; color: #010101; }
.prod-detail__side { padding: 0 1.5rem; font-size: .875rem; }

/* "Your body first" banner */
.prod-banner {
  position:      relative;
  overflow:      hidden;
  margin:        2rem 0;
  border-top:    8px solid var(--color-primary);
  border-bottom: 8px solid var(--color-primary);
}
.prod-banner {
  position:      relative;
  overflow:      hidden;
  margin:        2rem 0;
  border-top:    8px solid var(--color-accent);
  border-bottom: 8px solid var(--color-accent);
}
.prod-banner__img { width: 100%; display: block; }
.prod-banner__caption {
  position: absolute;
  bottom:   30rem;
  left:     10%;
}
.prod-banner__title    { display: block; font-size: 2rem;   font-weight: 400; color: var(--color-accent); }
.prod-banner__subtitle { display: block; font-size: 3.5rem; font-weight: 700; color: #1a1a1a; line-height: 1; }

/* Related products */
.related-products { padding: 2rem 0 3rem; }
.related-products__title { margin-bottom: 1.5rem; font-size: 1.35rem; }

.rel-carousel { display: flex; align-items: center; gap: .5rem; }
.rel-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  flex:       1;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar */
  scrollbar-width: none;
}
.rel-carousel__viewport::-webkit-scrollbar { display: none; }
.rel-carousel__track {
  display:    flex;
  transition: transform .35s ease;
}
.rel-carousel__item {
  flex:       0 0 25%;
  padding:    0 .5rem;
  box-sizing: border-box;
}
.rel-carousel__btn {
  flex-shrink:   0;
  width:         36px;
  height:        36px;
  border:        2px solid var(--color-accent);
  border-radius: 50%;
  background:    #fff;
  color:         var(--color-accent);
  font-size:     1.6rem;
  line-height:   1;
  cursor:        pointer;
  display:       flex;
  align-items:   center;
  justify-content: center;
  transition:    background .2s, color .2s;
}
.rel-carousel__btn:hover { background: var(--color-accent); color: #fff; }
@media (max-width: 767px) {
  .rel-carousel__item { flex: 0 0 50%; }
}
/* Catalog product card (products grid + related products) */
.catalog-products__cell { align-self: flex-start; }
.catalog-product-card { display: block; }
.catalog-product-card__img-link { display: block; }
.catalog-product-card__img-wrap { overflow: hidden; }
.catalog-product-card__img { width: 100%; display: block; height: auto; }
.catalog-product-card__body { padding: .35rem .1rem 0; }
.catalog-product-card__code {
  display:     block;
  font-size:   .75rem;
  font-weight: 600;
  color:       var(--color-accent);
  margin-bottom: .15rem;
}
.catalog-product-card__name {
  display:     block;
  font-size:   .875rem;
  color:       var(--color-text);
  line-height: 1.3;
}
.catalog-product-card__name:hover { color: var(--color-accent); }

@media (max-width: 991px) {
  .prod-detail { padding-top: 0.75rem; }
  .prod-detail__gallery { padding-right: 0; margin-bottom: 1.5rem; }
  .prod-detail__info,
  .prod-detail__side { padding: 1rem 1rem; border: none !important; }
}
@media (max-width: 767px) {
  .breadcrumbs { padding-left: 1rem !important; padding-right: 1rem !important; }
}


/* ── 15. ALL-PRODUCTS PAGE ──────────────────────────────────── */
.products-page { padding: 2rem 0 3rem; }
.products-page__title { margin-bottom: 2rem; font-size: 2.2rem !important; font-weight: 600; color: var(--color-accent) !important; }
.products-page__search-info { margin-bottom: 1.5rem; font-size: .9375rem; }
.products-page__no-results { color: var(--color-text-muted); text-align: center; padding: 3rem; }

.cat-grid { margin: 0 -.5rem; }
.cat-grid__cell { padding: .5rem; }
.cat-grid__item {
  display:        flex;
  align-items:    center;
  justify-content: center;
  padding:        1.5rem 1rem;
  background:     var(--color-bg-alt);
  border:         1px solid var(--color-border);
  border-radius:  var(--radius);
  text-align:     center;
  font-size:      .875rem;
  font-weight:    600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color:          var(--color-text);
  transition:     background .2s, border-color .2s, color .2s;
  min-height:     80px;
}
.cat-grid__item:hover {
  background:   var(--color-primary);
  border-color: var(--color-primary);
  color:        #fff;
}
.cat-grid__name { display: block; }


/* ── 16. PAGE HERO (inner pages: company, contact, b2b) ─────── */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero__img {
  width: 100%;
  display: block;
}
.page-hero__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 1px 1px 8px rgba(255,255,255,.4);
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .page-hero__title { font-size: 2.2rem; }
}

/* Section heading with green left border */
.section-heading {
  border-left: 4px solid var(--color-accent);
  padding-left: .75rem;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
}

/* Vertical divider on right column */
.inner-col--divided {
  border-left: 1px solid var(--color-border);
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .inner-col--divided { border-left: none; padding-left: 0; margin-top: 2.5rem; }
}

/* Inner page two-column content wrapper */
.inner-page-content { padding: 3rem 0 4rem; }

/* ── STATIC PAGES ───────────────────────────────────────── */
.static-page { padding: 2rem 0 4rem; max-width: 860px; }
.static-page__title { font-size: 2rem; margin-bottom: 1.5rem; color: var(--color-accent); }
.static-page__body { font-size: 16px; line-height: 1.8; color: #000; }
.static-page__body h2 { margin-top: 2rem; color: #000; font-size: 40px; font-weight: 700; }
.static-page__body h3 { margin-top: 1.5rem; color: #000; font-size: 40px; font-weight: 700; }
@media (max-width: 767px) {
  .static-page__body h2 { font-size: 25px; }
  .static-page__body h3 { font-size: 25px; }
}
.static-page__body a { color: #088540; }
.static-page__body a:hover { text-decoration: underline; }

/* Contact */
.contact-info__list {
  list-style: none;
  padding:    0;
  margin:     0;
  font-size:  .9375rem;
}
.contact-info__list li {
  display:     flex;
  gap:         .75rem;
  align-items: flex-start;
  padding:     .65rem 0;
  border-bottom: 1px solid var(--color-border);
  color:       var(--color-text-muted);
}
.contact-info__list i { margin-top: .3rem; color: var(--color-accent); flex-shrink: 0; }
.contact-form-wrap { padding-left: 2rem; }
@media (max-width: 767px) { .contact-form-wrap { padding-left: 0; margin-top: 2rem; } }

/* Error page */
.error-page { padding: 4rem 0; }
@media (min-width: 992px) { .error-page { padding-top: 280px; } }
.error-page__code { font-size: 6rem; font-weight: 700; color: var(--color-accent); line-height: 1; }
.error-page__msg  { font-size: 1.5rem; }


/* ── 17. SITE FOOTER ────────────────────────────────────────── 
.site-footer {
  background: #fff;
  margin-top: auto;
}
.site-footer__inner {
  padding: 30px;
  background: #efeff1;
  border-bottom: 1px solid var(--color-border);
}
.site-footer__inner > .row {
  display: flex;
  flex-wrap: nowrap;
}
.site-footer__col {
  border: 1px solid #010101;
  border-right: 0;
  padding: 30px 15px;
  flex: 1;
}
.site-footer__col:last-child { border-right: 1px solid #010101; }
@media (max-width: 767px) {
  .site-footer__inner > .row { flex-wrap: wrap; }
  .site-footer__col {
    flex: 0 0 100%;
    border-right: 1px solid #010101;
    border-bottom: 0;
  }
}

.site-footer__logo-img { max-width: 160px; height: auto; }
.site-footer__links {
  list-style: none;
  margin:     0;
  padding:    0;
}
.site-footer__links li + li { margin-top: .4rem; }
.site-footer__links a {
  font-size:  15px;
  color:      #010101;
  transition: color .15s;
}
.site-footer__links a:hover { color: #008c44; }

.site-footer__contact {
  list-style: none;
  margin:     0;
  padding:    0;
  font-size:  .875rem;
}
.site-footer__contact li {
  display:     flex;
  gap:         .6rem;
  align-items: flex-start;
  padding:     10px 0;
  font-size:   15px;
  color:       #010101;
}
.site-footer__contact i { margin-top: .25rem; color: #010101; flex-shrink: 0; font-weight: 600; }
.site-footer__contact a { color: #010101; }
.site-footer__contact a:hover { color: #008c44; }

.site-footer__credits {
  margin-top:  .4rem;
  font-size:   0.9rem;
  color:       #010101;
  font-family: var(--font-base);
  line-height: 1.5;
}
.site-footer__credits a { color: #555; }
.site-footer__credits a:hover { color: var(--color-accent); }
*/

/* ── 18. COOKIE BAR ─────────────────────────────────────────── */
.cookie-bar {
  position:      fixed;
  bottom:        0;
  left:          0;
  width:         100%;
  z-index:       2000;
  background:    var(--color-bg);
  border:        1px solid #eff2f7;
  border-radius: 0;
  margin:        0;
  padding:       0;
  display:       none;
}
.cookie-bar.is-visible {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 10px;
}
.cookie-bar__text {
  flex: 1;
  font-size: .875rem;
  color: #333;
}
.cookie-bar__policy-link { color: var(--color-accent); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-bar__btn {
  border:        none;
  border-radius: var(--radius);
  padding:       .4rem .85rem;
  font-size:     .8125rem;
  font-weight:   600;
  cursor:        pointer;
  transition:    background .2s;
}
.cookie-bar__btn--settings { background: var(--color-bg-alt); color: var(--color-text); }
.cookie-bar__btn--settings:hover { background: var(--color-border); }
.cookie-bar__btn--accept  { background: var(--color-accent); color: #fff; }
.cookie-bar__btn--accept:hover { background: var(--color-accent-light); }

@media (max-width: 767px) {
  .cookie-bar__text { font-size: 13px; }
}

/* Cookie settings modal */
.cookie-settings-modal {
  position:   fixed;
  inset:      0;
  background: rgba(0,0,0,.5);
  z-index:    3000;
  display:    flex;
  align-items: center;
  justify-content: center;
}
.cookie-settings-modal[hidden] { display: none; }
.cookie-settings-modal__inner {
  background:    var(--color-bg);
  border-radius: var(--radius);
  padding:       1.5rem;
  max-width:     420px;
  width:         90%;
  box-shadow:    0 8px 32px rgba(0,0,0,.2);
}
.cookie-settings-modal__header {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  margin-bottom:   1rem;
  padding:         10px;
}
.cookie-settings-modal__header h4 {
  font-size: 25px;
  margin: 0;
}
.cookie-settings-modal__close {
  background: none;
  border:     none;
  font-size:  1.5rem;
  cursor:     pointer;
  color:      var(--color-text-muted);
  line-height: 1;
}
.cookie-settings-modal__body p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}
.cookie-settings-modal__row {
  display:    flex;
  gap:        .75rem;
  align-items: center;
  padding:    .5rem 0;
  font-size:  .9rem;
  cursor:     pointer;
}
.cookie-settings-modal__footer {
  margin-top:  1.25rem;
  text-align:  right;
  border-top:  1px solid var(--color-border);
  padding-top: .75rem;
}


/* ── 19. BOOTSTRAP THEME OVERRIDES ──────────────────────────── */
/* Match the old site's Bootstrap customizations */
.btn-primary {
  background-color: var(--color-primary);
  border-color:     var(--color-primary);
  color:            #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-primary-hover);
  border-color:     var(--color-primary-hover);
  color:            #fff;
}
.form-control:focus {
  border-color: var(--color-accent-light);
  box-shadow: 0 0 0 .2rem rgba(88,186,73,.25);
}
.alert-success {
  color:            #fff;
  background-color: var(--color-accent-light);
  border-color:     var(--color-accent-light);
}
.breadcrumb { /* Bootstrap override */
  background: transparent;
  margin-bottom: 0;
}


/* ── 20. UTILITIES ──────────────────────────────────────────── */
.border-left { border-left: 1px solid var(--color-border) !important; }



/* =========================================================
   PRODUCTS PAGE - CATALOG LAYOUT (image 2 style)
========================================================= */

.products-page--catalog {
  padding: 2rem 0 3rem;
}

.products-page__wrap {
  max-width: 1720px;
  margin: 0 auto;
  padding-left: 35px;
  padding-right: 35px;
}

.products-page--catalog .products-page__title {
  margin: 0 0 2.5rem;
  font-size: 56px;
  font-weight: 400;
  color: #243b63;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* LEFT SIDEBAR */
.catalog-sidebar {
  border: 1px solid #000;
  background: #fff;
  margin-top: .5rem;
}

/* Toggle button — hidden on desktop, shown on mobile */
.catalog-sidebar__toggle { display: none; }

@media (max-width: 991px) {
  .catalog-sidebar {
    border: none;
    margin-bottom: 0.5rem;
  }
  .catalog-sidebar__toggle {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    width:           100%;
    padding:         0.75rem 1rem;
    background:      var(--color-accent);
    color:           #fff;
    border:          none;
    font-size:       1rem;
    font-weight:     600;
    cursor:          pointer;
    border-radius:   4px;
    letter-spacing:  0.03em;
  }
  .catalog-sidebar__toggle i { transition: transform 0.25s; }
  .catalog-sidebar__toggle[aria-expanded="true"] i { transform: rotate(180deg); }

  /* List hidden by default on mobile */
  .catalog-sidebar .catalog-sidebar__list,
  .catalog-sidebar .cat-sidebar__list {
    display:       none;
    border:        1px solid #ddd;
    border-top:    none;
    border-radius: 0 0 4px 4px;
    margin-bottom: 1rem;
  }

  /* Shown when open */
  .catalog-sidebar.is-open .catalog-sidebar__list,
  .catalog-sidebar.is-open .cat-sidebar__list {
    display: block;
  }
}

.catalog-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-sidebar__item {
  margin: 0;
  padding: 0;
}

.catalog-sidebar__link {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-bottom: 1px solid #000;
  color: #243b63;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  background: #fff;
  transition: all .2s ease;
}

.catalog-sidebar__item:last-child .catalog-sidebar__link {
  border-bottom: 0;
}

.catalog-sidebar__link:hover {
  color: #008c44;
  background: #f6f6f6;
  text-decoration: none;
}

/* RIGHT PRODUCTS GRID */
.catalog-products {
  margin-left: 0;
  margin-right: 0;
}

.catalog-products__cell {
  padding-left: 28px;
  padding-right: 28px;
  margin-bottom: 3rem;
}

.catalog-product-card {
  text-align: center;
}

.catalog-product-card__img-link {
  display: block;
}

.catalog-product-card__img-wrap {
  min-height: 440px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: transparent;
}

.catalog-product-card__img {
  max-height: 430px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.catalog-product-card__body {
  margin-top: 1rem;
  text-align: center;
}

.catalog-product-card__code {
  display: inline-block;
  margin-right: 10px;
  color: #008c44;
  font-size: 18px;
  font-weight: 500;
}

.catalog-product-card__name {
  display: inline;
  color: #243b63;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.catalog-product-card__name:hover {
  color: #008c44;
}

/* SEARCH INFO */
.products-page__search-info {
  margin-bottom: 1.5rem;
  font-size: 16px;
  color: #243b63;
}

.products-page__no-results {
  padding: 3rem 1rem;
  text-align: center;
  color: #666;
}

/* Breadcrumb spacing to match the mock better */
body.is-inner .breadcrumbs {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1199px) {
  .products-page--catalog .products-page__title {
    font-size: 46px;
  }

  .catalog-products__cell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .catalog-product-card__img-wrap {
    min-height: 360px;
  }

  .catalog-product-card__img {
    max-height: 350px;
  }
}

@media (max-width: 991px) {
  .products-page__wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .products-page--catalog .products-page__title {
    font-size: 34px;
    margin-bottom: 1.5rem;
  }

  .catalog-sidebar {
    margin-bottom: 2rem;
  }

  .catalog-products__cell {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 2rem;
  }

  .catalog-product-card__img-wrap {
    min-height: 260px;
  }

  .catalog-product-card__img {
    max-height: 250px;
  }

  .catalog-product-card__code,
  .catalog-product-card__name {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .catalog-product-card__img-wrap {
    min-height: 220px;
  }

  .catalog-product-card__img {
    max-height: 210px;
  }

  .catalog-sidebar__link {
    font-size: 13px;
    padding: 10px 12px;
  }

  .catalog-product-card__code,
  .catalog-product-card__name {
    font-size: 15px;
  }
 
}

/* =========================================================
   PRODUCT DETAIL PAGE - OLD SITE STYLE
========================================================= */

.prod-view {
  padding: 1.5rem 0 3rem;
}

.prod-view__wrap {
  max-width: 1720px;
  margin: 0 auto;
  padding-left: 35px;
  padding-right: 35px;
}

.prod-view__col--gallery,
.prod-view__col--info,
.prod-view__col--side {
  position: relative;
}

@media (min-width: 992px) {
  .prod-view__col--gallery {
    border-left: 1px solid #000;
    padding-left: 45px;
    padding-right: 35px;
  }

  .prod-view__col--info {
    border-left: 1px solid #000;
    padding-left: 25px;
    padding-right: 25px;
  }

  .prod-view__col--side {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding-left: 35px;
    padding-right: 35px;
  }
}

/* GALLERY */
.prod-gallery__main {
  text-align: center;
  margin-bottom: 2rem;
}

.prod-gallery__main-img {
  max-height: 620px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.prod-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.prod-gallery__thumb {
  width: 150px;
  min-height: 150px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.prod-gallery__thumb:hover,
.prod-gallery__thumb.is-active {
  border-color: #008c44;
}

.prod-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* INFO */
.prod-info__title {
  font-size: 28px;
  font-weight: 400;
  color: #243b63;
  line-height: 1.25;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.prod-info__code-row {
  margin-bottom: 16px;
  font-size: 16px;
  color: #000;
}

.prod-info__code-label {
  font-weight: 600;
}

.prod-info__code-value {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #243b63;
}

.prod-info__desc {
  font-size: 16px;
  line-height: 1.85;
  color: #000;
  margin-bottom: 1.5rem;
}

.prod-info__desc p {
  margin-bottom: 1rem;
}

/* TABLE */
.prod-specs {
  margin-top: 1.5rem;
}

.prod-specs__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #58ba49;
  font-size: 15px;
  color: #000;
}

.prod-specs__table th,
.prod-specs__table td {
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  text-align: left;
  vertical-align: middle;
}

.prod-specs__table thead th {
  background: #f3f3f3;
  font-weight: 700;
  border-top: 2px solid #58ba49;
}

/* RIGHT SIDE */
.prod-side {
  padding-top: 60px;
  text-align: left;
}

.prod-side__badge {
  max-width: 180px;
  width: 100%;
  height: auto;
}

/* MOBILE */
@media (max-width: 991px) {
  .prod-view__wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .prod-view__col--gallery,
  .prod-view__col--info,
  .prod-view__col--side {
    border: 0;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 2rem;
  }

  .prod-gallery__main-img {
    max-height: 420px;
  }

  .prod-gallery__thumb {
    width: 100px;
    min-height: 100px;
  }

  .prod-info__title {
    font-size: 24px;
  }

  .prod-side {
    padding-top: 0;
    text-align: center;
  }

  .prod-side__badge {
    max-width: 140px;
  }
}

.prod-info__desc table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  border: 1px solid #58ba49;
  font-size: 15px;
}

.prod-info__desc table th,
.prod-info__desc table td {
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  text-align: left;
}

.prod-info__desc table tr:first-child td,
.prod-info__desc table tr:first-child th {
  border-top: 2px solid #58ba49;
  background: #f3f3f3;
  font-weight: 700;
}/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */

.prod-view {
  padding: 1.5rem 0 3rem;
}

.prod-view__wrap {
  max-width: 1720px;
  margin: 0 auto;
  padding-left: 35px;
  padding-right: 35px;
}

@media (min-width: 992px) {
  .prod-view__col--gallery {
    border-left: 1px solid #000;
    padding-left: 45px;
    padding-right: 35px;
  }

  .prod-view__col--info {
    border-left: 1px solid #000;
    padding-left: 25px;
    padding-right: 25px;
  }

  .prod-view__col--side {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding-left: 35px;
    padding-right: 35px;
  }
}

.prod-gallery__main {
  text-align: center;
  margin-bottom: 2rem;
}

.prod-gallery__main-img {
  max-height: 620px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.prod-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.prod-gallery__thumb {
  width: 150px;
  min-height: 150px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  transition: border-color .2s ease;
}

.prod-gallery__thumb:hover,
.prod-gallery__thumb.is-active {
  border-color: #008c44;
}

.prod-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-info__title {
  font-size: 28px;
  font-weight: 400;
  color: #243b63;
  line-height: 1.25;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.prod-info__code-row {
  margin-bottom: 16px;
  font-size: 16px;
  color: #000;
}

.prod-info__code-label {
  font-weight: 600;
}

.prod-info__code-value {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #243b63;
}

.prod-info__desc {
  font-size: 16px;
  line-height: 1.85;
  color: #000;
  margin-bottom: 1.5rem;
}

.prod-info__desc p {
  margin-bottom: 1rem;
}

.prod-info__desc table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  border: 1px solid #58ba49;
  font-size: 15px;
}

.prod-info__desc table th,
.prod-info__desc table td {
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  text-align: left;
  vertical-align: middle;
}

.prod-info__desc table tr:first-child td,
.prod-info__desc table tr:first-child th {
  border-top: 2px solid #58ba49;
  background: #f3f3f3;
  font-weight: 700;
}

.prod-side {
  padding-top: 60px;
  text-align: left;
}

.prod-side__badge {
  max-width: 180px;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .prod-view__wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .prod-view__col--gallery,
  .prod-view__col--info,
  .prod-view__col--side {
    border: 0;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 2rem;
  }

  .prod-gallery__main-img {
    max-height: 420px;
  }

  .prod-gallery__thumb {
    width: 100px;
    min-height: 100px;
  }

  .prod-info__title {
    font-size: 24px;
  }

  .prod-side {
    padding-top: 0;
    text-align: center;
  }

  .prod-side__badge {
    max-width: 140px;
  }
}/* =========================
   PRODUCT PAGE
========================= */

.prod-view {
    padding: 40px 0;
}

/* GRID FIX */
.prod-view .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

/* =========================
   GALLERY
========================= */

.prod-gallery__main {
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    text-align: center;
}

.prod-gallery__main img {
    max-width: 100%;
    height: auto;
}

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

.prod-gallery__thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.prod-gallery__thumbs img:hover {
    border-color: #28a745;
    transform: scale(1.05);
}

/* =========================
   PRODUCT INFO
========================= */

.prod-view h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.prod-view strong {
    color: #666;
}

.prod-desc {
    margin-top: 15px;
    line-height: 1.6;
    color: #333;
}

/* =========================
   SIDE IMAGE
========================= */

.prod-view .col-lg-3 img {
    width: 100%;
    border: 1px solid #eee;
    padding: 5px;
    background: #fff;
}

/* =========================
   BREADCRUMB
========================= */

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: #888;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 991px) {

    .prod-view .row {
        flex-direction: column;
    }

    .col-lg-5,
    .col-lg-4,
    .col-lg-3 {
        width: 100%;
    }

    .prod-gallery__thumbs {
        justify-content: center;
    }

    .prod-view h1 {
        font-size: 22px;
    }
}

.prod-gallery__thumbs img.active {
    border: 2px solid #28a745;
}


.prod-gallery__thumbs img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover;
}


.prod-gallery__thumbs img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    flex: 0 0 70px;
}

/* =========================
   LATO WEB FONTS
========================= */

@font-face {
  font-family: 'LatoWeb';
  src: url('../fonts/Lato-Regular.woff2') format('woff2'),
       url('../fonts/Lato-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LatoWeb';
  src: url('../fonts/Lato-Medium.woff2') format('woff2'),
       url('../fonts/Lato-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LatoWeb';
  src: url('../fonts/Lato-Semibold.woff2') format('woff2'),
       url('../fonts/Lato-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LatoWeb';
  src: url('../fonts/Lato-Bold.woff2') format('woff2'),
       url('../fonts/Lato-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* =========================
   PRODUCT DESCRIPTION OVERRIDES
========================= */

.prod-detail__desc,
.prod-detail__desc * {
  font-family: var(--font-base) !important;
  color: #010101 !important;
  max-width: 100% !important;
}

.prod-detail__desc {
  font-size: 15px !important;
  line-height: 1.7 !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.prod-detail__desc p,
.prod-detail__desc li,
.prod-detail__desc td,
.prod-detail__desc th {
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.prod-detail__desc ul,
.prod-detail__desc ol {
  margin: 0 0 1rem 1.25rem !important;
  padding-left: 1rem !important;
}

.prod-detail__desc h1,
.prod-detail__desc h2,
.prod-detail__desc h3,
.prod-detail__desc h4,
.prod-detail__desc h5,
.prod-detail__desc h6 {
  font-family: var(--font-base) !important;
  color: var(--color-text) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-top: 1.5rem !important;
  margin-bottom: .75rem !important;
}

.prod-detail__desc h4 {
  font-size: 1.9rem !important;
}

.prod-detail__desc .table-responsive {
  width: 100% !important;
  overflow-x: auto !important;
}

.prod-detail__desc table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  margin: 1rem 0 !important;
  background: #fff !important;
  border: 1px solid #008c44 !important;
  table-layout: auto !important;
}

.prod-detail__desc table th,
.prod-detail__desc table td {
  padding: .85rem 1rem !important;
  border: 1px solid #008c44 !important;
  vertical-align: middle !important;
  text-align: left !important;
  white-space: normal !important;
  font-size: 14px !important;
}

.prod-detail__desc table th {
  font-weight: 700 !important;
  background: #f7f7f7 !important;
}

.prod-detail__desc table tr:first-child th,
.prod-detail__desc table tr:first-child td {
  border-top: 2px solid #008c44 !important;
}

/* ── PAGINATION ─────────────────────────────────────────── */
.cat-pag {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 2rem 0 1rem !important;
}
.cat-pag-label {
  font-size: 0.875rem !important;
  color: var(--color-text) !important;
  margin-right: 0.75rem !important;
}
.cat-pag-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2.25rem !important;
  height: 2.25rem !important;
  border: 1px solid var(--color-accent) !important;
  background: #fff !important;
  color: var(--color-text) !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  line-height: 1 !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.cat-pag-btn:hover {
  background: var(--color-accent) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.cat-pag-btn--active {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #fff !important;
}

/* Flags in header bar — mobile only */
.site-header__mobile-flags {
  display: none;
}
@media (max-width: 767px) {
  .site-header__mobile-flags {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    order: -1;   /* pushes flags before the hamburger visually */
  }

  .site-header__mobile-flags .lang-flag img {
    width: 32px;
    height: 23px;
  }
  .site-header__mobile-flags .lang-flag {
    padding: 1 5px;
    opacity: 0.50;
  }
  .site-header__mobile-flags .lang-flag--active {
    opacity: 1;
  }
}

.main-nav__search { display: none; }
@media (max-width: 991px) {
  .main-nav__search {
    display: block;
    padding: 1rem 60px 0.5rem 1rem;
    border-bottom: 1px solid #eee;
  }
  .main-nav__search .search-form {
    max-width: 100%;
    flex: 1;
  }
}



.header-search-wrap {
    position: relative;
    width: 320px; /* ίδιο πλάτος με το search που θέλεις */
    flex: 0 0 320px;
}

.site-header__toprow {
    align-items: flex-start;
}

.search-form {
    width: 100%;
}

.search-form__input {
    width: 100%;
}

#suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    display: none;
    z-index: 999999;
}


.site-footer {
    margin-top: 70px;
    background: #f6f6f6;
    border-top: 2px solid #0b9444;
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 28px 34px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.3fr;
    gap: 48px;
    align-items: start;
}

/* ΚΑΘΑΡΙΣΜΟΣ από παλιά boxed styles */
.site-footer__brand,
.site-footer__nav,
.site-footer__contact-wrap,
.site-footer__col,
.site-footer__col--brand,
.site-footer__col--links,
.site-footer__col--contact {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
}

/* προαιρετικά μόνο πολύ διακριτικοί κάθετοι χωρισμοί */
.site-footer__nav,
.site-footer__contact-wrap {
    padding-left: 0 !important;
    border-left: 0 !important;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.site-footer__logo-img {
    max-width: 170px;
    height: auto;
}

.site-footer__credits {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.site-footer__title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #1f1f1f;
}

.site-footer__links,
.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li,
.site-footer__contact li {
    margin-bottom: 10px;
}

.site-footer__links a,
.site-footer__contact a {
    color: #3a3a3a;
    text-decoration: none;
    transition: color .18s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
    color: #0b9444;
    text-decoration: none;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.65;
    color: #4a4a4a;
}

.site-footer__contact i {
    flex: 0 0 15px;
    margin-top: 5px;
    color: #0b9444;
    font-size: 13px;
}

.site-footer__contact span {
    display: block;
}

@media (max-width: 991.98px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer__nav,
    .site-footer__contact-wrap {
        padding-left: 0 !important;
        border-left: 0 !important;
        border-top: 1px solid #dddddd !important;
        padding-top: 18px !important;
    }
}

@media (max-width: 767.98px) {
    .site-footer__inner {
        padding: 30px 16px 20px;
    }

    .site-footer__logo-img {
        max-width: 145px;
    }
}

/* =========================================================
   FINAL FOOTER CLEAN VERSION
========================================================= */

.site-footer {
  margin-top: 70px;
  background: #f6f6f6;
  border-top: 2px solid #0b9444;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 28px 30px;
  background: transparent;
  border: 0;
}

.site-footer__inner > .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: 0px;
  margin-right: 0px;
}

.site-footer__col {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: auto !important;
}

/* desktop proportions */
.site-footer__col--logo   { flex: 0 0 30%; max-width: 30%; }
.site-footer__col--links  { flex: 0 0 22%; max-width: 22%; }
.site-footer__col--contact{ flex: 0 0 48%; max-width: 48%; }

.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer__logo-img {
  max-width: 165px;
  height: auto;
}

.site-footer__credits {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.site-footer__title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1e1e1e;
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li,
.site-footer__contact li {
  margin-bottom: 10px;
}

.site-footer__links a,
.site-footer__contact a {
  color: #3a3a3a;
  text-decoration: none;
  transition: color .18s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: #0b9444;
  text-decoration: none;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
  color: #4a4a4a;
  padding: 0;
}

.site-footer__contact i {
  flex: 0 0 15px;
  margin-top: 5px;
  color: #0b9444;
  font-size: 13px;
}

.site-footer__contact span,
.site-footer__contact li > a,
.site-footer__contact li > div {
  display: block;
}

/* προαιρετικά: λίγο πιο διακριτικός διαχωρισμός μόνο με spacing */
.site-footer__col--links,
.site-footer__col--contact {
  position: relative;
}

@media (min-width: 992px) {
  .site-footer__col--links::before,
  .site-footer__col--contact::before {
    display: none !important;
    content: none !important;
  }
}

/* tablet/mobile */
@media (max-width: 991.98px) {
  .site-footer__inner {
    padding: 34px 20px 18px;
  }

  .site-footer__col--logo,
  .site-footer__col--links,
  .site-footer__col--contact {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .site-footer__col--links,
  .site-footer__col--contact {
    padding-top: 18px;
    margin-top: 4px;
    border-top: 1px solid #dddddd !important;
  }

  .site-footer__col--links::before,
  .site-footer__col--contact::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    margin-top: 45px;
  }

  .site-footer__inner {
    padding: 28px 16px 14px;
  }

  .site-footer__logo-img {
    max-width: 145px;
  }

  .site-footer__col {
    margin-bottom: 18px;
  }
}


/* FOOTER CLEAN FIX */
.site-footer__col--links::before,
.site-footer__col--links::after,
.site-footer__col--contact::before,
.site-footer__col--contact::after,
.site-footer__links li::before,
.site-footer__links li::after,
.site-footer__contact li::before,
.site-footer__contact li::after,
.site-footer__links a::before,
.site-footer__links a::after,
.site-footer__contact a::before,
.site-footer__contact a::after,
.site-footer__title::before,
.site-footer__title::after {
  content: none !important;
  display: none !important;
}

.site-footer__col,
.site-footer__col--logo,
.site-footer__col--links,
.site-footer__col--contact {
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}

.site-footer__links li,
.site-footer__contact li {
  background-image: none !important;
  text-decoration: none !important;
}

.site-footer__links a,
.site-footer__contact a {
  background-image: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}