/* /Pages/BouquetCare.cshtml.rz.scp.css */
.bouquet-care-page[b-o6a9y85e93] {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Hero Section */
.hero-section p[b-o6a9y85e93] {
  line-height: 1.7;
}

.hero-image[b-o6a9y85e93] {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.08);
  aspect-ratio: 1 / 1;
}

/* Method Sections */
.care-method-section[b-o6a9y85e93] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.method-header p[b-o6a9y85e93] {
  line-height: 1.7;
}

/* Method Cards */
.method-card[b-o6a9y85e93] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method-card-image[b-o6a9y85e93] {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.08);
  aspect-ratio: 8 / 7;
}


/* /Pages/Catalog.cshtml.rz.scp.css */
/* --- Catalog Page: Hero Section --- */
.catalog-hero[b-jmyiqoktpr] {
    background-color: var(--bg-off-white);
    border-bottom: 1px solid var(--border-grey);
}

/* --- Catalog Page: Category Tile Component --- */
.category-tile[b-jmyiqoktpr] {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile:hover[b-jmyiqoktpr] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-tile-link[b-jmyiqoktpr] {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Ensures link hover state doesn't add underlines */
.category-tile-link:hover[b-jmyiqoktpr] {
    text-decoration: none;
    color: inherit;
}

.category-tile-image[b-jmyiqoktpr] {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: var(--border-grey); /* Fallback color for missing images */
}

.category-tile-overlay[b-jmyiqoktpr] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: background 0.3s ease;
}

/* Changes the overlay color on hover for a dynamic effect */
.category-tile:hover .category-tile-overlay[b-jmyiqoktpr] {
    background: linear-gradient(
        135deg,
        rgba(74, 93, 82, 0.6) 0%,
        rgba(74, 93, 82, 0.4) 50%,
        rgba(74, 93, 82, 0.8) 100%
    );
}

.category-tile-title[b-jmyiqoktpr] {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Responsive Adjustments for Catalog --- */
@media (max-width: 768px) {
    .category-tile-image[b-jmyiqoktpr] {
        height: 240px;
    }

    .category-tile-title[b-jmyiqoktpr] {
        font-size: 1.5rem;
    }

    .category-tile-overlay[b-jmyiqoktpr] {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .category-tile-image[b-jmyiqoktpr] {
        height: 200px; /* Further reduce height on mobile */
    }

    .category-tile-title[b-jmyiqoktpr] {
        font-size: 1.3rem;
    }

    .category-tile-overlay[b-jmyiqoktpr] {
        padding: 1rem;
    }
}
/* /Pages/Category.cshtml.rz.scp.css */
/* Page-specific styles for Category page */

/* Full-width hero with background image and overlay content */
.category-hero[b-28y02sfn12] {
  position: relative;
  margin-top: 0; /* ensure no top gap */
  /* Solid background ensures perfect blend when image is masked */
  background: var(--bg-off-white, #F5F1ED);
}
.category-hero .category-hero-bg[b-28y02sfn12] {
  position: relative;
  width: 100%;
  height: 38vh; /* initial height; can be tuned */
  min-height: 220px;
  max-height: 520px;
  z-index: 0;
  /* Paint two backgrounds: top transparent -> bottom page color, then image */
  background-image:
    linear-gradient(to bottom, rgba(245,241,237,0) 50%, rgba(245,241,237,1) 100%),
    var(--hero-image);
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover; /* cover = crop (no squish) */
  background-position: top, center;
}
.category-hero .category-hero-overlay[b-28y02sfn12] {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 0 1.5rem;
  color: var(--text-charcoal);
  z-index: 2;
}
/* bottom-fade layer no longer needed because gradient is baked into background */

#category-root .category-breadcrumbs[b-28y02sfn12] {
  margin-top: .25rem;
}

/* Remove boxed panel look; tree should blend with background */
#category-root .category-panel[b-28y02sfn12] {
  background: transparent;
  border: 0;
  border-radius: 0;
}

/* Translucent text panel to maintain readability over images */
.category-hero .text-panel[b-28y02sfn12] {
  display: inline-block;
  background: rgba(245,241,237,0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: .5rem;
  padding: .75rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 100%;
}

/* Improve breadcrumb contrast within the hero panel */
.category-hero .text-panel .breadcrumb[b-28y02sfn12] {
  color: var(--text-charcoal, #333333);
  margin-bottom: 0;
  /* Bootstrap 5 variable for divider color */
  --bs-breadcrumb-divider-color: rgba(51,51,51,0.6);
}
.category-hero .text-panel .breadcrumb .breadcrumb-item a[b-28y02sfn12] {
  color: var(--text-charcoal, #333333) !important;
  text-decoration: none;
}
.category-hero .text-panel .breadcrumb .breadcrumb-item a:hover[b-28y02sfn12],
.category-hero .text-panel .breadcrumb .breadcrumb-item a:focus[b-28y02sfn12] {
  text-decoration: underline;
}
.category-hero .text-panel .breadcrumb .breadcrumb-item + .breadcrumb-item[b-28y02sfn12]::before {
  color: rgba(51,51,51,0.6);
}
.category-hero .text-panel .breadcrumb .breadcrumb-item.active[b-28y02sfn12] {
  color: var(--text-charcoal, #333333);
  font-weight: 600;
}

/* Category tree (always expanded) */
.category-tree[b-28y02sfn12] { }
.category-tree .item[b-28y02sfn12] { position: relative; }
.category-tree ul[b-28y02sfn12] { margin: 0; }
.category-tree .category-item[b-28y02sfn12] { padding: 0 !important; margin: 0; }
.category-tree .item[b-28y02sfn12] { padding-top: 4px; padding-bottom: 4px; }
.category-tree .category-link[b-28y02sfn12] {
  color: var(--text-charcoal, #333333);
  text-decoration: none;
  display: inline-block;
}
.category-tree .category-link:hover[b-28y02sfn12],
.category-tree .category-link:focus[b-28y02sfn12] { text-decoration: underline; }
.category-tree .category-item.active > .item[b-28y02sfn12] { font-weight: 700; }
.category-tree .category-item.active > .item[b-28y02sfn12]::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #4A5D52; /* primary */
  border-radius: 2px;
}
.category-tree .category-item.ancestor > .item[b-28y02sfn12] { font-weight: 600; }

/* Current (active) category label is not a link */
.category-tree .category-current[b-28y02sfn12] {
  color: var(--text-charcoal, #333333);
  text-decoration: none;
  cursor: default;
}

/* Product card placeholders while rebuilding */
.product-card .product-card-img[b-28y02sfn12] {
  position: relative;
  width: 100%;
  padding-top: 62.5%; /* 16:10 ratio placeholder */
  border-bottom: 1px solid var(--border-grey, #D9D9D9);
}
.product-card .product-card-img img[b-28y02sfn12] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
  z-index: 0;
}
.product-card:hover .product-card-img img[b-28y02sfn12] {
  transform: scale(1.03);
}

/* Tweak placeholder asset scaling so it doesn't overwhelm the frame */
.product-card .product-card-img img[src$="no-image.png"][b-28y02sfn12] {
  width: 60%;
  height: 60%;
  object-fit: contain;
  margin: auto; /* centers with inset: 0 */
}
.product-card:hover .product-card-img img[src$="no-image.png"][b-28y02sfn12] {
  transform: none; /* don't zoom the placeholder */
}

/* Visually distinguish non-purchasable states */
/* Dim state: keep colors visible, add a soft overlay and mute text */
.product-card.dimmed .product-card-img[b-28y02sfn12]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 1;
  /* Slightly reduce contrast without killing color */
  backdrop-filter: saturate(0.9) brightness(0.92);
}
.product-card.dimmed .card-title[b-28y02sfn12] { color: #6c757d; }
.product-card.dimmed .card-footer[b-28y02sfn12] { opacity: .8; }
.product-card.dimmed:hover .product-card-img img[b-28y02sfn12] { transform: none; }

/* Normalize footer row height so badge position is consistent */
.product-card .product-meta-row[b-28y02sfn12] {
  min-height: 1.5rem; /* match typical text line height */
}

/* Truncate to 2 lines where supported */
.line-clamp-2[b-28y02sfn12] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Inline catalog drawer layout */
#category-layout[b-28y02sfn12] {
  display: flex;
  gap: 0; /* remove implicit space between sidebar and grid */
  align-items: flex-start;
}
#categorySidebar[b-28y02sfn12] {
  width: 200px;
  flex-shrink: 0;
  transition: width .3s ease, opacity .2s ease;
  opacity: 1;
  overflow: hidden;
  padding: 0;
  will-change: width;
}
#category-tree-inline[b-28y02sfn12] { width: 500px; }
#productGridCol[b-28y02sfn12] {
  flex: 1 1 auto;
  min-width: 0;
  transition: flex-basis .3s ease, max-width .3s ease;
}
.catalog-expanded #categorySidebar[b-28y02sfn12],
#categorySidebar[b-28y02sfn12] { margin-right: 1.5rem; }
.catalog-collapsed #categorySidebar[b-28y02sfn12] {
  width: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: 0 !important;
}

/* Mobile: stack, with collapsible height for the catalog */
@media (max-width: 991.98px) {
  #category-layout[b-28y02sfn12] {
    flex-direction: column;
  }
  #categorySidebar[b-28y02sfn12] {
    width: 100%;
    transition: height .3s ease, opacity .2s ease;
    margin-right: 0; /* no side margin when stacked */
    margin-bottom: 1.5rem; /* space below when expanded */
  }
  #category-tree-inline[b-28y02sfn12] { width: 100%; }
  .catalog-collapsed #categorySidebar[b-28y02sfn12] {
    /* Collapse from the bottom like desktop collapses from the right */
    height: 0;
    margin-bottom: 0;
    opacity: 0;
  }
}
/* /Pages/Faq.cshtml.rz.scp.css */
.faq-page[b-jdkjko8nl0] {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-sections[b-jdkjko8nl0] {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Section Titles */
.faq-section-title[b-jdkjko8nl0] {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-grey);
}

/* Accordion Styling */
.accordion-item[b-jdkjko8nl0] {
  border: 1px solid var(--border-grey);
  border-radius: 0.5rem !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-item:last-child[b-jdkjko8nl0] {
  margin-bottom: 0;
}

.accordion-button[b-jdkjko8nl0] {
  font-weight: 500;
  padding: 1rem 1.25rem;
  background-color: transparent;
}

.accordion-button:not(.collapsed)[b-jdkjko8nl0] {
  background-color: rgba(74, 93, 82, 0.05);
  color: var(--primary-green);
  box-shadow: none;
}

.accordion-button:focus[b-jdkjko8nl0] {
  box-shadow: none;
  border-color: var(--primary-green);
}

.accordion-button[b-jdkjko8nl0]::after {
  background-size: 1rem;
}

/* Accordion Body */
.accordion-body[b-jdkjko8nl0] {
  padding: 1rem 1.25rem 1.25rem;
  line-height: 1.7;
}

.accordion-body p:last-child[b-jdkjko8nl0] {
  margin-bottom: 0;
}

.accordion-body ul[b-jdkjko8nl0],
.accordion-body ol[b-jdkjko8nl0] {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.accordion-body ul:last-child[b-jdkjko8nl0],
.accordion-body ol:last-child[b-jdkjko8nl0] {
  margin-bottom: 0;
}

.accordion-body li[b-jdkjko8nl0] {
  margin-bottom: 0.5rem;
}

.accordion-body li:last-child[b-jdkjko8nl0] {
  margin-bottom: 0;
}

.accordion-body a[b-jdkjko8nl0] {
  color: var(--primary-green);
  text-decoration: underline;
}

.accordion-body a:hover[b-jdkjko8nl0] {
  color: var(--text-charcoal);
}
/* /Pages/Index.cshtml.rz.scp.css */
/* Horizontal scroll snap for featured products */
.scroll-snap-x[b-zyax7bo8pr] {
  scroll-snap-type: x mandatory;
}
.scroll-snap-inner[b-zyax7bo8pr] {
  scroll-padding-left: 1rem;
}
.scroll-snap-item[b-zyax7bo8pr] {
  scroll-snap-align: start;
}

/* Scroll buttons for horizontal list */
/* Place buttons outside container edges without overlap */
.scroll-btn[b-zyax7bo8pr] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.95;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.scroll-btn i[b-zyax7bo8pr] { font-size: 1rem; }
.scroll-btn-prev[b-zyax7bo8pr] {
  left: -1.75rem; /* stick outside the container */
}
.scroll-btn-next[b-zyax7bo8pr] {
  right: -1.75rem; /* stick outside the container */
}
@media (min-width: 992px) {
  .scroll-btn-prev[b-zyax7bo8pr] { left: -2rem; }
  .scroll-btn-next[b-zyax7bo8pr] { right: -2rem; }
}
@media (hover: hover) {
  .scroll-btn[b-zyax7bo8pr] { opacity: 0.6; transition: opacity 120ms ease; }
  .scroll-btn:hover[b-zyax7bo8pr] { opacity: 1; }
}

/* Product card hover effects */
.product-card[b-zyax7bo8pr] {
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.product-card:hover[b-zyax7bo8pr] {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

/* Improve scrollbar aesthetics where supported */
.scroll-snap-x[b-zyax7bo8pr] {
  scrollbar-width: thin;
}
.scroll-snap-x[b-zyax7bo8pr]::-webkit-scrollbar {
  height: 8px;
}
.scroll-snap-x[b-zyax7bo8pr]::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* Offset hero to sit behind the fixed navbar */
.home-hero[b-zyax7bo8pr] {
  margin-top: -4rem;
}
@media (min-width: 992px) {
  .home-hero[b-zyax7bo8pr] {
    margin-top: -4.5rem;
  }
}

/*.carousel-caption h1 {*/
/*    font-size: 1.5rem;*/
/*}*/

/*.carousel-caption p {*/

/*}*/

.caption-separator[b-zyax7bo8pr] {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 2rem 1rem;
}
/* /Pages/Metryczka.cshtml.rz.scp.css */
/* Fix: Bootstrap's .lead uses font-weight: 300, so 'bolder' only goes to 400 */
.metryczka-page .lead strong[b-a1lk9h0i2o] {
  font-weight: 700;
}

.metryczka-image[b-a1lk9h0i2o] {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.08);
  aspect-ratio: 1 / 1;
}

/* Desktop: float image to the right, same size as BouquetCare hero (col-lg-6 = 50%) */
@media (min-width: 992px) {
  .metryczka-image[b-a1lk9h0i2o] {
    width: 50%;
  }
}
/* /Pages/Product.cshtml.rz.scp.css */
/* Thumbnail-specific sizing (shared h-scroll styles live in site.css) */
.thumb-btn[b-15fekyijdx] { flex: 0 0 auto; }
.thumb-img[b-15fekyijdx] { height: 72px; width: auto; object-fit: cover; display: block; padding: 0; }
.thumb-btn[aria-current="true"] .thumb-img[b-15fekyijdx] { outline: 2px solid var(--bs-primary); outline-offset: 1px; }

/* No-image fallback: same mechanism as product cards */
.no-image-fallback[b-15fekyijdx] {
  position: relative;
  width: 100%;
  padding-top: 62.5%; /* 16:10 ratio to mirror cards */
}
.no-image-fallback img[b-15fekyijdx] {
  position: absolute;
  inset: 0;
  width: 60%;
  height: 60%;
  object-fit: contain;
  margin: auto; /* centers within inset box */
}
@media (max-width: 575.98px) {
  .no-image-fallback img[b-15fekyijdx] { width: 65%; height: 65%; }
}
@media (max-width: 575.98px) {
  .thumb-img[b-15fekyijdx] { height: 60px; width: auto; }
}
