/** Shopify CDN: Minification failed

Line 7:18 Expected identifier but found whitespace
Line 7:25 Unexpected "/"

**/
Save this file as: assets/section-featured-collection-kalles.css

[class^="kalles-fc-"] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.kalles-fc__header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.kalles-fc__heading {
  font-size: var(--kfc-heading-size, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 6px;
  background: #fff;
  display: inline-block;
  padding: 0 20px;
  color: var(--kfc-heading-color, #1a1a1a);
}

.kalles-fc__header::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ccc;
  z-index: -1;
}

.kalles-fc__subheading {
  font-size: 14px;
  font-style: italic;
  color: var(--kfc-subheading-color, #777);
  margin: 4px 0 0;
}

.kalles-fc__empty-state {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 40px 0;
}

.kalles-fc__grid {
  display: grid;
  grid-template-columns: repeat(var(--kfc-columns-desktop, 4), 1fr);
  gap: var(--kfc-grid-gap, 20px);
}

@media (max-width: 989px) {
  .kalles-fc__grid { grid-template-columns: repeat(var(--kfc-columns-mobile, 2), 1fr); }
}
@media (max-width: 480px) {
  .kalles-fc__grid { grid-template-columns: repeat(var(--kfc-columns-mobile, 2), 1fr); gap: calc(var(--kfc-grid-gap, 20px) / 2); }
}

.kalles-fc__card {
  display: flex;
  flex-direction: column;
}

.kalles-fc__card-image-link {
  display: block;
  text-decoration: none;
}

.kalles-fc__card-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
  border-radius: var(--kfc-image-radius, 4px);
}

.kalles-fc__card-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kalles-fc__card-image-link:hover .kalles-fc__card-image {
  transform: scale(1.04);
}

.kalles-fc__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--kfc-badge-bg, #e0142c);
  color: var(--kfc-badge-color, #ffffff);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--kfc-badge-radius, 2px);
  line-height: 1.4;
}

.kalles-fc__card-info {
  text-align: center;
  padding-top: 12px;
}

.kalles-fc__card-vendor {
  font-size: 12px;
  color: var(--kfc-vendor-color, #999);
  text-transform: uppercase;
  margin: 0 0 4px;
  letter-spacing: 0.03em;
}

.kalles-fc__card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.kalles-fc__card-title a {
  color: var(--kfc-title-color, #222);
  text-decoration: none;
}

.kalles-fc__card-title a:hover {
  text-decoration: underline;
}

.kalles-fc__card-price {
  font-size: 14px;
}

.kalles-fc__price-compare {
  text-decoration: line-through;
  color: var(--kfc-compare-price-color, #999);
  margin-right: 8px;
}

.kalles-fc__price-sale {
  color: var(--kfc-sale-price-color, #e0142c);
  font-weight: 700;
}

.kalles-fc__price-regular {
  color: var(--kfc-price-color, #222);
  font-weight: 600;
}

.kalles-fc__footer {
  margin-top: 36px;
  text-align: center;
}

.kalles-fc__progress-text {
  font-size: 13px;
  color: #666;
  margin: 0 0 10px;
}

.kalles-fc__progress-bar {
  width: 220px;
  height: 3px;
  background: #eee;
  margin: 0 auto 20px;
  border-radius: 2px;
  overflow: hidden;
}

.kalles-fc__progress-fill {
  height: 100%;
  background: var(--kfc-progress-color, #e0142c);
  transition: width 0.3s ease;
}

.kalles-fc__load-more {
  background: var(--kfc-button-bg, #ff2d78);
  color: var(--kfc-button-color, #ffffff);
  border: none;
  padding: 12px 32px;
  border-radius: var(--kfc-button-radius, 24px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.kalles-fc__load-more:hover {
  background: var(--kfc-button-hover-bg, #e01d66);
}

.kalles-fc__load-more[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}