@charset "UTF-8";
header {
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 0;
}
footer .menu-container {
  display: flex;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.home {
  background-color: #000000;
}
.home * {
  color: #f0eee9;
}
.home .icon {
  background-color: #f0eee9;
}
.home main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100svh - 140px);
}

.main-page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 400px;
}

.main-page-filter-container {
  padding: 20px;
}
.main-page-filter-container ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-page-filter-container button.active .icon {
  background-color: #f0eee9;
}
.main-page-filter-container button .icon {
  background-color: rgba(240, 238, 233, 0.5019607843);
}

.products-container {
  background-color: #f0eee9;
  flex: 1;
  min-width: 0;
  height: 740px;
  max-width: 150px;
  border-radius: 500px;
  max-height: calc(100svh - 140px);
  padding: 80px 25px;
  overflow: hidden; /* Hides the scrollbar */
  overflow-y: scroll; /* Allows vertical scrolling */
}
.products-container::-webkit-scrollbar {
  display: none; /* Hides scrollbar in WebKit browsers */
}

.empty-container {
  width: 70px;
  height: 100%;
}

.product-listing {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-listing img {
  width: 100%;
  height: auto;
}
.product-listing * {
  color: #000000;
}

.product-images {
  max-height: calc(100svh - 280px);
  transition: max-height 0.3s;
}
.product-images img {
  height: calc(100svh - 280px);
  object-fit: contain;
}

.swiper-pagination {
  bottom: 0;
}

:root {
  --swiper-scrollbar-sides-offset: 1px;
  --swiper-scrollbar-bottom: 1px;
  --swiper-scrollbar-size: 2px;
  --swiper-scrollbar-drag-bg-color: #000000;
  --swiper-scrollbar-border-radius: 0;
  --swiper-scrollbar-bg-color: transparent;
}

.title-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.single-product-row {
  padding: 23px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2509803922);
}

.variation-selector {
  padding: 0;
  height: 70px;
  overflow: hidden;
}
.variation-selector button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 70px;
}
.variation-selector .variation-selector-inner {
  transition: margin-top 0.3s;
}
.variation-selector.show-variations .variation-selector-inner {
  margin-top: -70px;
}

.variations {
  display: flex;
  width: 100%;
}

.variation {
  width: 100%;
}
.variation button {
  width: 100%;
}

.toggle-info {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  cursor: pointer;
  border-bottom: 0;
}
.toggle-info img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.product-info-content {
  max-height: 0;
  height: calc(100svh - 520px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: max-height 0.3s;
}
.product-info-content .dimensions,
.product-info-content .weight {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.product-info-content .description {
  display: flex;
  flex-direction: column;
}
.product-info-content .description p {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.product-content-text {
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.product.info-opened .product-images {
  max-height: 70px;
}
.product.info-opened .product-info-content {
  max-height: calc(100svh - 520px);
  padding: 0 20px 20px;
}

.woocommerce-checkout .site {
  display: flex;
  gap: 80px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.woocommerce-checkout .site > div {
  width: 100%;
}

.woocommerce-billing-fields h3,
.cart-content h3 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.cart-content-inner {
  position: sticky;
  top: 36px;
}

.checkout-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout-form label {
  display: inline-block;
}
.checkout-form .payment_box {
  padding-top: 16px;
}

.woocommerce-billing-fields h3 {
  padding-bottom: 32px;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  border: 1px solid #000000;
  height: 48px;
  background-color: transparent;
  padding: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.select2-selection {
  background-color: transparent !important;
  height: 48px !important;
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center;
}

.select2-container {
  height: 48px;
}

.select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
  height: unset !important;
  width: unset !important;
  right: 12px !important;
}
.select2-selection__arrow b {
  display: none;
}
.select2-selection__arrow:after {
  content: "";
  background-image: url("../assets/img/icons/select-icon.svg");
  width: 24px;
  height: 24px;
  display: block;
}

.select2-dropdown {
  background-color: #f0eee9 !important;
  border-color: #000000 !important;
  border-radius: 0 !important;
}

.select2-results__options {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2509803922) transparent;
}

.select2-results__option--highlighted {
  background-color: rgba(0, 0, 0, 0.5019607843) !important;
}

textarea {
  width: 100%;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout-review-order {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row {
  width: calc(50% - 8px);
}
.form-row input[type=text],
.form-row input[type=tel],
.form-row input[type=email] {
  width: 100%;
}

.form-row-wide,
.notes,
.place-order,
.woocommerce-SavedPaymentMethods-saveNew {
  width: 100%;
}

.notes textarea {
  height: 153px;
  resize: vertical;
}

#customer_details .col-2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input[type=checkbox],
input[type=radio] {
  accent-color: #000000;
}

.shipping {
  display: flex;
  flex-direction: column;
}

.woocommerce-shipping-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.woocommerce-shipping-methods li input {
  display: none;
}
.woocommerce-shipping-methods li .title-row {
  width: 100%;
}
.woocommerce-shipping-methods li:has(input:checked) .checkmark-container {
  background-color: #000000;
  background-image: url("../assets/img/icons/checkmark.svg");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.woocommerce-shipping-methods,
.wc_payment_methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.woocommerce-shipping-methods > li .title-row input,
.wc_payment_methods > li .title-row input {
  display: none;
}
.woocommerce-shipping-methods > li > input,
.wc_payment_methods > li > input {
  display: none;
}
.woocommerce-shipping-methods > li label,
.wc_payment_methods > li label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-shipping-methods > li .title-row,
.wc_payment_methods > li .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #000000;
  padding: 16px;
  min-height: 72px;
  width: 100%;
}
.woocommerce-shipping-methods > li .title-row-inner,
.wc_payment_methods > li .title-row-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.woocommerce-shipping-methods > li .title-row-inner label,
.wc_payment_methods > li .title-row-inner label {
  padding: 0;
}
.woocommerce-shipping-methods > li .title-row .checkmark-container,
.wc_payment_methods > li .title-row .checkmark-container {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #000000;
}
.woocommerce-shipping-methods > li:has(input:checked) .checkmark-container,
.wc_payment_methods > li:has(input:checked) .checkmark-container {
  background-color: #000000;
  background-image: url("../assets/img/icons/checkmark.svg");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.paymnet-icon,
.shipping-icon {
  background-color: #000000;
  height: 36px;
  min-width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paymnet-icon .icon,
.shipping-icon .icon {
  background-color: #f0eee9;
  max-width: 20px;
  max-height: 20px;
  overflow: auto;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
}
.woocommerce-checkout-review-order-table th {
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.woocommerce-checkout-payment {
  width: 100%;
}

#place_order {
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5019607843);
  color: #f0eee9;
  z-index: 1;
}

.cart-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 630px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-item .row {
  display: flex;
  justify-content: space-between;
}

#wc-stripe-payment-method-instructions-card {
  padding-bottom: 16px;
}

.StripeElement {
  padding: 76px 20px 20px;
  border: 1px solid #000000; /* Itt állíthatod a keret színét */
  margin-bottom: 16px !important;
  position: relative;
}
.StripeElement:before {
  content: "KÁRTYA ADATOK";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #f0eee9;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.woocommerce-SavedPaymentMethods-saveNew {
  flex-direction: row !important;
  align-items: center !important;
}
.woocommerce-SavedPaymentMethods-saveNew label {
  text-transform: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
}

#ship-to-different-address {
  margin-top: 16px;
}
#ship-to-different-address label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
#ship-to-different-address label span {
  text-transform: none;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 15.6px */
}

.shipping_address {
  margin-top: 16px;
}

.item-img img {
  height: 96px;
  width: 96px;
  object-fit: contain;
}

.item-text {
  width: 246px;
}

.quantity input {
  width: 48px;
  text-align: center;
  background-color: transparent;
  -moz-appearance: textfield;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}
.quantity input::-webkit-outer-spin-button, .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-totals .totals-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-totals .totals-table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-totals .totals-table .cart-total {
  padding-top: 12px;
}
.cart-totals .totals-table .cart-total span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

.wc_payment_methods {
  margin-bottom: 40px;
}

.place-order {
  gap: 16px !important;
}
.place-order .form-row {
  width: 100%;
}
.place-order .form-row label {
  width: 100%;
  display: flex;
  background-color: rgba(0, 0, 0, 0.0509803922);
}
.place-order .form-row label input {
  margin: 16px;
  background-color: transparent;
}
.place-order .form-row label > span {
  text-transform: none;
  padding: 16px 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
}
.place-order .form-row label > span a {
  text-transform: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
}

.woocommerce-terms-and-conditions-checkbox-text {
  text-transform: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
}
.woocommerce-terms-and-conditions-checkbox-text a {
  text-transform: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
}

.woocommerce-order-received .woocommerce-order {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.woocommerce-order-received .woocommerce-order span {
  align-self: center;
}
.woocommerce-order-received p {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .woocommerce-checkout .site {
    flex-direction: column-reverse;
  }
  .cart-content-inner {
    position: static;
  }
}
.page-template-policies ol {
  list-style-position: inside;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.page-template-policies ol li {
  text-align: justify;
}

@media only screen and (max-width: 1420px) {
  .page-template-policies ol {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .page-template-policies ol {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 862px) {
  .page-template-policies ol {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 560px) {
  .page-template-policies ol {
    grid-template-columns: 1fr;
  }
}
* {
  color: #000000;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  -webkit-tap-highlight-color: transparent;
  font-family: "IBM Plex Mono", sans-serif;
}

html {
  scrollbar-gutter: stable;
}

body {
  background-color: #f0eee9;
}
body.block-scroll {
  overflow: hidden;
}

button {
  background-color: transparent;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

p,
li,
a,
button,
span,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
}

ul {
  list-style-type: none;
}

#wpadminbar span,
#included-files-list li {
  color: white;
}

.icon {
  height: 30px;
  width: 30px;
  background-color: #000000;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat; /* Safari */
  mask-size: cover; /* Vagy 'cover', attól függően, mi a jobb */
  -webkit-mask-size: cover; /* Safari */
  mask-position: center;
  -webkit-mask-position: center;
  transition: background-color 0.5s;
}

.plus-icon {
  mask-image: url("../../inc/assets/img/icons/plus-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/plus-icon.svg"); /* Safari támogatás */
}

.close-icon {
  transform: rotate(45deg);
}

.back-icon {
  mask-image: url("../../inc/assets/img/icons/back-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/back-icon.svg"); /* Safari támogatás */
}

.cart-icon {
  mask-image: url("../../inc/assets/img/icons/cart-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/cart-icon.svg"); /* Safari támogatás */
}

.open-menu-icon {
  mask-image: url("../../inc/assets/img/icons/open-menu-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/open-menu-icon.svg"); /* Safari támogatás */
}

.instagram-icon {
  mask-image: url("../../inc/assets/img/icons/ig-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/ig-icon.svg"); /* Safari támogatás */
}

.clock-icon {
  mask-image: url("../../inc/assets/img/icons/clock-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/clock-icon.svg"); /* Safari támogatás */
}

.furniture-icon {
  mask-image: url("../../inc/assets/img/icons/furniture-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/furniture-icon.svg"); /* Safari támogatás */
}

.clothes-icon {
  mask-image: url("../../inc/assets/img/icons/clothes-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/clothes-icon.svg"); /* Safari támogatás */
}

.print-icon {
  mask-image: url("../../inc/assets/img/icons/print-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/print-icon.svg"); /* Safari támogatás */
}

.minus-icon {
  mask-image: url("../../inc/assets/img/icons/minus-icon.svg");
  -webkit-mask-image: url("../../inc/assets/img/icons/minus-icon.svg"); /* Safari támogatás */
}

.payment_method_cod .shipping-icon .icon {
  background-color: transparent !important;
  background-image: url("../assets/img/icons/box-icon.svg");
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}

.payment_method_stripe .shipping-icon .icon {
  background-color: transparent !important;
  background-image: url("../assets/img/icons/credit-card.svg");
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}

.stripe-cards-icon {
  display: none;
}

#shipping_method_0_flat_rate2 + label .shipping-icon .icon {
  background-color: transparent;
  background-image: url("../assets/img/icons/truck-icon.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

#shipping_method_0_local_pickup3 + label .shipping-icon .icon {
  background-color: transparent;
  background-image: url("../assets/img/icons/box-icon.svg");
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}

.site {
  min-height: calc(100svh - 70px);
}

.woocommerce-order-recieved .site,
.error404 .site,
.error500 .site,
.page-template-policies .site,
.page-template-default .site {
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.woocommerce-order-recieved .site ol,
.error404 .site ol,
.error500 .site ol,
.page-template-policies .site ol,
.page-template-default .site ol {
  list-style: none;
  counter-reset: item;
}
.woocommerce-order-recieved .site ol > li,
.error404 .site ol > li,
.error500 .site ol > li,
.page-template-policies .site ol > li,
.page-template-default .site ol > li {
  counter-increment: item;
}
.woocommerce-order-recieved .site ol > li::before,
.error404 .site ol > li::before,
.error500 .site ol > li::before,
.page-template-policies .site ol > li::before,
.page-template-default .site ol > li::before {
  content: counter(item) ") ";
}

.page-template-default .site {
  text-align: justify;
}

.justify {
  display: flex;
  justify-content: space-between;
}

.woocommerce-NoticeGroup,
.woocommerce-notices-wrapper {
  position: fixed;
  top: 100px;
  right: 20px;
  max-width: 25%;
  z-index: 1000;
}
.woocommerce-NoticeGroup ul li,
.woocommerce-NoticeGroup .woocommerce-message,
.woocommerce-notices-wrapper ul li,
.woocommerce-notices-wrapper .woocommerce-message {
  background-color: #f0eee9;
  padding: 4px;
  border: 1px solid #000000;
}
.woocommerce-NoticeGroup ul,
.woocommerce-notices-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.woocommerce-NoticeGroup,
.woocommerce-notices-wrapper {
  pointer-events: none;
}
.woocommerce-NoticeGroup .woocommerce-message,
.woocommerce-NoticeGroup .woocommerce-error,
.woocommerce-NoticeGroup .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  pointer-events: auto;
}

/*# sourceMappingURL=main.css.map */
