@charset "UTF-8";
/* Sticky kategória navigáció */
.ws-category-nav {
  border-bottom: 1px solid #dee2e6;
  z-index: 80;
  top: 66px;
}
@media (min-width: 992px) {
  .ws-category-nav {
    top: 70px;
  }
}
.ws-category-nav .category-box {
  overflow: unset;
  overflow-x: clip;
}
@media (min-width: 1200px) {
  .ws-category-nav .category-box {
    overflow: unset;
    overflow-x: clip;
  }
}
.ws-category-nav .category-box .category-mover {
  box-shadow: unset;
}
.ws-category-nav .category-row {
  overflow: auto;
}
.ws-category-nav .category-row.visible {
  overflow: visible;
}
.ws-category-nav .dropdown {
  position: relative;
}

.ws-category-nav .btn-category {
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  color: #101F49;
  padding: 6px 14px !important;
}
@media (min-width: 992px) {
  .ws-category-nav .btn-category {
    padding: 10px 16px !important;
  }
}
.ws-category-nav .btn-category .category-icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.ws-category-nav .btn-category.active {
  background-color: #101F49;
  color: #fff;
}
.ws-category-nav .btn-category.active .category-icon {
  filter: invert(1);
}

.filter-btn {
  padding: 8px 12px;
  background-color: #343a40;
  color: #fff;
}

/* Termékkártya */
.ws-product-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.ws-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.ws-product-card-img img {
  transition: transform 0.3s;
}

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

.ws-product-card-title {
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ws-product-sale-badge {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  padding: 0.4em 0.6em;
  top: 10px;
  left: -1px;
  z-index: 10;
  border-radius: 0 4px 4px 0;
}

.ws-product-label-badge {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  padding: 0.4em 0.6em;
  left: -1px;
  z-index: 10;
  border-radius: 0 4px 4px 0;
}

.ws-product-properties {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px 4px;
}
@media (min-width: 768px) {
  .ws-product-properties {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ws-product-properties .badge {
  white-space: unset;
  text-align: left;
}

/* Floating gombok */
.ws-cart-button, .ws-compare-button {
  transition: all 0.2s ease-in-out;
}

/*.ws-cart-button:hover, .ws-compare-button:hover {*/
/*    transform: scale(1.1);*/
/*}*/
/* Galéria */
.js-thumb.active {
  border-width: 2px !important;
}

.ws-thumbnails .ws-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Összehasonlítás táblázat */
.ws-compare-table th {
  vertical-align: middle;
}

.ws-compare-table td {
  vertical-align: middle;
  text-align: center;
}

/* Checkout */
.ws-checkout-item img {
  max-height: 80px;
}

/* Általános */
.ws-nowrap {
  white-space: nowrap;
}

.opacity-25 {
  opacity: 0.25;
}

.ws-breadcrumb .breadcrumb {
  overflow: auto;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
}

#baguetteBox-overlay .full-image img {
  backdrop-filter: blur(5px);
}

/* Vélemények csillagozás */
.ws-rating-input .fa-star {
  margin-right: 5px;
}

.ws-rating-input .fa-solid.fa-star {
  color: #ffc107;
}

/* Sidebar szűrők */
@media (max-width: 993px) {
  .ws-filter-sidebar {
    position: fixed;
    top: 66px;
    left: -100%;
    width: 100%;
    z-index: 90;
    transition: background-color 0.25s linear;
  }
  .ws-filter-sidebar.show {
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .ws-filter-sidebar.show .ws-filter-box {
    left: 0;
  }
  .ws-filter-sidebar .card-header, .ws-filter-sidebar .card-body, .ws-filter-sidebar .card {
    border-radius: 0;
  }
  .ws-filter-sidebar .ws-filter-box {
    margin: 0 -15px;
    width: 80%;
    left: -100%;
    height: calc(100vh - 66px);
    height: calc(var(--viewHeight, 1vh) * 100 - 66px);
    transition: left 0.25s linear;
  }
  .ws-filter-sidebar .ws-filter-box .card-body {
    overflow-y: auto;
  }
}

.ws-filter-box {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.ws-filter-group h6 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: #495057;
}

/* Betöltés állapot */
#product-list-container {
  transition: opacity 0.3s;
}

.ws-product-table thead th {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
}
.ws-product-table tbody td {
  padding: 4px 8px;
}
@media (min-width: 992px) {
  .ws-product-table tbody td {
    padding: 0.75rem;
  }
}
.ws-product-table tbody .ws-product-table-name {
  min-width: 180px;
}
.ws-product-table tbody .ws-product-table-name a {
  height: 46px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Globális gombok */
.ws-global-btn-items {
  display: flex;
  gap: 8px;
}
.ws-global-btn-items .ws-cart-button .badge, .ws-global-btn-items .ws-compare-button .badge {
  bottom: -4px;
  right: -4px;
  top: unset;
  font-size: 12px;
  transform: unset;
  border-radius: 50%;
  padding: 4px 6px;
  min-width: 20px;
}
.ws-global-btn-items .dropdown-menu {
  z-index: 85;
}
@media (max-width: 993px) {
  .ws-global-btn-items .dropdown-menu {
    position: fixed !important;
    top: 70px !important;
    left: 2% !important;
    transform: unset !important;
    width: 96%;
  }
}

.ws-cart-button, .ws-compare-button {
  position: relative;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  border: none;
  line-height: 1;
  z-index: 90;
  box-shadow: unset !important;
}
@media (min-width: 992px) {
  .ws-cart-button, .ws-compare-button {
    padding: 12px 16px;
  }
}

/* Saját beállítások */
.small {
  font-size: 90%;
}

.badge {
  font-size: 14px;
  font-weight: 600;
}

.fa-spin {
  font-size: 24px;
}

/* ------ Bootstrap felüldefiniálások ----- */
.btn, select, input, textarea {
  box-shadow: none !important;
}

.text-primary {
  color: #466CA7 !important;
}

.btn-primary {
  background-color: #5178b6;
  border-color: #5178b6;
  color: #fff;
}
.btn-primary:hover {
  background-color: #466CA7;
  border-color: #466CA7;
  color: #fff;
}

.btn-info {
  background-color: #4AAB73;
  border-color: #4AAB73;
  color: #fff;
}
.btn-info:hover {
  background-color: #4AAB73;
  border-color: #4AAB73;
  color: #fff;
}

.btn-outline-info {
  border-color: #4AAB73;
  color: #4AAB73;
}
.btn-outline-info:hover {
  background-color: #4AAB73;
  border-color: #4AAB73;
  color: #fff;
}

.bg-dark {
  background-color: #101F49 !important;
}

.bg-primary {
  background-color: #5178b6 !important;
}

.badge-info, .badge-secondary {
  background-color: #e9eded;
  color: #101F49;
}

/* Site toast message */
.ws-site-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1060;
  min-width: 250px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
}

/* Variation cards */
.ws-product-variation-card {
  transition: all 0.2s;
}
.ws-product-variation-card:hover {
  background-color: #f8f9fa;
  border-color: #5178b6 !important;
}
.ws-product-variation-card.active {
  cursor: default;
}

/* Related products modal */
.ws-related-products-scroll::-webkit-scrollbar {
  width: 6px;
  border-radius: 0;
}
.ws-related-products-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.ws-related-products-scroll::-webkit-scrollbar-thumb {
  background: #5178b6;
  border-radius: 0;
}
.ws-related-products-scroll::-webkit-scrollbar-thumb:hover {
  background: #466CA7;
}

.ws-related-product-item {
  transition: box-shadow 0.2s;
}
.ws-related-product-item:hover {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
}

/*# sourceMappingURL=webshop-site.css.map */
