@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Office:wght@300;400;500;600;700&display=swap');
:root {
  --font-sans: "Ysabeau Office", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body, button, input, select, textarea {
  font-family: var(--font-sans);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 500;
}
html {
  overflow-x: hidden;
}
/* ===== katsoulis css start ===== */
#search_widget form i {
    padding: 0 10px;
}
#search_widget form input{
  background: #fff;
}
/* -------------------------------------------------
   TOP GOLD BAR
------------------------------------------------- */
.topbar-gold {
  background-color: #cda463; /* χρυσό */
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.topbar-gold a {
    color: #fff !important;
}

.topbar-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 8px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.topbar-left {
  text-align: left;
  color: #ffd798;
  text-transform: initial;
}
.topbar-left a{
  color: #fff;
}

.topbar-center {
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.topbar-right {
  text-align: right;
  color: #ffd798;
}

.topbar-gold a {
  color: #fff !important;
  text-decoration: none;
}

.topbar-gold a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 4px;
  }
  .topbar-left,
  .topbar-center,
  .topbar-right {
    text-align: center;
    font-size: 14px;
  }
}

/* -------------------------------------------------
   MAIN HEADER BAR (white bar κάτω από το gold)
------------------------------------------------- */

.header-mainbar {
  background: #fff;
  padding: 26px 0; /* ήταν 40px, το μαζεύουμε για πιο “δεμένο” header */
}

.header-mainbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0;
}

/* LEFT: Search */
.header-col-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-col-left form {
  display: flex;
  align-items: center;
  border: 1px solid #d8c498;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  min-width: 280px;
  transition: 0.2s ease;
}

.header-col-left form:hover {
  box-shadow: 0 0 4px rgba(216,196,152,0.4);
}

.header-col-left input[type="search"],
.header-col-left input.form-control {
  border: none;
  padding: 7px 14px;
  flex: 1;
  font-size: 13px;
  color: #3a2f20;
  outline: none;
}

.header-col-left button {
  background: #fff;
  border: none;
  border-left: 1px solid #d8c498;
  color: #b59a5c;
  padding: 6px 12px;
  cursor: pointer;
}

.header-col-left button i {
  font-size: 18px;
}

/* CENTER: Logo */
.header-col-center {
  text-align: center;
}

.header-col-center img {
  max-height: 65px;
  width: auto;
}

/* RIGHT: Icons wrapper (user + cart) */
.header-col-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;           /* απόσταση μεταξύ user και cart */
  min-height: 40px;
}

/* Τα links των icons (user και cart) έχουν κοινή βάση */
#_desktop_user_info a,
#_desktop_cart .header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: relative;
  text-decoration: none;
  color: #2d2729;
  line-height: 1;
  filter: none;
  transition: filter 0.2s ease;
}

/* Hover και στα δύο icons */


/* -------------------------------------------------
   USER ICON (αντικατάσταση default)
------------------------------------------------- */

/* Κρύβουμε default user icon και το κείμενο "ΣΥΝΔΕΣΗ" */
#_desktop_user_info i,
#_desktop_user_info span {
  display: none !important;
}

/* Φτιάχνουμε το δικό μας USER.svg */
#_desktop_user_info a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/USER.svg") no-repeat center center;
  background-size: 22px 22px;
}

/* -------------------------------------------------
   CART ICON (Custom SVG + counter)
------------------------------------------------- */

/* Το link του cart */
#_desktop_cart .header a {
  gap: 0; /* γιατί θα βάλουμε icon μέσω ::before */
  color: #2d2729;
  text-transform: none;
  font-size: 13px;
}

/* Δικό μας CART.svg */
/* #_desktop_cart .header a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/CART.svg") no-repeat center center;
  background-size: contain;
} */

/* Κρύβουμε το text "Καλάθι:" και αφήνουμε μόνο badge */
#_desktop_cart .header span.hidden-sm-down {
  display: none !important;
}

/* Counter (π.χ. (1)) -> το κάνουμε badge */
#_desktop_cart .cart-products-count {
  position: absolute;
  top: -7px;
  right: -10px;
  background: #b59a5c;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 0 3px rgba(0,0,0,0.25);
  padding: 0;
  z-index: 10;
}

/* -------------------------------------------------
   RESPONSIVE HEADER
------------------------------------------------- */
@media (max-width: 768px) {
  .header-mainbar-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }

  .header-col-left {
    grid-column: 1 / span 2;
    justify-content: center;
  }

  .header-col-center {
    grid-column: 1;
    order: 2;
    justify-content: center;
  }

  .header-col-right {
    grid-column: 2;
    order: 3;
    justify-content: flex-end;
  }

  .header-col-center img {
    max-height: 50px;
  }
}

/* ====== ΔΙΠΛΟ SLIDER ΔΙΠΛΑ-ΔΙΠΛΑ ====== */

/* sliders responsive */
@media (max-width: 991px) {
  .home-sliders-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  iframe {
    width: 100%;
}
.featured-products.clearfix.mt-3 h2 {
    text-align: center;
    margin-bottom: 50px;
}
}
/* =======================================
   HOME SLIDERS LAYOUT (AUTO WIDTH MODE)
   ======================================= */

.home-sliders-grid {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  box-sizing: border-box;
}

/* Αφήνουμε τον κάθε slider να έχει το δικό του πλάτος */
.home-slider-left,
.home-slider-right {
  flex: 0 0 auto; /* όχι 50%, όχι stretch */
  overflow: hidden;
  box-sizing: border-box;
}

/* Διασφαλίζουμε ότι τίποτα δεν βγαίνει εκτός 1680px */
.home-sliders-grid .ls-wrapper,
.home-sliders-grid .ls-container,
.home-sliders-grid .creative-slider {
  max-width: 100% !important;
}

/* Responsive: σε μικρές οθόνες τους στοιχίζει κάθετα */
@media (max-width: 991px) {
  .home-sliders-grid {
    flex-direction: column;
    align-items: center;
  }

  .home-slider-left,
  .home-slider-right {
    width: 100%;
  }
}


.service-item {
  display: flex;
  align-items: center;
  text-align: left;
  flex: 1;
  min-width: 220px;
  justify-content: flex-start;
  gap: 10px;
}

.service-icon img {
  width: 40px;
  height: auto;
  display: block;
}

.service-text {
  line-height: 1.3;
}

.service-title {
  font-weight: 500;
  font-size: 20px;
  color: #2d2729; /* Χρυσό-καφέ */
}
.service-title stong {
    font-weight: 700;
}

.service-sub {
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .service-bar {
    flex-direction: column;
    padding: 10px 0;
  }

  .service-item {
    justify-content: flex-start;
    width: 100%;
    padding: 10px 0;
  }

  .service-icon img {
    width: 32px;
  }
}
.service-bar {
  max-width: 1680px;
  margin: 0 auto;
  padding: 20px 15px;
  display: flex;
  justify-content: flex-start !important;
  flex-wrap: wrap;
  align-items: center;
}
















/* ===== katsoulis css end ===== */
/* ================================================
   GLOBAL WIDTH FIX – force all containers to 1680px
   ================================================ */

.container,
.container-fluid,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1680px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Αν κάποια sections έχουν εσωτερικά divs που τραβάνε full width */
#header .container,
#footer .container,
#main .container {
  max-width: 1680px !important;
}

/* Αφαιρεί πιθανό overflow από sliders ή animations */
body {
  overflow-x: hidden;
}
#wrapper{
    background: #fff !important;
    padding: 0px !important;
}

/* banner */

/* =========================================
   FLEX LAYOUT - 3 ΣΤΗΛΕΣ / 5 BANNERS
   ========================================= */

.banner-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  max-width: 1680px;
  margin: 50px auto 60px;
}

/* ====== Κάθε στήλη ====== */
.banner-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex: 1 1 0;
}

.banner-col-left,
.banner-col-right {
  flex: 1;
}

.banner-col-center {
  flex: 1.1;
  display: flex;
  flex-direction: column;
}

/* =========================================
   ΕΙΚΟΝΕΣ / BANNERS
   ========================================= */

/* Πλαϊνά banners */
.banner-block {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  line-height: 0;
}

.banner-block img {
  width: 100%;
  height: 349px; /* 718/2 - μικρό κενό */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.banner-block:hover img {
  transform: scale(1.03);
}

/* Κεντρικό μεγάλο banner */
.banner-block-center {
  position: relative;
  width: 100%;
  height: 718px;
  overflow: hidden;
  border-radius: 2px;
}

.banner-block-center .center-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.banner-block-center .center-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.banner-block-center .center-link:hover .center-image {
  transform: scale(1.03);
}

/* =========================================
   ΚΕΙΜΕΝΑ ΜΕΣΑ ΣΤΙΣ ΕΙΚΟΝΕΣ
   ========================================= */

.banner-caption {
  position: absolute;
  right: 31%;
  bottom: 15px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  font-size: 28px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #2d2729;
  font-weight: 400;
  border-radius: 2px;
  font-family: inherit;
  margin: 0;
  z-index: 2;
  border: 2px solid #d6b47f;
}

.banner-caption .caption-strong {
  font-weight: 700;
  color: #2d2729; 
}

/* Caption της μεσαίας εικόνας */
.center-overlay {
  position: absolute;
  right: 22%;
  bottom: 20px;
  background-color: rgba(255,255,255,0.6);
  padding: 10px 14px;
  font-size: 28px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 400;
  color: #2d2729;
  border-radius: 2px;
  letter-spacing: 0.04em;
    border: 2px solid #d6b47f;
  font-family: inherit;
}
.center-overlay .caption-strong {
    font-weight: 700;
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* tablet */
@media (max-width: 992px) {
  .banner-flex-wrapper {
    flex-wrap: wrap;
  }

  .banner-col-center {
    flex: 1 1 100%;
    order: 0;
    margin-bottom: 40px;
  }

  .banner-col-left,
  .banner-col-right {
    flex: 1 1 50%;
    order: 1;
  }

  .banner-block img {
    height: 280px;
  }

  .banner-block-center {
    height: 560px;
  }
}

/* mobile */
@media (max-width: 576px) {
  .banner-flex-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .banner-col {
    flex: 1 1 auto;
    gap: 30px;
  }

  .banner-block img {
    height: 240px;
  }

  .banner-block-center {
    height: auto;
  }

  .banner-block-center .center-image {
    height: auto;
  }

  .center-overlay,
  .banner-caption {
    left: 10px;
    bottom: 10px;
    font-size: 16px;
    padding: 6px 9px;
  }
}


/* product */
/* =========================================
   ΠΡΟΤΕΙΝΟΜΕΝΑ ΠΡΟΪΟΝΤΑ - ΚΑΡΟΥΖΕΛ (ΧΡΥΣΟ #cda463)
   ========================================= */

/* Τίτλος section */
.featured-products-section h2,
.products-section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #2d2729;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  position: relative;
}

.featured-products-section h2::after,
.products-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #cda463; /* νέο χρυσό */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Wrapper καρουζέλ */
.product-carousel,
.owl-carousel,
.slick-slider {
  max-width: 1680px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

/* Κάρτα προϊόντος */
.product-miniature {
  background-color: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.product-miniature:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* Εικόνα προϊόντος */
.product-miniature img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.product-miniature:hover img {
  transform: scale(1.05);
}

/* Όνομα προϊόντος */
.product-miniature .product-title,
.product-description h3 a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2d2729;
  margin-top: 10px;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 76px;
}

.product-miniature .product-title:hover,
.product-description h3 a:hover {
  color: #cda463; /* νέο χρυσό */
}
.has-discount .discount{
  background: #cda463 !important;
}

/* Τιμή */
.product-price,
.price {
  font-size: 15px;
  font-weight: 600;
  color: #cda463; /* νέο χρυσό */
  margin-top: 6px;
}

/* Κωδικός / SKU (αν υπάρχει) */
.product-reference {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}
.page-product .product-reference {
  font-size: 18px !important;
}

/* =========================================
   Κουμπιά πλοήγησης
   ========================================= */
.owl-nav button,
.slick-prev,
.slick-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.owl-nav button:hover,
.slick-prev:hover,
.slick-next:hover {
  background-color: #cda463; /* νέο χρυσό */
  border-color: #cda463;
}

.owl-nav button.owl-prev::before,
.owl-nav button.owl-next::before,
.slick-prev::before,
.slick-next::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2d2729;
  border-right: 2px solid #2d2729;
  transform: rotate(135deg);
  position: relative;
}

.owl-nav button.owl-next::before,
.slick-next::before {
  transform: rotate(-45deg);
}

.owl-nav button.owl-prev {
  left: -10px;
}
.owl-nav button.owl-next {
  right: -10px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .product-miniature {
    padding: 10px;
  }
  .product-miniature .product-title {
    font-size: 13px;
  }
  .product-price {
    font-size: 14px;
  }
}
/* Κάνουμε τη ζώνη πληροφοριών flex για να ελέγξουμε τη σειρά */
.product-miniature__infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Κωδικός προϊόντος ΠΡΩΤΟΣ */
.product-miniature__infos .product-reference {
  order: -1;
  font-size: 16px;
  line-height: 1.4;
  color: #cda463;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  margin-top: 0px; /* λίγο αέρα κάτω από την εικόνα */
  font-weight: 400;
  width: 50%;
}
.product-miniature__infos .product-reference::before {
  content: "Κωδ. Προϊόντος: ";
  color: #717171; /* σκούρο γκρι για διάκριση */
  font-weight: 700;
  width: 50%;
  font-size: 20px;
}

/* Τίτλος προϊόντος ΔΕΥΤΕΡΟΣ */
.product-miniature__infos .product-title {
  order: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: #2d2729;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 8px;
  max-width: 90%;
  min-height: 76px;
}

.product-miniature__infos .product-title a {
  color: inherit;
  text-decoration: none;
}

.product-miniature__infos .product-title a:hover {
  color: #cda463; /* το χρυσό */
}

/* Τιμή ΤΡΙΤΗ */
.product-miniature__infos .product-price-and-shipping {
  order: 1;
  margin-bottom: 12px;
}

.product-miniature__infos .product-price-and-shipping .price {
  color: #cda463;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  text-transform: none;
}

/* Κουμπί ADD TO CART ΤΕΤΑΡΤΟ */
.product-miniature__infos .product-item-buttons {
  order: 2;
  text-align: center;
  width: 100%;
}

/* Styling στο κουμπί add to cart για να ταιριάζει με το ύφος σου */
.product-miniature__infos .product-item-buttons .btn {
  background-color: #cda463;
  border-color: #cda463;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 18px;
  letter-spacing: 0.03em;
  width: auto;
  min-width: 160px;
}

.product-miniature__infos .product-item-buttons .btn:hover {
  filter: brightness(1.05);
}

/* Badge "Νέο" χρωματικά */
.product-flags .product-flag.new {
  background-color: #cda463;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
/* button */
/* =========================================
   ADD TO CART + WISHLIST CENTER ON HOVER
   ========================================= */

/* κρατάμε το container σχετικό για να τοποθετήσουμε κουμπιά */
.product-miniature {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

/* ελαφρύ σκοτείνιασμα της εικόνας στο hover */
.product-miniature:hover .product-miniature__image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}

/* αρχικά τα κουμπιά κρυφά */
.product-miniature .product-item-buttons,
.product-miniature .wishlist-button-add {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 5;
}

/* εμφάνιση στο hover */
.product-miniature:hover .product-item-buttons,
.product-miniature:hover .wishlist-button-add {
  opacity: 1;
  visibility: visible;
}

/* Add to cart styling */
.product-miniature .product-item-buttons .btn {
  background-color: #cda463;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px 20px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 250px;
}

.product-miniature .product-item-buttons .btn:hover {
  background-color: #b48b42;
  transform: scale(1.05);
}

/* Wishlist button styling */
.product-miniature .wishlist-button-add {
  left: calc(50% + 110px); /* μετακίνησέ το δεξιά από το κουμπί */
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-miniature .wishlist-button-add i {
  color: #cda463;
  font-size: 22px;
  transition: all 0.3s ease;
}

.product-miniature .wishlist-button-add:hover {
  background-color: #cda463;
}

.product-miniature .wishlist-button-add:hover i {
  color: #fff;
}

/* Μικρή ανύψωση προϊόντος στο hover */
.product-miniature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-miniature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Responsive: σε κινητά τα κουμπιά κάτω από την εικόνα */
@media (max-width: 768px) {
  .product-miniature .product-item-buttons,
  .product-miniature .wishlist-button-add {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
  }

  .product-miniature:hover .product-miniature__image-container::after {
    background-color: transparent;
  }
}
/* label + κωδικός στην ίδια γραμμή */
.product-miniature__infos .product-reference {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px; /* μικρό κενό ανάμεσα */
  font-size: 18px;
  color: #cda463;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  background: radial-gradient(circle,rgba(239, 239, 239, 1) 70%, rgba(223, 223, 223, 1) 100%);
  padding: 10px;
}

/* προσθέτει το label πριν τον κωδικό */
.product-miniature__infos .product-reference::before {
  content: "Κωδ. Προϊόντος:";
  color: #2d2729;
  font-weight: 700;
  margin-right: 4px;
  text-transform: initial;
  font-size: 20px;
}

/* το span του κωδικού να μην “σπάει” */
.product-miniature__infos .product-reference .nowrap {
  display: inline;
  white-space: nowrap;
  color: #cda463;
  font-size: 20px;
  font-weight: 400;
}
.product-miniature .product-title a{
    font-size: 18px;
    font-weight: 700;
    color: #2d2729;
}
/* banner megalo */
/* ===== ΝΕΑ ΣΥΛΛΟΓΗ ΒΑΠΤΙΣΤΙΚΩΝ ===== */

/* ΕΞΩ BACKGROUND SECTION */
.vaptisi-section {
  position: relative;
  max-width: 1680px;
  margin: 60px auto;
  /* η εικόνα με τα παιδάκια */
  background-image: url('/themes/classic/assets/img/SYLLOGY-SECTION-b.jpg'); /* <-- βάλε το σωστό path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 560px; /* φροντίζει να χωράνε κοριτσάκι/αγοράκι */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 51px 20px;
}

/* ΛΕΥΚΟ / BLUR BOX ΣΤΟ ΚΕΝΤΡΟ */
.vaptisi-inner {
  padding: 30px 40px 32px;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

/* ΤΙΤΛΟΣ */
.vaptisi-title {
  font-size: 35px;
  line-height: 1.4;
  font-weight: 700;
  color: #2d2729;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ΠΕΡΙΓΡΑΦΗ */
.vaptisi-desc {
  font-size: 20px;
  line-height: 1.2;
  color: #2d2729;
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 500;
}

/* GRID 2 ΣΤΗΛΕΣ (ΑΓΟΡΙΑ / ΚΟΡΙΤΣΙΑ) */
.vaptisi-box-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  row-gap: 0;
}

.vaptisi-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ΧΡΥΣΑ ΚΟΥΤΙΑ */
.vaptisi-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #cda463;
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  padding: 8px 10px;
  width: 250px;
  min-height: 70px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.vaptisi-box:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* ΤΕΞΤΟ ΜΕΣΑ ΣΤΑ ΚΟΥΤΙΑ */
.vaptisi-box .main {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.vaptisi-box .sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 3px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vaptisi-section {
    min-height: 520px;
    padding: 30px 15px;
  }

  .vaptisi-inner {
    max-width: 90%;
    padding: 24px 24px 28px;
  }

  .vaptisi-box-grid {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }

  .vaptisi-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .vaptisi-box {
    width: 180px;
    min-height: 64px;
    padding: 12px 14px;
  }
}

@media (max-width: 576px) {
  .vaptisi-section {
    min-height: auto;
    border-radius: 0;
  }

  .vaptisi-inner {
    max-width: 100%;
    padding: 20px 18px 24px;
  }

  .vaptisi-column {
    flex-direction: column;
    width: 100%;
  }

  .vaptisi-box {
    width: 100%;
  }
}
.layout_layout1 .ets_mm_megamenu_content{
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 50%, rgba(255, 255, 255, 1) 100%) !important;
}

/* ===== ΔΗΜΙΟΥΡΓΗΣΤΕ ΤΟ ΔΙΚΟ ΣΑΣ ΠΑΚΕΤΟ ΒΑΠΤΙΣΗΣ ===== */

.vaptisi-package-section {
  background-color: #fff;
  max-width: 1680px;
  margin: 60px auto 80px;
}

.vaptisi-package-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ebe4e0;
}

.vaptisi-package-image {
  flex: 1;
}

.vaptisi-package-image img {
  width: 100%;
  height: 250px;
  display: block;
}

.vaptisi-package-text {
  flex: 1;
  text-align: center;
  padding: 20px 0;
}

.vaptisi-package-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2d2729;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.vaptisi-package-text h3 {
  font-size: 38px;
  font-weight: 400;
  color: #2d2729;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.vaptisi-btn {
  display: inline-block;
  padding: 15px;
  background-color: rgba(46, 40, 42, 0.4);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}
.vaptisi-package-text a:hover {
    color: #fff;
}
.vaptisi-btn:hover {
  transform: translateY(-2px);
  columns: #fff;
}

/* ------- Responsive ------- */
@media (max-width: 992px) {
  .vaptisi-package-container {
    flex-direction: column;
    text-align: center;
  }

  .vaptisi-package-text {
    padding: 20px 0 0;
  }

  .vaptisi-package-text h2 {
    font-size: 20px;
  }

  .vaptisi-package-text h3 {
    font-size: 18px;
  }

  .vaptisi-btn {
    padding: 10px 24px;
  }
}
/* ===== ΠΑΡΑΚΟΛΟΥΘΗΣΗ ΠΑΡΑΓΓΕΛΙΑΣ / ΜΕΤΑΦΟΡΙΚΕΣ ===== */

.tracking-banners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1680px;
  margin: 80px auto;
  background-color: #fff;
}

.tracking-banner {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tracking-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tracking-banner a:hover img {
  transform: scale(1.02);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .tracking-banners {
    flex-direction: column;
    gap: 30px;
  }
}
.prop-line.item-title {
    display: none;
}
/* === GLOBAL FOOTER CONTAINER === */
.site-footer {
  background-color: #f3ebe7;
  border-top: 10px solid #d6b78b;
  color: #2d2729;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
}

/* Γενικές row ζώνες */
.footer-row {
  max-width: 1680px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ============================= */
/* ΓΡΑΜΜΗ 1: LOGO + FOLLOW US    */
/* ============================= */
.footer-row-top {
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CDA463;
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 10px;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.footer-logo img {
  max-width: 400px;
  height: auto;
  display: block;
}

.footer-social-block {
  display: flex;
  align-items: center; /* βάζει το κείμενο & τα icons στην ίδια γραμμή */
  justify-content: flex-end;
  gap: 10px; /* λίγο κενό ανάμεσα στο “Follow us now!” και τα icons */
}
.footer-social-label {
  font-size: 12px;
  font-weight: 600;
  color: #2d2729;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}



.footer-logo img {
  max-width: 300px;
  height: auto;
  display: block;
}

.footer-social-label {
  font-size: 26px;
  font-weight: 600;
  color: #2d2729;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.footer-social-list {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer-social-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid #cda463;
  text-decoration: none;
  transition: all .25s ease;
  border-radius: 40px;
}

.footer-social-list li a img {
  width: 35px;
  height: 35px;
  display: block;
}

.footer-social-list li a:hover {
  background-color: #cda463;
  border-color: #cda463;
}

.footer-social-list li a:hover img {
  filter: brightness(0) invert(1);
}

/* ========================================= */
/* ΓΡΑΜΜΗ 2: 4 ΣΤΗΛΕΣ ΜΕ LINKS + NEWSLETTER  */
/* ========================================= */
.footer-row-links {
  padding-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #CDA463;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  row-gap: 30px;
}

.footer-col {
  font-size: 13px;
  color: #2d2729;
  min-width: 0;
}

.footer-heading {
  font-weight: 700;
  color: #2d2729;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.4;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-links a {
  color: #2d2729;
  text-decoration: none;
  transition: color .2s ease;
  font-size: 22px;
  font-weight: 500;
}
.footer-links a:hover {
  color: #cda463;
}

/* Newsletter column styling */
.footer-news-desc {
  font-size: 18px;
  color: #2d2729;
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: 260px;
}

.footer-news-form {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  margin-bottom: 6px;
}

.footer-news-input {
  flex: 1;
  border: 1px solid #bfb7ad;
  background-color: #fff;
  font-size: 12px;
  padding: 9px 10px;
  color: #2d2729;
  outline: none;
  line-height: 1.4;
  min-width: 0;
  border-right: 0;
}

.footer-news-input:focus {
  border-color: #cda463;
}

.footer-news-btn {
  background-color: #cda463;
  border: 1px solid #cda463;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 9px 12px;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
}

.footer-news-btn:hover {
  background-color: #b7924f;
  border-color: #b7924f;
}

.footer-privacy-hint {
  font-size: 16px;
  color: #7c746b;
  line-height: 1.4;
  max-width: 260px;
}

/* ============================= */
/* ΓΡΑΜΜΗ 3: BADGES / ΠΛΗΡΩΜΕΣ   */
/* ============================= */
.footer-row-badges {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CDA463;
}

.footer-badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 20px;
}

.footer-badges-left,
.footer-badges-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
}

.footer-badge img {
  display: block;
  max-height: 40px;
  height: auto;
  width: auto;
}

/* ============================= */
/* ΓΡΑΜΜΗ 4: COPYRIGHT / POWERED */
/* ============================= */
.footer-row-bottom {
  padding-top: 15px;
  padding-bottom: 25px;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
  column-gap: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #6b655e;
  letter-spacing: .03em;
}

.footer-bottom-left {
  color: #6b655e;
}

.footer-bottom-right {
  color: #6b655e;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-powered-logo {
  height: 18px;
  width: auto;
  display: block;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media (max-width: 1200px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-news-form {
    flex-direction: column;
    gap: 8px;
  }

  .footer-news-input {
    border-right: 1px solid #bfb7ad;
    width: 100%;
  }

  .footer-news-btn {
    width: 100%;
    text-align: center;
  }

  .footer-badges-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-badges-left,
  .footer-badges-right {
    justify-content: flex-start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.easycarousels .title_block{
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 65px;
  margin-top: 65px;
  color: #2d2729;
}

/* Στήσιμο τίτλου καρουζέλ */
.carousel_title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #2d2729;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 40px 0 50px;
  position: relative;
  line-height: 1.2;
}
@media(max-width:991px){
  .carousel_title::after {
  width: 100%;
}
}
/* Χρυσή γραμμή κάτω από τον τίτλο */
.carousel_title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 832px;
  height: 2px;
  background-color: #cda463; /* το χρυσό */
}
/* product */
#product #content {
    position: relative;
    max-width: 600px;
    margin: 0;
}
/* end product */
.tabs {
  padding: 0;
}

/* === Στυλ σελίδας προϊόντος === */

/* Τίτλος προϊόντος */
#product h1.h1 {
  font-size: 35px; /* ~32px */
  font-weight: 700;
  color: #2d2729;
  margin-bottom: 1rem;
}

/* Τιμή */
.product-prices {
  margin-bottom: 1rem;
}
.product-price .current-price {
  font-size: 30px;
  font-weight: 400;
  color: #CDA463; /* χρυσαφί χρώμα */
}
.product-price .regular-price {
  color: #888;
  font-size: 1.2rem;
  text-decoration: line-through;
  margin-left: 8px;
}
.tax-shipping-delivery-label {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Περιγραφή */
.product-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333 !important;
  margin-bottom: 1.5rem;
}
.product-description img {
  vertical-align: middle;
  margin-right: 8px;
}
.product-description p {
  margin-bottom: 0.6rem;
}

/* Add to cart section */

.product-actions .control-label {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.product-quantity input[type="number"] {
  font-size: 1.1rem;
  border-radius: 10px;
  height: 42px;
}
.product-quantity .btn-touchspin {
  color: #333;
}
.add-to-cart {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 1.2rem;
  border-radius: 25px;
  background-color: #cda463; /* μπλε */
  transition: background-color 0.2s ease;
}
.add-to-cart:hover {
  background-color: rgb(125, 94, 2);
}

/* Εικονίδιο wishlist */
.wishlist-button-add {
  margin-left: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.wishlist-button-add:hover {
  background: #f1f5f9;
}

/* Social sharing */
.social-sharing {
  margin-top: 1rem;
  font-size: 1rem;
  color: #444;
}
.social-sharing span {
  font-weight: 600;
}
.social-sharing ul {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social-sharing li a {
  color: #555;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.social-sharing li a:hover {
  color: #cda463;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  #product h1.h1 {
    font-size: 1.6rem;
  }
  .product-price .current-price {
    font-size: 1.6rem;
  }
}
.tabs .nav-tabs .nav-item{
  font-size: 24px;
}
/* === Product Tabs Styling === */

/* Βασικό στυλ για τα tab κουμπιά */

#product .tabs .nav-tabs .nav-item {
  margin-right: 8px;
}
#product .tabs .nav-tabs .nav-link {
  border: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
  padding: 10px 16px;
  transition: all 0.25s ease;
}

/* Hover effect */
#product .tabs .nav-tabs .nav-link:hover {
  background-color: #e0ac00; /* πιο ανοιχτό χρυσό */
  color: #fff;
  border-color: #e0ac00;
}

/* Active tab */
#product .tabs .nav-tabs .nav-link.active,
#product .tabs .nav-tabs .nav-link.js-product-nav-active {
  background-color: #cda463;
  color: #fff !important;
  border-color: #cda463;

}

/* Περιεχόμενο tabs */
#product .tabs .tab-content {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 20px;
}
#product .tabs .tab-pane {
  font-size: 1.05rem;
  line-height: 1.6;
}
#product .description p {
    font-size: 20px !important;
    font-weight: 500;
    color: #2d2729;
}
.tabs .product-description p {
    font-size: 20px;
    font-weight: 500;
    color: #2d2729;
}
.product-cover{
  margin-bottom: 0;
}
#product .breadcrumb{
    margin:3rem 0;
    
}
/* === Add to cart button in category page === */
.product-miniature-add {
  margin-top: 12px;
  text-align: center;
}

.product-miniature-add .add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #cda463; /* μπλε */
  color: #fff;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 19px;
  transition: background-color 0.25s ease;
  cursor: pointer;
}
.product-miniature-add .add-to-cart:hover {
  background-color: #cda463; /* χρυσαφί hover */
  color: #fff;
}
.product-miniature-add .shopping-cart {
  font-size: 18px;
}
.page-category .product-reference, .page-prices-drop .product-reference, .page-new-products .product-reference,  .page-product .product-reference {
    margin-top: 5px;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    font-size: 18px;
    color: #cda463;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    background: radial-gradient(circle, rgba(239, 239, 239, 1) 70%, rgba(223, 223, 223, 1) 100%);
    padding: 10px;
}
.product-flags li.product-flag.discount{
      background: #cda463 !important;
}
.product-miniature .thumbnail-container{
  width: 100%;
}
.js-product.product.col-xs-12.col-sm-6.col-xl-4 {
    margin-bottom: 28px;
}

.pagination>div:first-child {
    font-size: 18px;
}
.page-category .product-price, .price {
    font-size: 20px;}

    .layout_layout1 li:hover > a, .layout_layout1 li > a:hover, .layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title, .layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title a, .layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title, .layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title a, #header .layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title, #header .layout_layout1 .mm_tabs_li.open .mm_tab_toggle_title a, #header .layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title, #header .layout_layout1 .mm_tabs_li:hover .mm_tab_toggle_title a, .layout_layout1.ybc_vertical_menu .mm_menus_li > a, #header .layout_layout1 li:hover > a, .layout_layout1.ybc_vertical_menu:not(.click_open_submenu) .mm_menus_li:hover > a, .layout_layout1.ybc_vertical_menu.click_open_submenu .mm_menus_li.open_li > a, #header .layout_layout1.ybc_vertical_menu:not(.click_open_submenu) .mm_menus_li:hover > a, #header .layout_layout1.ybc_vertical_menu.click_open_submenu .mm_menus_li.open_li > a, #header .layout_layout1 .mm_columns_ul .mm_block_type_product .product-title > a:hover, #header .layout_layout1 li > a:hover{
      color:#cda463 !important;
    }
    .mm_menu_content_title{
      font-size: 22px;
      font-weight: 500;
    }
    .add-to-cart{
    background-color: #cda463;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 20px;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    border-radius: 0;
    }

    section.featured-products.clearfix.mt-3 h2{
      text-align: center;
          font-size: 35px;
    font-weight: 700;
    color: #2d2729;
    }
    @media (max-width: 767px) {
    .ybc-menu-vertical-button, .transition_floating .close_menu, .transition_full .close_menu {
        background-color: #cda463 !important;

    }
    .ets_mm_megamenu *:not(.fa):not(i) {
    font-family: inherit;
    font-size: 16px;
}
}
.label, label {
    font-size: 20px;
}
.product-line-grid-right .cart-line-product-actions, .product-line-grid-right .product-price {
  font-size: 20px;
}
.breadcrumb{
  margin: 2rem 0 !important;
}
body:not(.cute) #content.page-content .custom-radio input[type=radio]:checked + span {
    background-color: var(--tc-color-base) !important;
}

/* Wrapper 2-στηλών */
.info-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  align-items: stretch;        /* <-- Τεντώνει τις στήλες στο ίδιο ύψος */
}

/* Αριστερή στήλη */
.info-two-column__left {
  flex: 1 1 40%;
  display: flex;               /* ώστε το περιεχόμενο να “πιάσει” το ύψος */
}

/* Δεξιά στήλη */
.info-two-column__right {
  flex: 1 1 50%;
  display: flex;               /* για να μπορεί το box να πάρει 100% height */
}

/* Contact Box */
.info-contact-box {
  background: #f6f6f6;
  padding: 263px 24px;
  border-radius: 6px;
  line-height: 1.6;
  font-size: 14px;
  width: 100%;
  height: 100%;                /* <-- ίσο ύψος με τη στήλη (άρα και με την εικόνα) */
  box-sizing: border-box;
}

/* Αν θες τα κείμενα να είναι κάθετα κεντραρισμένα στη δεξιά στήλη,
 * ξεκλείδωσε την επόμενη γραμμή:
 */
/* .info-contact-box { display:flex; flex-direction:column; justify-content:center; } */

.info-contact-box__title {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.info-contact-box__text {
  margin-bottom: 20px;
  font-size: 18px;
}

.info-contact-box__item {
  margin-bottom: 10px;
  font-size: 18px;
}

.info-contact-box__item a {
  color: inherit;
  text-decoration: none;
}

.info-contact-box__item a:hover {
  text-decoration: underline;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .info-two-column {
    gap: 20px;
  }

  .info-two-column__left,
  .info-two-column__right {
    flex: 1 1 100%;
    display: block;
  }

  .info-contact-box {
    height: auto;
  }
}
.page-product .product-manufacturer{
  text-align: center;
}
button#search_filter_toggler{
  display: none;
}
.page-authentication #content, .page-registration #content {
    max-width: 100%;
}
.page-cms section#main {
    min-height: 610px;
}
label.PM_ASLabelCheckbox {
    font-size: 15px;
}
.product-image-hover {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-image-hover .primary-image,
.product-image-hover .secondary-image {
  width: 100%;
}

.product-image-hover .secondary-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-image-hover .primary-image {
  transition: opacity 0.3s ease;
}

.product-image-hover:hover .primary-image {
  opacity: 0;
}

.product-image-hover:hover .secondary-image {
  opacity: 1;
}
.product-image-hover {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-image-hover .primary-image,
.product-image-hover .secondary-image {
  width: 100%;
}

.product-image-hover .primary-image img,
.product-image-hover .secondary-image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-image-hover .secondary-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: transparent;
}

/* ΤΟ HOVER ΝΑ ΕΦΑΡΜΟΖΕΤΑΙ ΜΟΝΟ ΟΤΑΝ ΥΠΑΡΧΕΙ 2η ΕΙΚΟΝΑ */
.has-second-image:hover .primary-image {
  opacity: 0;
}

.has-second-image:hover .secondary-image {
  opacity: 1;
}
@media (min-width: 768px) {
    .ets_mm_megamenu.layout_layout1:not(.ybc_vertical_menu) .mm_menus_ul {
        display: flex;
        justify-content: center;
    }
}

.payment-option img {
    max-width: 82px !important;
}
.ets_mm_block_content h4 {
    font-weight: 700;
    font-size: 18px;
}
.mm_blocks_li {
    margin-bottom: 7px !important;
}
.page-my-account .text-sm-center a {
    padding: 15px;
    background: #cda463;
    color: #fff;
    font-weight: 500;
    font: 18px;
}
.logo-espa {
  position: absolute;
  z-index: 99;
  text-align: right;
  top: -92px !important;
}
@media(max-width:800px){
  .logo-espa img {
    max-width: 90px;
  }
}
#accesabar_bar {
  font-family: 'Open Sans', sans-serif;
}
.accesabar_li a {
  font-size: 15px;
  line-height: 21px;
}
@media screen and (min-width: 1201px) { 
  .accesabar_button_text p {
    display:none !important;
  }
  a#accesabar_accesiblity_options.accesiblity-bar {
    background: transparent url(../img/amea.png) no-repeat;
    background-size: 48px 48px;
    display:inline-block; width:48px;
    height:48px;
    position:fixed;
    right:-5px;
    top:40%;
    z-index:99998;
  }
  #accesabar_bar {
    position: fixed;
    width: 250px;
    right: 0;
    top: 40%;
    z-index: 99999;
    border: 1px solid #174568;
    background: #269;
    border-radius: 3px 0 0 3px;
    padding: 10px;
  }
  #accesabar_magnifier #accesabar_bar {
    top: 7% !important;
  }
  #accesabar_features, #accesabar_menu {
    width: 250px;
    display: inline-block;
    left: 0;
  }
  .accesabar_buttons {
    width: 50px;
    height: 50px;
    display: inline-block;
    float: left;
    margin: 2px 2px !important;
    background: #fff;
    border-radius: 3px;
  }
  .accesabar_buttons a {
    padding: 12px 20px 10px;
  }
  #accesabar_font img {
    position: relative;
    top: 0px;
    width: 30px;
    height: 27px;
    margin-right: 0px;
  }
  #accesabar_bar img {
    width: auto;
    height: 22px;
    margin-right: 0px;
    margin-bottom: 2px;
  }
  .accesabar_buttons a:hover, .accesabar_buttons:hover a {
    color: #000 !important;
    filter: opacity(0.7);
    opacity: 0.7;
  }
  .accesabar_buttons .accesabar_li a:hover, .accesabar_buttons:hover .accesabar_li a {
    color: #ffffff !important;
    filter: opacity(1);
    opacity: 1;
  }
  #accesabar_exit a {
    color: #fff !important;
    opacity: 1 !important;
  }
  .accesabar_menues {
    background: #269;
    position: absolute;
    left: -280px; 
    z-index: 3;
    border-radius: 3px;
    border: 1px solid #174568;
  }
  #accesabar_submenu_settings {
    left: -190px;
  }
  .accesabar_menues {
    top: 0px;
  }
  .accesabar_submenues {
    left: 100% !important;
  }
  .accesabar_li a {
    color: #fff !important;
    opacity: 1 !important;
  }
}
#accesabar_features .accesabar_buttons a{
  color: #000 !important;
}
body#index {
    padding-top: 0 !important;
}