/*!***************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \***************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.cac-list,
.cac-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cac-sublist {
  padding-left: 0.75rem;
  overflow: hidden;
}

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

.cac-link {
  display: block;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
  padding: 0.35rem 0;
  line-height: 1.4;
}

.cac-link:hover {
  color: var(--global-palette1);
}

.cac-link__name--root {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.cac-level-1 .cac-link,
.cac-level-2 .cac-link {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.cac-level-1 .cac-link:hover,
.cac-level-2 .cac-link:hover {
  color: #1a1a1a;
}

.cac-link.current-category .cac-link__name {
  color: #1a1a1a;
  font-weight: 600;
}

.cac-link.ancestor-category .cac-link__name--root {
  color: #1a1a1a;
}

.cac-toggle {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cac-toggle:hover, .cac-toggle:focus {
  background-color: var(--global-palette1);
}
.cac-toggle:hover .cac-toggle__icon::before,
.cac-toggle:hover .cac-toggle__icon::after, .cac-toggle:focus .cac-toggle__icon::before,
.cac-toggle:focus .cac-toggle__icon::after {
  background: #fff;
}
.cac-toggle:focus {
  background-color: transparent;
}
.cac-toggle:focus .cac-toggle__icon::before,
.cac-toggle:focus .cac-toggle__icon::after {
  background: #1a1a1a;
}
.cac-toggle:focus-visible {
  outline: none;
}

.cac-toggle__icon {
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
}

.cac-toggle__icon::before,
.cac-toggle__icon::after {
  content: "";
  position: absolute;
  background: #1a1a1a;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cac-toggle__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.cac-toggle__icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
  opacity: 1;
}

.cac-toggle[aria-expanded=true] .cac-toggle__icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.cac-item--root {
  padding: 0.6rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.cac-item--root:first-child {
  border-top: 1px solid #e8e8e8;
}

.cac-level-1 .cac-item,
.cac-level-2 .cac-item {
  padding: 0.15rem 0;
}

.cac-sublist {
  transition: height 0.25s ease;
}

.cct-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .cct-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .cct-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.cct-tile {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cct-tile:hover {
  text-decoration: none;
  color: inherit;
}

.cct-tile__image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.cct-tile:hover .cct-tile__image {
  transform: scale(1.04);
}

.cct-tile__placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.cct-tile__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
  flex: 1;
}

.cct-tile {
  padding: 24px;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
}
.cct-tile::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 100%);
  display: block;
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}
.cct-tile__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cct-tile__name {
  font-family: var(--global-heading-font-family);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.05rem;
}
.cct-tile__link {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.cct-tile__link svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.woo-archive-image-hover-zoom .woocommerce-loop-product__link .attachment-woocommerce_thumbnail {
  transition: opacity 0.4s ease, transform 1s cubic-bezier(0, 0, 0.4, 1.1);
}

div.quantity {
  display: inline-flex;
  align-items: center;
}

.unit-of-measure {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  vertical-align: middle; /* wyrównanie z div.quantity */
}

.unit-of-measure:empty {
  display: none;
}

.woocommerce-cart-form .unit-of-measure {
  margin-right: 0;
  margin-left: 8px;
}
