/** Shopify CDN: Minification failed

Line 34:0 All "@import" rules must come first

**/
/** DonSeed â€“ Custom Design CSS */



:root {
  --ds-black:        #2d2d2d;
  --ds-surface:      #ede8de;
  --ds-card:         #f0ebe0;
  --ds-border:       #d4cfc4;
  --ds-green:        #4a7c3f;
  --ds-green-light:  #5a9e50;
  --ds-green-dim:    #3d6835;
  --ds-accent:       #6ab85e;
  --ds-white:        #ffffff;
  --ds-text:         #2d2d2d;
  --ds-muted:        #6b6560;
  --color-background: #f5f0e8;
  --color-foreground: #2d2d2d;
  --ds-spacing-xs:   0.5rem;
  --ds-spacing-sm:   1rem;
  --ds-spacing-md:   2rem;
  --ds-spacing-lg:   4rem;
  --ds-spacing-xl:   6rem;
  --ds-font-heading: 'Bebas Neue', sans-serif;
  --ds-font-body:    'DM Sans', sans-serif;
  --ds-transition:   all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

body {
  background-color: #f5f0e8;
  color: #2d2d2d;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ds-font-heading);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

a {
  color: var(--ds-green-light);
  text-decoration: none;
  transition: var(--ds-transition);
}

a:hover {
  color: var(--ds-accent);
}

/** ============================================================
    HEADER
    ============================================================ */
.header-wrapper {
  background-color: #FAF9E1;
  border-bottom: 1px solid #d4cfc4;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav a {
  color: #2d2d2d;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav a:hover,
.header__nav a[aria-current="page"] {
  color: #4a7c3f;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header__icons a {
  color: #2d2d2d;
  position: relative;
  display: flex;
  align-items: center;
}

.header__icons a:hover {
  color: #4a7c3f;
}

.cart-count-bubble {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #4a7c3f;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/** ============================================================
    ANNOUNCEMENT BAR
    ============================================================ */
.shopify-section-group-header-group {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: transform 0.3s ease;
}

.shopify-section-group-header-group.header--hidden {
  transform: translateY(-100%);
}

.announcement-bar {
  width: 100% !important;
  box-sizing: border-box;
}

/** ============================================================
    HERO
    ============================================================ */
.ds-hero__content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 480px;
  background: rgba(250, 249, 225, 0.94);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  border-left: 4px solid #4a7c3f;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  margin-top: 0;
}

/** ============================================================
    WELCOME SECTION
    ============================================================ */
.section-welcome {
  background-color: #f5f0e8;
  padding: 5rem 4rem;
}

.section-welcome__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.section-welcome__image-wrap {
  flex: 0 0 420px;
}

.section-welcome__logo {
  width: 420px;
  height: 420px;
  object-fit: contain;
}

.section-welcome__content {
  flex: 1;
}

.section-welcome__title {
  font-family: var(--ds-font-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d2d2d !important;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-welcome__text p {
  color: #5a5550;
  font-size: 1rem;
  line-height: 1.8;
}

/** ============================================================
    KATEGORIE GRID
    ============================================================ */
.section-categories {
  padding: 3rem 2rem;
  background-color: #f5f0e8;
  overflow: visible;
}

.section-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}

.category-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__overlay {
  display: none;
}

.category-card__title {
  position: static !important;
  color: #2d2d2d !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  text-align: center;
  margin-top: 0.5rem;
  bottom: auto !important;
  left: auto !important;
  transition: color 0.2s ease;
}

.category-card:hover .category-card__title {
  color: #4a7c3f !important;
}

@media (max-width: 768px) {
  .section-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-feature--dark {
  background-color: #3d2b1f !important;
  border-color: #5a3d2b !important;
}

.section-feature--dark .section-feature__image-wrap {
  background-color: #3d2b1f !important;
}

.section-feature--dark .section-feature__content {
  border-left-color: #5a3d2b !important;
}

.section-feature--dark .section-feature__title {
  color: #fff !important;
}

.section-feature--dark .section-feature__text p {
  color: #c8b8a8 !important;
}
/** ============================================================
    PRODUCT GRID SECTION
    ============================================================ */
.section-products {
  background-color: #3d2b1f;
  padding: 0rem 0 2rem;
  width: 100%;
}

.section-products__header {
  max-width: 1200px;
  margin: 0 auto 1rem;
  padding: 2rem 3rem;
}

.section-products__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 35px 2rem 2rem;
  box-sizing: border-box;
  overflow: visible;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 0 1.5rem 1.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible !important;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-card__image-wrap {
  transition: transform 0.3s ease;
  z-index: 10;
}

.product-card:hover .product-card__image-wrap {
  transform: scale(1.08);
}

.product-card__image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f5f0e8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card__body {
  width: 100%;
}

.product-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d2d2d !important;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.product-card__tag {
  background: #f0ede6;
  color: #4a7c3f;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

.product-card__price {
  color: #2d2d2d;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-card__btn {
  display: inline-block;
  padding: 10px 24px;
  background: #4a7c3f;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.product-card__btn:hover {
  background: #3d6835;
}

.product-card__price-compare {
  color: #999;
  font-size: 0.75rem;
  margin-left: 0.4rem;
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 100px 1rem 2rem;
  }
}

/** ============================================================
    FEATURE SECTION
    ============================================================ */
.section-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 220px;
  background-color: #FFFFFF;
  border-top: 3px solid #d4cfc4;
  border-bottom: 3px solid #d4cfc4;
  border-radius: 0;
  margin: 0;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.section-feature__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f5f0e8;
}

.section-feature__image {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

.section-feature__content {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-left: 2px solid #d4cfc4;
}

.section-feature__title {
  font-size: 2.5rem;
  color: #2d2d2d !important;
}

.section-feature__text p {
  color: #5a5550;
  line-height: 1.8;
}

.section-feature__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #4a7c3f;
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
}

.section-feature__btn:hover {
  background: #3d6835;
  color: #fff !important;
}

@media (max-width: 768px) {
  .section-feature {
    grid-template-columns: 1fr;
    direction: ltr;
    margin: 0;
  }
}

/** ============================================================
    FOOTER — Styles are defined in sections/footer.liquid
    ============================================================ */

/** ============================================================
    FILTER PANEL
    ============================================================ */
.filter-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.filter-panel.is-open {
  right: 0;
}

.filter-panel__inner {
  padding: 2rem;
}

.filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.filter-panel__header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #2d2d2d;
  margin: 0;
}

.filter-panel__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #2d2d2d;
  padding: 0.5rem;
}

.filter-panel__group {
  margin-bottom: 1.5rem;
}

.filter-panel__group h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.filter-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f0ede6;
  color: #4a7c3f;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  margin: 0.25rem;
  transition: all 0.2s ease;
}

.filter-tag:hover {
  background: #4a7c3f;
  color: #fff;
}

.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.filter-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/** ============================================================
    MOBILE RESPONSIVE
    ============================================================ */
@media (max-width: 768px) {

  /* Header */
  .header {
    padding: 0 1rem;
    height: 60px;
  }

  .header__logo img {
    height: 35px;
  }

  .header__nav-wrapper {
    display: none;
  }

  /* Hero */
  .ds-hero,
  .ds-hero__slide {
    height: 400px;
  }

  .ds-hero__content {
    left: 4%;
    right: 4%;
    max-width: 100%;
    padding: 1.5rem;
  }

  .ds-hero__title {
    font-size: 1.1rem !important;
  }

  /* Welcome */
  .section-welcome {
    padding: 3rem 1.5rem;
  }

  .section-welcome__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .section-welcome__image-wrap {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .section-welcome__logo {
    width: 250px;
    height: 250px;
  }

  /* Kategorie Grid */
  .section-categories {
    padding: 2rem 1rem;
  }

  .section-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 80px 1rem 2rem;
    gap: 1rem;
  }

  .product-card__image {
    width: 120px;
    height: 120px;
  }

  .product-card__image-wrap {
    margin-top: -60px;
    width: 120px;
    height: 120px;
  }

  /* Feature Section */
  .section-feature {
    grid-template-columns: 1fr;
    margin: 1rem;
  }

  .section-feature__image-wrap {
    padding: 1.5rem;
  }

  .section-feature__image {
    width: 150px;
    height: 150px;
  }

  .section-feature__content {
    padding: 1.5rem;
    border-left: none;
    border-top: 2px solid #d4cfc4;
  }

  /* Info Cards */
  .info-cards {
    grid-template-columns: 1fr;
  }

  .section-info {
    padding: 2rem 1rem;
  }

  /* Footer */
  .footer__links {
    gap: 1rem;
    flex-direction: column;
  }

  /* Filter Panel */
  .filter-panel {
    width: 100%;
    right: -100%;
  }

  /* Scroll Grid */
  .scroll-grid .product-card {
    flex: 0 0 220px;
  }
}

@media (max-width: 430px) {
  .section-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .product-card__title {
    font-size: 0.8rem;
  }

  .product-card__tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  position: relative;
}

@media (max-width: 768px) {
  .collection-page__header {
    padding: 2rem 1.5rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 120px 1rem 3rem 1rem;
    gap: 3rem 1rem;
    overflow: visible;
  }
}

/** ============================================================
    Autoflower
============================================================ */
.collection-page__header {
  padding: 3rem 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.collection-page__icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.collection-page__header-text {
  flex: 1;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.info-cards__header {
  text-align: center;
  margin-bottom: 2rem;
}

.info-cards__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #2d2d2d;
  letter-spacing: 0.05em;
}

.ds-hero__icon {
  margin-bottom: 1rem;
}

.ds-hero__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.ds-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  color: #2d2d2d;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.ds-hero__arrow:hover {
  background: #4a7c3f;
  color: #fff;
}

.ds-hero__arrow--left { left: 1.5rem; }
.ds-hero__arrow--right { right: 1.5rem; }

#faq-section {
  scroll-margin-top: 90px;
}

.payment-notice {
  background: #fff8e1;
  border-left: 4px solid #f9a825;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #5a5550;
}