* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  background: #e6ddc5;
}

/* ΚΕΝΤΡΙΚΟ BOX */
.wrapper {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background: #222;
  color: #fff;
  font-size: 14px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 450px;
  margin: 20px 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SHORT BANNER */
.full-banner {
  display: block;
 /* height: 180px; */
  margin-bottom: 20px;
}

.full-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRID */
.grid-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.grid-item {
  display: block;
 /*  height: 220px; */ 
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FOOTER */
.site-footer {
  background: #2b2b2b;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .grid-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .grid-section {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 360px;
  }
}

/* =========================
   SLIDER ARROWS
========================= */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 8px 6px;
  cursor: pointer;
  z-index: 2;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

.slider-arrow:hover {
  background: rgba(0,0,0,0.7);
}

/* =========================
   FOOTER INFOS
========================= */
#infos_footer {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

#infos_footer li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ddd;
  font-size: 14px;
}

#infos_footer a {
  color: #fff;
  text-decoration: none;
}

#infos_footer a:hover {
  text-decoration: underline;
}

/* responsive footer */
@media (max-width: 700px) {
  #infos_footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* HEADER NAV */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 45px;
  display: block;
}

/* RIGHT NAV */
.top-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
}

/* LANGUAGE SWITCHER */
.languages-block {
  position: relative;
  cursor: pointer;
}

.languages-block .current {
  color: #fff;
}

.languages-block_ul {
  position: absolute;
  top: 120%;
  right: 0;
  background: #333;
  list-style: none;
  padding: 8px 0;
  display: none;
  min-width: 120px;
  z-index: 10;
}

.languages-block_ul li {
  padding: 6px 15px;
}

.languages-block_ul li a,
.languages-block_ul li span {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.languages-block_ul li:hover {
  background: #444;
}

.languages-block.open .languages-block_ul {
  display: block;
}

/* CONTACT LINK */
#contact-link a {
  color: #fff;
  text-decoration: none;
}

#contact-link a:hover {
  text-decoration: underline;
}

/* PHONE */
.shop-phone {
  color: #fff;
  white-space: nowrap;
}

.shop-phone a{
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}

.shop-phone a:hover {
    text-decoration: underline;
}

.shop-phone i {
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .top-nav {
    gap: 15px;
  }

  .shop-phone {
    display: none;
  }
}

/* HEADER BAR */
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
}

/* PHONE */
.shop-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.shop-phone i {
  color: #fff;
}

/* LANGUAGES */
.languages-block {
  position: relative;
  cursor: pointer;
}

.languages-block .current {
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

/* arrow animation */
.languages-block .arrow {
  transition: transform 0.3s ease;
}

.languages-block.open .arrow {
  transform: rotate(180deg);
}

/* dropdown */
.languages-list {
  position: absolute;
  right: 0;
  top: 120%;
  background: #333;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 120px;
  display: none;
  z-index: 20;
}

.languages-list li {
  padding: 6px 14px;
  white-space: nowrap;
}

.languages-list li a,
.languages-list li span {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.languages-list li:hover {
  background: #444;
}

.languages-block.open .languages-list {
  display: block;
}

/* MOBILE */
@media (max-width: 700px) {
  .shop-phone {
    font-size: 13px;
  }
}


@media (max-width: 700px) {
  .slide img {
    object-position: 72% center;
  }
	
  .full-banner img {
    object-position: 62% center;
	height: 220px;
  }

}



