:root {
  --colorBg: #fff;
  --colorFt: #f8f5f0;
  --colorTxt: #2b2b2b;
  --colorSilver: #e8e8e8;
  --colorGold: #d17b0f;
  --colorGold: #c4bab7;
  --colorGold: #c9c7c6;
  --colorLogo: #494949;
  --wrapperWidth: 1920px;
  --wrapperWidthMd: 1460px;
  --wrapperWidthSm: 920px;
  --mobilePadding: 1rem;
  --padding: 2rem;
  --filterGold: brightness(0) saturate(100%) invert(47%) sepia(100%)
    saturate(1477%) hue-rotate(20deg) brightness(95%) contrast(91%);
}

@media screen and (max-width: 1480px) {
  :root {
    --padding: 1.5rem;
  }
}
@media screen and (max-width: 1180px) {
  :root {
    --padding: 20px;
  }
}
@media screen and (max-width: 620px) {
  :root {
    --padding: var(--mobilePadding);
  }
}

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
blockquote,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  position: relative;
  font-weight: 400;
  max-width: 2500px;
  margin: 0 auto;
  background-color: var(--colorBg);
  color: var(--colorTxt);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

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

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

ul,
ol {
  list-style: none;
}

ul.flex > li:last-of-type {
  margin-right: 0 !important;
}
ul.flex.col > li:last-of-type {
  margin-bottom: 0 !important;
}
ul.flex.border > li:last-of-type {
  border-right: 0 !important;
}
ul.flex.col.border > li:last-of-type {
  border-bottom: 0 !important;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}

address {
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}
[style*="--aspect-ratio"] > img {
  height: auto;
}
@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

/*  containers */

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.flex.centered {
  justify-content: center;
  align-items: center;
}

section {
  margin-bottom: clamp(6rem, 11vw, 200px);
}

.difference {
  background-color: var(--colorSilver);
}

/*  general */

/*  κλείδωμα του scroll στο background
    σε περίπτωση που έχουμε ένα στοιχείο
    που καλύπτει όλη την οθόνη */
.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

/*  κεντράρισμα εικόνας*/
.img-center {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/*  κρύψιμο οριζόντιας μπάρας κύλισης*/
.scrollbar-hide {
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.pntr {
  cursor: pointer;
}

.abs,
.bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mb-0 {
  margin-bottom: 0;
}
/* wrappers */

.wrapper {
  max-width: var(--wrapperWidth);
  padding-inline: var(--padding);
  margin-inline: auto;
}
.wrapper.sm {
  max-width: var(--wrapperWidthSm);
}
.wrapper.md {
  max-width: var(--wrapperWidthMd);
}

.wrapper.pr-0 {
  padding-right: 0;
}

@media screen and (max-width: 1200px) {
  .tab-pr-0 {
    padding-right: 0;
  }
}
@media screen and (max-width: 620px) {
  .mob-pr-0 {
    padding-right: 0;
  }
}

/* grid */

.grid {
  --gridGap: 1.5rem;
  --columnWidth: calc(
    ((100% - (var(--columns) - 1) * (var(--gridGap))) / var(--columns))
  );
  display: grid;
  grid-template-columns: repeat(var(--columns), var(--columnWidth));
  grid-gap: var(--gridGap);
}

.grid.template-grid {
  --columns: 12 !important;
}
@media screen and (max-width: 1020px) {
  .grid {
    --columns: 3 !important;
  }
  .grid.tab-4 {
    --columns: 4 !important;
  }
  .grid.tab-2 {
    --columns: 2 !important;
  }
}

@media screen and (max-width: 620px) {
  .grid {
    --gridGap: 1rem;
  }
  .grid,
  .grid.mob-1 {
    --columns: 1 !important;
  }
  .grid.mob-2 {
    --columns: 2 !important;
  }
}

/* cards */

/* card general */

.card.row {
  display: flex;
}
.card.row > div {
  width: 50%;
}
.card.row.img-sm > div {
  flex-grow: 1;
}
.card.cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
/* card-image */

.card-image {
  margin-bottom: 1rem;
}
.card.row .card-image {
  margin-bottom: 0;
  height: fit-content;
}
.card.row.img-r .card-image {
  order: 2;
}
.card.row.img-sm .card-image {
  width: 120px;
  flex-grow: 0;
}
.card.cover .card--image {
  z-index: -1;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.category.card .card--image,
.product.card .card--image {
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
}

@media screen and (max-width: 920px) {
  .category.card .card--image,
  .product.card .card--image {
    margin-bottom: 0.5rem;
  }
}

/* card info general */
.card-info {
  display: flex;
  flex-direction: column;
}

.card-info > *:last-child {
  margin-bottom: 0 !important;
}
.card.row .card-info {
  padding-left: 1rem;
}
.card.row.img-r .card-info {
  padding-inline: 0 1rem;
}

.card.cover .card--info {
  display: flex;
  color: #fff;
  height: 100%;
  align-items: flex-end;
  padding: 2rem;
}
.card.cover.center .card-info {
  align-items: center;
  justify-content: center;
}
.card.cover.bottom .card-info {
  justify-content: flex-end;
}

/* card info category */

.card .category {
  order: -1;
  margin-bottom: 0.5rem;
}

/* card info title */

.card .title {
  margin-bottom: 0.5rem;
}

.product .woocommerce-loop-product__title,
.product .title {
  font-size: 14px;
}

.category .title {
  font-size: 34px;
  font-weight: 200;
  text-transform: uppercase;
}

@media screen and (max-width: 1320px) {
  .category .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 820px) {
  .category .title {
    font-size: 24px;
  }
}

/* card info lead */

.card .lead > p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

/* price */
.price-details.product-price,
.price-details {
  gap: 8px;
  font-size: 12px;
  justify-content: flex-start;
}

.price {
  position: relative;
}

.price:has(+ .price.sale)::before {
  content: "";
  width: 100%;
  border-top: 1px solid var(--colorGold);
  position: absolute;
  left: 0;
  top: 50%;
}

.price.sale {
  color: var(--colorGold);
}

.product.card .price-details {
  margin-bottom: 0;
}

/* section headers */

.section-header {
  padding-block: 20px;
}
.section-header.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header h2 {
  font-size: 2.25rem;
  letter-spacing: 3.5px;
  font-weight: 600;
}
.section-header h3 {
  font-size: 1.25rem;
  letter-spacing: 3.5px;
  font-weight: 500;
  margin-top: 0.5rem;
}

.section-header.cntr {
  text-align: center;
  justify-content: center;
}

.section-header.multi-line {
  flex-wrap: wrap;
  border-bottom: none;
  justify-content: space-between;
  align-items: center;
}

.section-header.multi-line > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header.multi-line > .top-row {
  margin-bottom: 0.5rem;
}
.section-header.multi-line > .top-row.border {
  border-bottom: 1px solid #fff;
}

.section-header .social-link {
  font-size: 14px;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

@media screen and (max-width: 920px) {
  .section-header h2 {
    font-size: 1.75rem;
    letter-spacing: 2.5px;
  }
}

@media screen and (max-width: 620px) {
  .section-header h2 {
    font-size: 1.25rem;
    letter-spacing: 1.5px;
  }
}

/*  socials */

.social ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social li {
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 40px;
  background-size: 50%;
}

.social.border li {
  border: 1px solid #000;
}
.social.border.rnd li {
  border-radius: 50%;
}
.social.white li {
  filter: invert(1);
}

.social.round li {
  background-color: #fff;
  border-radius: 50%;
}

.social ul li:last-of-type {
  margin-right: 0;
}
.social ul li.pin {
  background-image: url(../assets/images/icons/pin.svg);
}
.social ul li.fb {
  background-image: url(../assets/images/icons/fb.svg);
  background-size: 25%;
}
.social ul li.tw {
  background-image: url(../assets/images/icons/tw.svg);
  /* background-size:5px 10px; */
}
.social ul li.yt {
  background-image: url(../assets/images/icons/yt.svg);
}
.social ul li.ig {
  background-image: url(../assets/images/icons/ig.svg);
}
.social ul li.ln {
  background-image: url(../assets/images/icons/ln.svg);
}
.social ul li.tt {
  background-image: url(../assets/images/icons/tt.svg);
}
.social ul li.sf {
  background-image: url(../assets/images/icons/sf.svg);
}
.social ul li.ap {
  background-image: url(../assets/images/icons/ap.svg);
}
.social ul li.rss {
  background-image: url(../assets/images/icons/rss.svg);
  /* background-size:20px 20px; */
}
.social ul li.wup {
  background-image: url(../assets/images/icons/wup.svg);
  background-size: contain;
  background-color: transparent;
  border-radius: 0;
}

.social ul li.lg {
  width: 2.25rem;
  height: 1.85rem;
  margin-right: 3rem;
}

.social ul li > a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.social.md ul li {
  width: 36px;
  height: 36px;
  margin-right: 32px;
}

.social.md ul li.fb {
  background-image: url(../images/icons/fb.svg);
  background-size: 10px 20px;
}
.social.md ul li.tw {
  background-image: url(../images/icons/tw.svg);
  background-size: 19px 15px;
}

.darkmode .social ul li {
  filter: invert(1);
}

@media screen and (max-width: 680px) {
  .social ul li {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 620px) {
  .social ul li {
    width: 40px;
    height: 40px;
  }
  .social ul li.fb {
    background-size: 8px 18px;
  }
  .social ul li.tw {
    background-size: 18px 14px;
  }
  .social ul li.rss {
    background-size: 14px 14px;
  }
}
@media screen and (max-width: 480px) {
  .social ul li {
    margin-right: 26px;
  }
}

/* search */
.search-header-wrapper {
  position: relative;
}
.search-icon {
  width: 1rem;
  height: 1rem;
  background-image: url(../assets/images/icons/search.svg);
  background-size: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.search-icon.white {
  filter: invert(1);
}
.search-inner-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: 0;
  position: absolute;
  background-color: #000;
  transition: width 0.3s;
}
.search-form {
  width: 200px;
  display: flex;
  align-items: center;
}
.search-inner-wrapper.on {
  width: 200px;
}

.search-form input {
  background: transparent;
  color: #fff;
  /* border-bottom: 1px solid #fff; */
}

.search-close.btn-container {
  width: 25px;
  height: 25px;
}
.search-close .line {
  transform-origin: center;
  top: 50% !important;
}
.search-close .line:first-of-type {
  transform: rotate(-45deg);
}
.search-close .line:last-of-type {
  transform: rotate(45deg);
}

/* main header and menus */

.fixed-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-block: 1rem;
  background-color: var(--colorBg);
  z-index: 100;
}

/* buttons */

.btn-container {
  width: 3rem;
  height: 2rem;
  padding: 0.5rem;
}

.btn-container > div {
  height: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.btn-container .line {
  width: 100%;
  border-top: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 50%;
}

.btn-container .line:first-of-type {
  top: 0;
}
.btn-container .line:last-of-type {
  top: 100%;
}

.btn {
  background-color: var(--colorGold);
  width: fit-content;
  margin-inline: auto;
  padding: 0.5rem 2rem;
  color: #1c1c11;
  cursor: pointer;
  border: none;
  outline: none;
}

/* woocommerce */

p.woocommerce-result-count,
nav.woocommerce-breadcrumb {
  font-size: 12px;
}

.woocommerce-ordering select {
  margin-left: auto;
  display: block;
  margin-top: -1rem;
  text-align: right;
}

.cat-filters {
  max-height: 30px;
  overflow: hidden;
  border-bottom: 1px solid #b2b2b2;
  margin-block: 6rem 1rem;
  transition: max-height 0.3s;
}

.cat-filters:has(li.wc-block-product-filter-removable-chips__item) {
  max-height: 82px;
}
.cat-filters.on:has(li.wc-block-product-filter-removable-chips__item),
.cat-filters.on {
  max-height: 2000px;
}
.cat-filters h2 {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.cat-filters h3 {
  font-size: 14px;
  font-weight: 400;
}

.cat-filters.on h2::after {
  content: "Κλείσιμο";
  margin-left: 2ch;
  font-size: 12px;
  color: var(--colorGold);
}

.cat-filters label.wc-block-product-filter-checkbox-list__label {
  font-size: 12px;
}

.cat-filters li.wc-block-product-filter-removable-chips__item {
  background-color: #2b2b2b;
  color: #fff;
  font-size: 12px;
}

.cat-filters .wp-block-woocommerce-product-filter-clear-button button {
  background-color: var(--colorGold);
  color: #000;
  border-radius: 0;
  font-size: 12px;
  padding: 0.5rem 2rem;
  width: fit-content !important;
}

.wp-block-woocommerce-product-filter-price-slider {
  max-width: 700px;
  padding-left: 4px;
}

#mini-cart-container {
  background-color: #000;
  padding: 1rem;
  color: #fff;
  font-size: 14px;
  position: absolute;
  right: var(--padding);
  width: 300px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-open #mini-cart-container {
  opacity: 1;
  pointer-events: all;
}

p.woocommerce-mini-cart__empty-message {
  text-align: center;
  font-size: 12px;
}
li.woocommerce-mini-cart-item.mini_cart_item {
  font-size: 12px;
}
#mini-cart-container ul.cart_list li img {
  width: 50px;
}
.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  font-weight: 500;
}
p.woocommerce-mini-cart__buttons.buttons {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 1rem;
}

p.woocommerce-mini-cart__buttons.buttons a {
  margin: 0;
  background-color: var(--colorGold);
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.wc-block-components-product-badge {
  background-color: var(--colorGold);
  padding: 1rem 0.5rem;
}

.product .card-add-to-cart-wrapper {
  background-color: var(--colorGold);
  font-size: 12px;
  padding: 0.5rem 1rem;
  color: #000;
  width: fit-content;
  margin-top: 1rem;
}

.woocommerce-message {
  font-size: 14px;
}

.woocommerce-ordering select {
  border: none;
  /* border-bottom: 1px solid #b2b2b2; */
  font-family: "Open Sans";
  background-color: transparent;
  font-size: 12px;
}

@media screen and (max-width: 520px) {
  .woocommerce-ordering select {
    margin: 0.5rem 0 0;
    text-align: left;
  }
}

/* search form */

.screen-reader-text {
  background-color: #000;
  color: #fff;
  padding: 0.5rem 1rem;
}
