/* Homepage (Blumen homepage design)
--------------------------------------------- */
body.bluthe_home {
  background: var(--bl-cream);
  color: var(--bl-navy);
}
.bluthe_home_main {
  font-family: var(--bl-serif);
  color: var(--bl-navy);
  -webkit-font-smoothing: antialiased;
}
/* Zero-specificity reset so component rules (e.g. .bluthe_custom__title) can set their own margins. */
:where(.bluthe_home_main) :is(h1, h2, h3, p) {
  margin: 0;
  color: inherit;
}
:where(.bluthe_home_main) a {
  color: var(--bl-navy);
  text-decoration: none;
}
.bluthe_home_main img {
  display: block;
  max-width: 100%;
}
.bluthe_home_main ::selection {
  background: var(--bl-navy);
  color: var(--bl-cream);
}

/* Shared pieces */
.bluthe_section_title {
  font-family: var(--bl-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.bluthe_section_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.bluthe_section_head--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 42px;
}
.bluthe_section_head--center .bluthe_section_title {
  max-width: none;
}
.bluthe_section_lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--bl-text-soft);
  max-width: 40ch;
  margin: 0;
}
.bluthe_section_note {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--bl-text-faint);
  margin-top: 34px;
}
.bluthe_section_foot {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
/* Hero
--------------------------------------------- */
.bluthe_hero {
  padding: 0;
}
.bluthe_slider--single {
  display: block;
}
.bluthe_owl-carousel .owl-stage-outer {
  overflow: hidden;
}
.bluthe_slide {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  width: 100%;
  background: var(--mobile-bg, var(--bl-sand));
  overflow: hidden;
}
.bluthe_slide_image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bluthe_slide_image img,
.bluthe_slide_link {
  display: block;
  width: 100%;
  height: 100%;
}
.bluthe_slide_image img {
  object-fit: cover;
}
.bluthe_slide_text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(28px, 5vw, 72px);
  pointer-events: none;
}
.bluthe_slide_text::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  background: linear-gradient(to top, rgba(251, 249, 246, 0.72), rgba(251, 249, 246, 0));
  pointer-events: none;
  z-index: -1;
}
.bluthe_slide_text > * {
  pointer-events: auto;
  max-width: 720px;
}
.bluthe_slide__title {
  font-family: var(--bl-serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  text-wrap: balance;
  color: var(--bl-navy);
}
.bluthe_slide__desc {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  max-width: 42ch;
  margin: 0 0 30px;
  color: rgba(22, 40, 63, 0.82);
}
.bluthe_slide__desc p {
  margin: 0;
}
.bluthe_slide__desc p + p {
  margin-top: 10px;
}
.bluthe_slide__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Carousel dots */
.owl-theme.bluthe_owl-carousel .owl-nav {
  display: none;
}
.owl-theme.bluthe_owl-carousel .owl-dots {
  position: absolute;
  bottom: 22px;
  inset-inline-end: 28px;
  margin: 0;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.owl-theme.bluthe_owl-carousel .owl-dots .owl-dot {
  margin: 0;
  background: transparent;
  border: 0;
  padding: 4px;
}
.owl-theme.bluthe_owl-carousel .owl-dots .owl-dot span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  border-radius: 0;
  background: rgba(22, 40, 63, 0.3);
  transition: background 0.2s ease;
}
.owl-theme.bluthe_owl-carousel .owl-dots .owl-dot.active span,
.owl-theme.bluthe_owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--bl-navy);
}

/* Services strip
--------------------------------------------- */
.bluthe_services_widget {
  margin-top: 1px;
}
.bluthe_services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-bottom: 1px solid var(--bl-line);
}
.bluthe_service {
  padding: 30px 26px;
  border-inline-start: 1px solid var(--bl-line);
}
.bluthe_service:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}
.bluthe_service:last-child {
  padding-inline-end: 0;
}
.bluthe_service__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.85;
}
.bluthe_service__title {
  font-family: var(--bl-serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 6px;
}
.bluthe_service__desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(22, 40, 63, 0.7);
  margin: 0;
}

/* Collection ("New arrivals")
--------------------------------------------- */
.bluthe_collection {
  padding: clamp(56px, 8vw, 104px) 0;
  margin: 0;
}
.bluthe_collection__toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--bl-line);
  padding-bottom: 18px;
}
.bluthe_collection__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bluthe_chip {
  background: transparent;
  color: rgba(22, 40, 63, 0.7);
  border: 1px solid rgba(22, 40, 63, 0.18);
  border-radius: 0;
  padding: 10px 20px;
  font-family: var(--bl-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.bluthe_chip:hover {
  border-color: var(--bl-navy);
  color: var(--bl-navy);
}
.bluthe_chip.is-active {
  background: var(--bl-navy);
  color: var(--bl-cream);
  border-color: var(--bl-navy);
}
.bluthe_collection__meta {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bluthe_kind_tabs {
  display: flex;
  gap: 4px;
  background: var(--bl-pill);
  border-radius: 999px;
  padding: 4px;
}
.bluthe_kind_tab {
  background: transparent;
  color: var(--bl-text-muted);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  padding: 9px 20px;
  font-family: var(--bl-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.bluthe_kind_tab.is-active {
  background: var(--bl-cream);
  color: var(--bl-navy);
  box-shadow: 0 1px 3px rgba(22, 40, 63, 0.14);
}
.bluthe_collection__count {
  font-size: 12px;
  font-weight: 300;
  color: var(--bl-text-muted);
}
.bluthe_collection__grid {
  --bl-scroller-item: 72vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: clamp(20px, 2.4vw, 34px) clamp(16px, 1.8vw, 26px);
}
.bluthe_collection__empty {
  display: none;
  text-align: center;
  font-size: 14.5px;
  font-weight: 300;
  color: var(--bl-text-muted);
  padding: 40px 0;
  margin: 0;
}
.bluthe_collection__empty.is-visible {
  display: block;
}

/* Create your own bouquet banner
--------------------------------------------- */
.bluthe_custom {
  margin: 0 0 clamp(46px, 6vw, 88px);
}
.bluthe_custom__banner {
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 380px;
  background: var(--bl-navy);
  overflow: hidden;
}
.bluthe_custom__media {
  position: absolute;
  inset: 0;
  display: block;
}
.bluthe_custom__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bluthe_custom__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(22, 40, 63, 0.86) 0%, rgba(22, 40, 63, 0.7) 38%, rgba(22, 40, 63, 0.15) 72%, rgba(22, 40, 63, 0.05) 100%);
  pointer-events: none;
}
[dir="rtl"] .bluthe_custom__shade {
  background: linear-gradient(to left, rgba(22, 40, 63, 0.86) 0%, rgba(22, 40, 63, 0.7) 38%, rgba(22, 40, 63, 0.15) 72%, rgba(22, 40, 63, 0.05) 100%);
}
.bluthe_custom__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(24px, 4vw, 66px);
  color: var(--bl-cream);
}
.bluthe_custom__inner {
  max-width: 560px;
}
.bluthe_custom__title {
  font-family: var(--bl-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--bl-cream);
}
.bluthe_custom__desc {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--bl-cream);
  margin: 0 0 28px;
  max-width: 34ch;
}
.bluthe_custom__steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.bluthe_custom__steps li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--bl-cream);
}
.bluthe_custom__step_n {
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.bluthe_custom__step_name {
  font-size: 13px;
  font-weight: 300;
}

/* Flowers & gifts
--------------------------------------------- */
.bluthe_gifting {
  padding: 0 0 clamp(56px, 8vw, 104px);
}
.bluthe_gifting__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: var(--bl-panel);
  padding: clamp(28px, 4vw, 56px);
}
.bluthe_gifting__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--bl-sand);
  overflow: hidden;
}
.bluthe_gifting__media.is-placeholder {
  background-image: repeating-linear-gradient(135deg, rgba(22, 40, 63, 0.055) 0 1px, transparent 1px 11px);
}
.bluthe_gifting__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bluthe_gifting__content .bluthe_section_title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 20px;
}
.bluthe_gifting__desc {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 44ch;
  margin: 0 0 30px;
  color: rgba(22, 40, 63, 0.8);
}
.bluthe_gifting__list {
  display: grid;
  gap: 1px;
  background: rgba(22, 40, 63, 0.14);
  margin-bottom: 28px;
}
.bluthe_gifting__item {
  background: var(--bl-panel);
  padding: 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  color: var(--bl-navy);
  transition: background 0.18s ease;
}
a.bluthe_gifting__item:hover {
  background: var(--bl-panel-hover);
  color: var(--bl-navy);
}
.bluthe_gifting__label {
  font-family: var(--bl-serif);
  font-size: 22px;
}
.bluthe_gifting__sublabel {
  font-size: 12px;
  font-weight: 300;
  color: var(--bl-text-muted);
  text-align: end;
}

/* Brands
--------------------------------------------- */
.bluthe_brands {
  padding: 0 0 clamp(56px, 8vw, 104px);
  margin: 0;
}
.bluthe_brands .bluthe_section_head {
  margin-bottom: 36px;
}
.bluthe_brands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(45%, 110px), 1fr));
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  border-top: 1px solid var(--bl-line);
  border-bottom: 1px solid var(--bl-line);
  padding: clamp(26px, 4vw, 46px) 0;
}
.bluthe_brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--bl-navy);
}
.bluthe_brand__logo {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bluthe_brand__logo img {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.18s ease;
}
.bluthe_brand:hover .bluthe_brand__logo img {
  opacity: 0.8;
}
.bluthe_brand__text {
  font-family: var(--bl-serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bluthe_brand__caption {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bl-navy);
  text-align: center;
}

/* Occasions (product groups)
--------------------------------------------- */
.bluthe_occasions {
  padding: 0 0 clamp(56px, 8vw, 104px);
  margin: 0;
}
.bluthe_occasions__grid {
  --bl-scroller-item: 62vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.bluthe_occasion {
  display: block;
  position: relative;
  color: var(--bl-cream);
}
.bluthe_occasion__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bl-sand);
}
.bluthe_occasion__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bluthe_occasion:hover .bluthe_occasion__media img {
  transform: scale(1.03);
}
.bluthe_occasion__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: linear-gradient(to top, rgba(22, 40, 63, 0.86), rgba(22, 40, 63, 0));
  pointer-events: none;
}
.bluthe_occasion__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}
.bluthe_occasion__name {
  font-family: var(--bl-serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.15;
  color: var(--bl-cream);
  margin: 0;
}
.bluthe_occasion__note {
  font-size: 12px;
  font-weight: 300;
  color: var(--bl-cream);
}

/* FAQ & help
--------------------------------------------- */
.bluthe_faq {
  position: relative;
  background: var(--bl-panel);
  border-top: 1px solid var(--bl-line);
  padding: clamp(56px, 8vw, 104px) 0;
  overflow: hidden;
}
.bluthe_faq__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bluthe_faq__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 249, 246, 0.9);
}
.bluthe_faq__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 5vw, 72px);
}
.bluthe_faq__intro .bluthe_section_title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 20px;
}
.bluthe_faq__desc {
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 300;
  margin: 0 0 26px;
  color: rgba(22, 40, 63, 0.78);
  max-width: 36ch;
}
.bluthe_faq__list {
  border-top: 1px solid var(--bl-line);
}
.bluthe_faq__item {
  border-bottom: 1px solid var(--bl-line);
}
.bluthe_faq__question {
  width: 100%;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  cursor: pointer;
  text-align: start;
  font-family: var(--bl-serif);
  font-size: 21px;
  line-height: 1.3;
  color: var(--bl-navy);
}
.bluthe_faq__sign {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
  flex: 0 0 auto;
}
.bluthe_faq__answer {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(22, 40, 63, 0.75);
  max-width: 52ch;
  padding: 0 0 24px;
}
.bluthe_faq__answer p {
  margin: 0 0 10px;
}
.bluthe_faq__answer p:last-child {
  margin-bottom: 0;
}

/* Testimonials (kept, restyled to the palette)
--------------------------------------------- */
.bluthe_testimonial-section {
  padding: 0 0 clamp(56px, 8vw, 104px);
}
.bluthe_testimonial-section .container {
  max-width: calc(var(--bl-wrap) + var(--bl-gutter) * 2);
  padding: 0 var(--bl-gutter);
}
.bluthe_testimonial-section h2 {
  font-family: var(--bl-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  color: var(--bl-navy);
  margin: 0 0 36px;
  padding: 0;
}
.bluthe_testimonial-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.bluthe_testimonial-container a {
  flex: 1 1 300px;
  max-width: 420px;
}
.bluthe_testimonial-card {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bl-panel);
  position: relative;
  height: 100%;
}
.bluthe_testimonial-container .bluthe_testimonial-image {
  display: flex;
  gap: 14px;
}
.bluthe_testimonial-image img {
  object-fit: cover;
  width: 72px;
  height: 90px;
  border-radius: 0;
  flex: 0 0 auto;
}
.bluthe_testimonial-content h6 {
  font-family: var(--bl-serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--bl-navy);
}
.bluthe_testimonial-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(22, 40, 63, 0.8);
  margin: 0;
}
.bluthe_testimonial-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bluthe_testimonial-meta strong {
  display: block;
  color: var(--bl-navy);
  font-size: 14px;
  font-weight: 500;
}
.bluthe_testimonial-date {
  color: var(--bl-text-muted);
  font-size: 12px;
  font-weight: 300;
}
.bluthe_testimonial-card .testimonial-rating {
  display: flex;
  gap: 2px;
}
.bluthe_testimonial-card .testimonial-rating img {
  width: 14px;
  height: 14px;
}

/* Tablet & mobile
--------------------------------------------- */
@media (max-width: 1024px) {
  .bluthe_section_head {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .bluthe_hero .bluthe_wrap {
    padding-inline: 0;
  }
  .bluthe_slide {
    aspect-ratio: auto;
    min-height: 520px;
  }
  .bluthe_slide_text {
    padding: 26px var(--bl-gutter) 30px;
  }
  .bluthe_slide_text::before {
    height: 80%;
  }
  .bluthe_slide__title {
    font-size: clamp(34px, 10vw, 46px);
    margin-bottom: 16px;
  }
  .bluthe_slide__desc {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .bluthe_btn {
    padding: 13px 22px;
    font-size: 11px;
  }
  .owl-theme.bluthe_owl-carousel .owl-dots {
    inset-inline-end: var(--bl-gutter);
    bottom: 12px;
  }

  .bluthe_services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bluthe_service {
    border-inline-start: 0;
    border-top: 1px solid var(--bl-line);
    padding: 22px 16px 22px 0;
  }
  .bluthe_service:nth-child(-n + 2) {
    border-top: 0;
  }
  .bluthe_service:nth-child(even) {
    border-inline-start: 1px solid var(--bl-line);
    padding-inline-start: 16px;
    padding-inline-end: 0;
  }
  .bluthe_service__title {
    font-size: 18px;
  }

  .bluthe_collection__toolbar {
    margin-bottom: 26px;
  }
  .bluthe_collection__chips {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .bluthe_collection__chips::-webkit-scrollbar {
    display: none;
  }
  .bluthe_chip {
    white-space: nowrap;
    padding: 9px 14px;
  }
  .bluthe_collection__meta {
    margin-inline-start: 0;
    width: 100%;
    justify-content: space-between;
  }
  .bluthe_kind_tab {
    padding: 8px 14px;
  }
  .bluthe_custom__banner {
    aspect-ratio: auto;
    min-height: 460px;
  }
  .bluthe_custom__content {
    padding: 28px var(--bl-gutter);
    align-items: flex-end;
  }
  .bluthe_custom__shade {
    background: linear-gradient(to top, rgba(22, 40, 63, 0.9) 0%, rgba(22, 40, 63, 0.65) 50%, rgba(22, 40, 63, 0.15) 100%);
  }
  [dir="rtl"] .bluthe_custom__shade {
    background: linear-gradient(to top, rgba(22, 40, 63, 0.9) 0%, rgba(22, 40, 63, 0.65) 50%, rgba(22, 40, 63, 0.15) 100%);
  }

  .bluthe_gifting__panel {
    padding: 22px;
  }
  .bluthe_gifting__label {
    font-size: 19px;
  }

  .bluthe_brands__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bluthe_occasion__name {
    font-size: 21px;
  }
  .bluthe_occasion__caption {
    padding: 14px 14px 16px;
  }

  .bluthe_faq__question {
    font-size: 18px;
    padding: 18px 0;
  }
}

@media (max-width: 360px) {
  .bluthe_brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
