/** Shopify CDN: Minification failed

Line 16:13 Expected identifier but found whitespace
Line 16:15 Unexpected "{"
Line 16:24 Expected ":"
Line 16:65 Expected ":"

**/
/* ============================================================
   KANIN SHOP HERO — kanin-shop-hero.css
   ============================================================ */

.kanin-shop-hero {
  position: relative;
  width: 100%;
  min-height: {{ section.settings.hero_height | default: 280 }}px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}

.kanin-shop-hero--with-image {
  min-height: var(--kanin-hero-height, 280px);
}

.kanin-shop-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kanin-shop-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kanin-shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.kanin-shop-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.kanin-shop-hero__heading {
  font-family: "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.kanin-shop-hero__sub {
  font-family: "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .kanin-shop-hero__content {
    padding: 48px 20px;
  }
}