/** Shopify CDN: Minification failed

Line 20:8 Unexpected "{"
Line 20:17 Expected ":"
Line 20:24 Unexpected "{"
Line 32:8 Unexpected "{"
Line 32:17 Expected ":"
Line 39:8 Unexpected "{"
Line 39:17 Expected ":"
Line 45:8 Unexpected "{"
Line 45:17 Expected ":"
Line 49:8 Unexpected "{"
... and 227 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* CSS Variables - używamy globalnych z :root w theme.css */
#Blog--{{ section.id }} {
  /* Theme variables fallbacks */
  --inner: 30px;
  --outer: 40px;
  --gutter: 30px;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-light: #e5e7eb;
  --text-dark: #9ca3af;
}

/* CRITICAL BASE LAYOUT STYLES */
#Blog--{{ section.id }}.blog-section {
  position: relative;
  padding-top: var(--PT);
  padding-bottom: var(--PB);
  text-align: left;
}

#Blog--{{ section.id }} .section-padding {
  padding-top: var(--PT, 32px);
  padding-bottom: var(--PB, 0);
}

/* Blog header and title */
#Blog--{{ section.id }} .blog__header {
  margin-bottom: var(--dv-spacing-xl);
}

#Blog--{{ section.id }} .blog__title {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  font-size: 2.5rem !important;
  margin: 0 0 var(--gutter);
  text-align: center;
  overflow-wrap: break-word;
  color: var(--COLOR-TEXT);
}

@media only screen and (min-width: 768px) {
  #Blog--{{ section.id }} .blog__title {
    font-size: 3rem !important;
  }
}

@media only screen and (min-width: 1024px) {
  #Blog--{{ section.id }} .blog__title {
    font-size: 3.5rem !important;
  }
}

/* Gradient text support - używa globalnej klasy z theme.css */
#Blog--{{ section.id }} .blog__title .dahlia-vacker-gradient-text {
  /* Gradient zdefiniowany globalnie w theme.css */
}

/* Title divider */
#Blog--{{ section.id }} .blog__title::after {
  content: '';
  display: block;
  height: 1px;
  width: 4rem;
  background: var(--COLOR-ACCENT);
  margin: 1.5rem auto 0;
}

#Blog--{{ section.id }} .blog__title .icon {
  position: relative;
  top: -2px;
  width: 0.73em;
  height: 0.73em;
}

#Blog--{{ section.id }} .blog__title a {
  color: inherit;
}

/* Blog description */
#Blog--{{ section.id }} .blog__description {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: var(--COLOR-TEXT-LIGHT) !important;
  text-align: center !important;
  letter-spacing: 0.01em !important;
  max-width: 65% !important;
  margin: 0 auto 3rem auto !important;
}

#Blog--{{ section.id }} .blog__description p {
  margin: 0;
}

/* Grid outer container */
#Blog--{{ section.id }} .grid-outer {
  padding: 0;
}

/* Blog listing grid */
#Blog--{{ section.id }} .blog-listing {
  display: grid;
  grid-template-columns: repeat(var(--COLUMNS), 1fr);
  gap: var(--gap);
}

@media only screen and (max-width: 989px) {
  #Blog--{{ section.id }} .blog-listing {
    grid-template-columns: repeat(var(--COLUMNS-MEDIUM), 1fr);
  }
}

/* Responsive grid - respects admin settings */
@media only screen and (min-width: 750px) and (max-width: 1023px) {
  #Blog--{{ section.id }} .blog-listing {
    grid-template-columns: repeat(var(--COLUMNS-TABLET), 1fr);
  }
}

@media only screen and (max-width: 749px) {
  #Blog--{{ section.id }} .blog-listing {
    grid-template-columns: repeat(var(--COLUMNS-MOBILE), 1fr);
    justify-content: center;
  }
}

/* Article grid item */
#Blog--{{ section.id }} .article-grid-item {
  margin-bottom: 30px;
}

/* DAHLIA VACKER CUSTOM ARTICLE CARD STYLES */
#Blog--{{ section.id }} .article {
  background: color-mix(in srgb, var(--COLOR-BG) 30%, transparent) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 1.25rem !important;
  padding: 1.5rem !important;
  border: 1px solid color-mix(in srgb, var(--COLOR-ACCENT) 20%, transparent) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

#Blog--{{ section.id }} .article:hover {
  transform: translateY(-4px) !important;
  border-color: color-mix(in srgb, var(--COLOR-ACCENT) 30%, transparent) !important;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--COLOR-BG) 30%, transparent), 0 8px 25px color-mix(in srgb, var(--COLOR-ACCENT) 20%, transparent) !important;
}

/* Article image */
#Blog--{{ section.id }} .article__image__outer {
  position: relative;
  overflow: hidden;
  border-radius: var(--dv-radius-md);
  margin-bottom: var(--dv-spacing-md);
}

#Blog--{{ section.id }} .article__image {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 0;
}

#Blog--{{ section.id }} .article__image-link {
  display: flex;
  position: relative;
  transition: var(--dv-transition-fast);
}

#Blog--{{ section.id }} .article__image-link:hover {
  transform: scale(1.02);
}

#Blog--{{ section.id }} .article__image-holder {
  overflow: hidden;
}

/* Article tags */
#Blog--{{ section.id }} .article__tags {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 15px 5px 25px;
  margin-bottom: 0;
}

#Blog--{{ section.id }} .article__tag {
  --bg: color-mix(in srgb, var(--COLOR-BG) 70%, transparent);
  --link: var(--COLOR-TEXT);
  --link-hover: var(--COLOR-ACCENT);
  display: inline-block;
  padding: 4px 12px;
  margin: 0 8px 8px 0;
  background: var(--bg);
  backdrop-filter: blur(8px);
  border-radius: var(--dv-radius-sm);
  font-size: 0.75rem;
  font-family: var(--dv-font-family);
  font-weight: var(--dv-font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--link);
  text-decoration: none;
  transition: var(--dv-transition-fast);
}

#Blog--{{ section.id }} .article__tag:hover {
  color: var(--link-hover);
  background: color-mix(in srgb, var(--COLOR-ACCENT) 20%, transparent);
}

/* Article text wrapper */
#Blog--{{ section.id }} .article__text-wrapper {
  padding: var(--inner) 0;
}

#Blog--{{ section.id }} .wrapper--full .article__text-wrapper,
#Blog--{{ section.id }} body.grid-compact .article__text-wrapper,
#Blog--{{ section.id }} body.has-line-design .article__text-wrapper {
  padding-left: 0;
  padding-right: 0;
}

/* Article title - DAHLIA VACKER CUSTOM */
#Blog--{{ section.id }} .article__title {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-regular) !important;
  font-size: 1.25rem !important;
  color: var(--COLOR-TEXT) !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  text-transform: none !important;
  line-height: 1.4 !important;
  letter-spacing: 0.01em !important;
}

#Blog--{{ section.id }} .article__title a {
  --link: var(--COLOR-TEXT);
  --link-hover: var(--COLOR-ACCENT);
  width: 100%;
  color: var(--link);
  text-decoration: none;
  transition: var(--dv-transition-fast);
}

#Blog--{{ section.id }} .article__title a:hover {
  color: var(--link-hover);
}

/* Article meta */
#Blog--{{ section.id }} .article__meta {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 16px;
  font-family: var(--dv-font-family);
  font-size: 0.875rem;
  color: var(--COLOR-TEXT-LIGHT);
  gap: 8px;
}

#Blog--{{ section.id }} .article__meta time {
  font-weight: var(--dv-font-weight-regular);
}

#Blog--{{ section.id }} .article__meta .separator {
  margin: 0 5px;
  opacity: 0.75;
}

#Blog--{{ section.id }} .article__meta__author {
  font-style: italic;
}

/* Article excerpt */
#Blog--{{ section.id }} .article__excerpt {
  font-family: var(--dv-font-family);
  font-weight: var(--dv-font-weight-light);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--COLOR-TEXT-A80);
  margin-top: 16px;
  margin-bottom: 0;
}

/* Article link / Read more button */
#Blog--{{ section.id }} .article__link {
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 0;
}

#Blog--{{ section.id }} .article__link a {
  --btn-text: var(--COLOR-ACCENT);
  --btn-text-hover: var(--COLOR-ACCENT-HOVER);
  font-family: var(--dv-font-family);
  font-weight: var(--dv-font-weight-medium);
  margin-bottom: 0;
  color: var(--btn-text);
  text-decoration: none;
  transition: var(--dv-transition-fast);
}

#Blog--{{ section.id }} .article__link a:hover {
  color: var(--btn-text-hover);
}

/* Blog button at bottom */
#Blog--{{ section.id }} .blog__button {
  margin-top: var(--dv-spacing-xl);
}



/* SVG placeholder for onboarding */
#Blog--{{ section.id }} .svg-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--dv-radius-md);
}

#Blog--{{ section.id }} .svg-placeholder svg {
  opacity: 0.3;
}

/* Pagination styles for dahlia-vacker */
#Blog--{{ section.id }} .pagination-custom {
  margin-top: var(--dv-spacing-xl);
  padding: var(--dv-spacing-lg) 0;
}

#Blog--{{ section.id }} .pagination-custom__page {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-regular) !important;
  color: var(--COLOR-TEXT) !important;
  transition: var(--dv-transition-fast) !important;
}

#Blog--{{ section.id }} .pagination-custom__page:hover {
  color: var(--COLOR-ACCENT) !important;
}

#Blog--{{ section.id }} .pagination-custom__page--active {
  color: var(--COLOR-ACCENT) !important;
  border-color: var(--COLOR-ACCENT) !important;
}

#Blog--{{ section.id }} .pagination-custom__prev,
#Blog--{{ section.id }} .pagination-custom__next {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-medium) !important;
  color: var(--COLOR-TEXT) !important;
  transition: var(--dv-transition-fast) !important;
}

#Blog--{{ section.id }} .pagination-custom__prev:hover,
#Blog--{{ section.id }} .pagination-custom__next:hover {
  color: var(--COLOR-ACCENT) !important;
}

/* Responsive adjustments */
@media only screen and (max-width: 749px) {
  #Blog--{{ section.id }} .blog__title {
    font-size: 2rem !important;
  }

  #Blog--{{ section.id }} .blog__description {
    font-size: 1rem !important;
  }

  #Blog--{{ section.id }} .article__text-wrapper {
    padding: var(--dv-spacing-md) 0;
  }
}
#Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .hero__title {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  font-size: 2.5rem !important;
  text-transform: none !important;
  color: var(--COLOR-TEXT) !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}

@media only screen and (min-width: 768px) {
  #Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .hero__title {
    font-size: 3rem !important;
  }
}

@media only screen and (min-width: 1024px) {
  #Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .hero__title {
    font-size: 3.5rem !important;
  }
}

#Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .dahlia-vacker-gradient-text {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: var(--dv-font-weight-light) !important;
  display: inline !important;
  position: relative !important;
  white-space: nowrap !important;
}

#Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .hero__title::after {
  content: '';
  display: block;
  height: 1px;
  width: 4rem;
  background: var(--COLOR-ACCENT);
  margin: 2rem auto 0;
}

#Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .hero__rte {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: var(--COLOR-TEXT-A80) !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  letter-spacing: 0.01em !important;
}

#Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .hero__content__wrapper {
  max-width: 75% !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

@media (max-width: 749px) {
    #Rte--{{ section.id }}[data-section-type="header-dahlia-vacker"] .hero__content__wrapper {
      max-width: 100% !important;
      margin: 0 auto !important;
      padding: 0 1rem !important;
    }
  }
/* Main hero container positioning */
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] {
  position: relative !important;
  overflow: visible !important;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__title,
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] h1,
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] h2 {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  letter-spacing: 0.025em !important;
  line-height: 1.25 !important;
  font-size: 3.75rem !important;
  text-transform: none !important;
  color: var(--COLOR-TEXT) !important;
}

@media only screen and (min-width: 1024px) {
  #Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__title,
  #Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] h1 {
    font-size: 6rem !important;
  }
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__content__wrapper {
  max-width: 90% !important;
  width: 90% !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: var(--full-screen) !important;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__content__wrapper .hero__content {
  max-width: 90% !important;
  width: 90% !important;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"]:not(:has(video)) {
  background: var(--COLOR-BG);
  position: relative;
  min-height: var(--full-screen) !important;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"].no-video {
  background: var(--COLOR-BG);
  position: relative;
  min-height: var(--full-screen) !important;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    color-mix(in srgb, var(--COLOR-BG) 40%, transparent) 75%,
    var(--COLOR-BG) 100%
  );
  z-index: 1;
  pointer-events: none;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--COLOR-BG) 15%, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Hide Picture-in-Picture button */
#Hero--{{ section.id }} video::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__content__wrapper {
  position: relative;
  z-index: 3;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__button,
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .btn {
  position: relative;
  background: linear-gradient(135deg, var(--BTN-PRIMARY-BG) 0%, var(--BTN-SECONDARY-BG) 100%) !important;
  border: none !important;
  border-radius: var(--dv-radius-md) !important;
  padding: 1rem 2.5rem !important;
  color: var(--BTN-PRIMARY-TEXT) !important;
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-medium) !important;
  font-size: 1.125rem !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  transition: var(--dv-transition-smooth) !important;
  box-shadow: 0 4px 20px rgba(var(--COLOR-BG-RGB), 0.3) !important;
  overflow: hidden;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__button::before,
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--BTN-PRIMARY-TEXT) 20%, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__button:hover,
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(var(--COLOR-BG-RGB), 0.5), 0 0 40px color-mix(in srgb, var(--COLOR-ACCENT) 20%, transparent) !important;
  background: linear-gradient(135deg, var(--BTN-SECONDARY-BG) 0%, var(--COLOR-ACCENT-HOVER) 100%) !important;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__button:hover::before,
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .btn:hover::before {
  width: 300px;
  height: 300px;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__button:active,
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .btn:active {
  transform: translateY(-1px) !important;
}

/* Scroll indicator styles */
#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .frame {
  position: relative;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .dahlia-vacker-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .dahlia-vacker-scroll-indicator:hover {
  opacity: 0.8;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .scroll-indicator-text {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

#Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .scroll-indicator-arrow {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.4);
  animation: bounce 2s infinite;
}


/* Bounce animation for scroll indicator */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 749px) {
  #Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__content__wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  #Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__content__wrapper .hero__content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  #Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .hero__description {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #Hero--{{ section.id }}[data-section-type="hero-dahlia-vacker"] .dahlia-vacker-scroll-indicator {
    bottom: 1rem;
  }
}
/* ============================================
   DAHLIA VACKER CUSTOM CONTENT - OVERRIDES ONLY
   Theme.css styles remain, these are ONLY overrides
   ============================================ */

/* CSS Variables - używamy globalnych z :root w theme.css */

/* DAHLIA VACKER OVERRIDES - TYLKO dla tego komponentu */

/* Section padding - używa ustawień z adminki */
#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] {

}



/* Product cards */
#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block {
  background: color-mix(in srgb, var(--COLOR-BG) 30%, transparent) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: var(--dv-radius-xl) !important;
  border: 1px solid color-mix(in srgb, var(--COLOR-ACCENT) 20%, transparent) !important;
  transition: var(--dv-transition-smooth) !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block:hover {
  transform: translateY(-4px) !important;
  border-color: color-mix(in srgb, var(--COLOR-ACCENT) 30%, transparent) !important;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--COLOR-BG) 30%, transparent), 0 8px 25px color-mix(in srgb, var(--COLOR-ACCENT) 20%, transparent) !important;
}

/* Card subheading */
#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block .hero__subheading {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  font-size: 0.85rem !important;
  color: var(--COLOR-ACCENT) !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  text-align: left !important;
  letter-spacing: 0.1em !important;
}

/* Card title */
#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block .hero__title {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-regular) !important;
  font-size: 1.25rem !important;
  color: var(--COLOR-TEXT) !important;
  margin-bottom: 0.75rem !important;
  text-transform: none !important;
  text-align: left !important;
  width: 100% !important;
  letter-spacing: 0.01em !important;
  line-height: 1.4 !important;
}

/* Card text */
#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block .hero__rte,
#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block .hero__rte p {
  line-height: 1.6 !important;
  font-size: 0.95rem !important;
  font-weight: var(--dv-font-weight-light) !important;
  text-align: left !important;
  width: 100% !important;
  font-family: var(--dv-font-family) !important;
  letter-spacing: 0.01em !important;
  margin: 0 0 1rem 0 !important;
  color: var(--COLOR-TEXT) !important;
}

/* Card button */
/* #BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block .btn {
  background: linear-gradient(135deg, var(--BTN-PRIMARY-BG) 0%, var(--BTN-SECONDARY-BG) 100%) !important;
  border: none !important;
  border-radius: var(--dv-radius-md) !important;
  padding: 0.875rem var(--dv-spacing-xl) !important;
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-regular) !important;
  font-size: 0.95rem !important;
  color: var(--BTN-PRIMARY-TEXT) !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  transition: var(--dv-transition-smooth) !important;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--COLOR-BG) 25%, transparent) !important;
} */

/* #BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--COLOR-BG) 40%, transparent) !important;
  background: linear-gradient(135deg, var(--BTN-SECONDARY-BG) 0%, var(--COLOR-ACCENT-HOVER) 100%) !important;
} */

/* Padding override - jedna zasada dla wszystkich kafelków */
#BrickSection--{{ section.id }}[data-section-type="products-content-dahlia-vacker"] .brick__block__text {
  padding: 2rem 1.5rem 3rem 1.5rem !important;
}
/* ============================================
   DAHLIA VACKER TEXT ROW - OVERRIDES ONLY
   Base styles z theme.css pozostają, tu są TYLKO overrides
   ============================================ */

/* CSS Variables - używamy globalnych z :root w theme.css */

/* Main title h2 - TYLKO dla tego komponentu */
#SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .grid__heading {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  font-size: 2.5rem !important;
  text-transform: none !important;
  color: var(--COLOR-TEXT) !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}

@media only screen and (min-width: 768px) {
  #SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .grid__heading {
    font-size: 3rem !important;
  }
}

@media only screen and (min-width: 1024px) {
  #SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .grid__heading {
    font-size: 3.5rem !important;
  }
}

/* Icon container - TYLKO dla tego komponentu - NIE nadpisuję koloru, używam oryginalnego icon_color */

/* Icon titles (h2/h3) dla NORMALNYCH sekcji z ikonami - heading-small */
#SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__heading.heading-small {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-regular) !important;
  color: var(--COLOR-TEXT) !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-size: 1.25rem !important;
}

@media only screen and (min-width: 768px) {
  #SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__heading.heading-small {
    font-size: 1.5rem !important;
  }
}

/* Icon text - TYLKO dla tego komponentu */
#SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__text,
#SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__text p {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  color: var(--COLOR-TEXT-A80) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.01em !important;
}

/* Stats numbers (h2/div) - heading-medium dla LICZB - ZMNIEJSZONE */
#SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__heading.heading-medium {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  font-size: 2rem !important;
  color: var(--COLOR-TEXT) !important;
  letter-spacing: -0.02em !important;
}

@media only screen and (min-width: 768px) {
  #SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__heading.heading-medium {
    font-size: 2.5rem !important;
  }
}

@media only screen and (min-width: 1024px) {
  #SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__heading.heading-medium {
    font-size: 3rem !important;
  }
}

/* Stats labels - TYLKO dla tego komponentu */
#SectionColumns--{{ section.id }}[data-section-type="text-row-dahlia-vacker"] .column__text.body-small {
  font-family: var(--dv-font-family) !important;
  font-weight: var(--dv-font-weight-light) !important;
  font-size: 0.875rem !important;
  color: var(--COLOR-TEXT-A80) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}