:root {
  --primary: #d65a8d;
  --primary-dark: #c14c7c;
  --hp-bg: #f6efe9;
  --bg-white: #ffffff;
  --bg-light: #fffaf6;
  --text-dark: #2c2c2c;
  --text-gray: #6b7280;
  --border: #e5e7eb;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--hp-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== CLEAN BOUTIQUE HEADER ========== */

.header-unified {
  background: rgba(253, 250, 246, 0.99);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-left {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-center {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-center a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-center a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-center a:hover {
  color: var(--primary);
}

.nav-center a:hover::after {
  width: 100%;
}

.header-right {
  flex: 0 0 320px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-right {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(214, 90, 141, 0.3);
}

.nav-right a {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nav-right a:hover {
  color: var(--primary);
}

.nav-right svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.btn-gutschein {
  background: #d65a8d !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(214, 90, 141, 0.2);
  transition: all 0.3s ease;
}

.btn-gutschein:hover {
  background: #c14c7c !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(214, 90, 141, 0.3);
}
.main-content-bg {
  padding-top: 0;
}

/* ========== GIFT VOUCHER TEASER ========== */

.gift-teaser-block {
  margin: 2rem auto 0;
  max-width: 1200px;
}

.gift-teaser-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(214, 90, 141, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.gift-teaser-card::before {
  content: "Ã°Å¸Å½Â";
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 8rem;
  opacity: 0.05;
  transform: rotate(-15deg);
}

.gift-teaser-content {
  flex: 1;
}

.gift-teaser-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.gift-teaser-text {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 480px;
  line-height: 1.6;
}

.gift-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 90, 141, 0.25);
}

.gift-teaser-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 90, 141, 0.35);
}

@media (max-width: 800px) {
  .gift-teaser-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .gift-teaser-text {
    margin: 0 auto;
  }
}

/* ========== PRODUCT GRID (5 COLUMNS) ========== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.product-card {
  background: var(--bg-white);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: var(--bg-light);
}

.product-content {
  padding: 0.6rem 0.8rem;
  flex-grow: 1;
}

.product-name {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  --webkit-line-clamp: 2;
  --webkit-box-orient: vertical;
}

.product-footer {
  padding: 0.4rem 0.8rem 0.7rem;
}

.price-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.product-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.price-vat {
  font-size: 0.6rem;
  color: var(--text-gray);
  opacity: 0.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214, 90, 141, 0.35);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.w-100 {
  width: 100%;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== FOOTER ========== */

.shop-footer {
  background: rgba(253, 250, 246, 0.99);
  margin-top: var(--space-lg);
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  /* 4 columns */
  gap: var(--space-md);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.footer-col p {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.3rem;
}

.footer-col ul li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-about-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-about-link:hover {
  opacity: 0.75;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  margin-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-gray);
  opacity: 0.7;
}

/* ========== PRODUCT DETAIL PAGE ========== */

.back-link {
  display: inline-block;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--primary);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.product-detail-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.product-detail-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.product-detail-info {
  padding: 1rem 0;
}

.product-detail-category {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-gray);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.product-detail-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-detail-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-detail-price-block {
  margin-bottom: 1rem;
}

.product-detail-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.2rem;
}

.product-detail-stock {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.product-detail-stock.in-stock {
  color: #5a8a5a;
}

.btn-lg {
  padding: 0.7rem 2.5rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-name {
    font-size: 1.4rem;
  }

  .product-detail-price {
    font-size: 1.4rem;
  }

  #related-section .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Variant / Size Buttons */
.product-detail-variants {
  margin-bottom: 1.5rem;
}

.variant-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variant-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  min-width: 60px;
}

.variant-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.variant-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.variant-price-hint {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* Article Details Section */
.product-details-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.product-details-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
}

.details-table tr {
  border-bottom: 1px solid var(--border);
}

.details-table tr:last-child {
  border-bottom: none;
}

.details-table td {
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  vertical-align: top;
}

.detail-label {
  font-weight: 600;
  color: var(--text-gray);
  width: 140px;
  white-space: nowrap;
  padding-right: 1rem;
}

/* ========== ABOUT PAGE ========== */

.about-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.about-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  background: rgba(214, 90, 141, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.about-headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.about-subline {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 400;
}

.about-section {
  padding: 2rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.about-story-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.about-story-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.about-story-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.about-story-content em {
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

/* Values */
.about-values-section {
  background: var(--bg-white);
  padding: 2.5rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-values-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: var(--bg-light);
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.about-value-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.about-value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.about-value-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-gray);
}

/* CTA */
.about-cta-section {
  padding: 2.5rem 0;
}

.about-cta-card {
  text-align: center;
  background: var(--bg-white);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.about-cta-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.about-cta-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about-headline {
    font-size: 1.5rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DROPDOWN MENU ========== */
.nav-item {
  position: relative;
  padding: 0.5rem 0;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 2200;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.nav-item:hover .nav-dropdown {
  display: block;
  animation: fadeInDropdown 0.2s ease;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

/* Ensure link underline effect from parent doesn't affect submenus */
.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ========== IT-RECHT KANZLEI CONTENT ========== */
.legal-body {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}

.legal-body h2 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.legal-body h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}


.legal-body p,
.legal-body li {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.5rem;
  margin: 0.75rem 0 1.5rem;
}

.legal-body a:not(.btn) {
  color: var(--primary);
  text-decoration: underline;
}

.legal-body a:not(.btn):hover {
  text-decoration: none;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 2rem;
  text-align: right;
  font-style: italic;
}

/* ========== MOBILE HEADER & HAMBURGER MENU ========== */

/* Hamburger button - hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.2s ease;
  --webkit-tap-highlight-color: transparent;
  z-index: 3100;
}

.hamburger-btn:hover {
  background: var(--bg-light);
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

/* Hamburger â†’ X animation */
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(74, 59, 50, 0.45);
  z-index: 2900;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

/* Mobile menu panel */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: rgba(253, 250, 246, 0.99);
  backdrop-filter: blur(20px);
  z-index: 3000;
  transition: right 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-menu-panel.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  background: var(--border);
  color: var(--text-dark);
}

.mobile-menu-nav {
  padding: 1.5rem 1.5rem 1rem;
  flex: 1;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.85rem 0;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.mobile-menu-nav a:hover {
  color: var(--primary);
}

.mobile-menu-nav a:last-child {
  border-bottom: none;
}

.mobile-menu-actions {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu-action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.mobile-menu-action-btn:hover {
  background: var(--border);
}

.mobile-menu-action-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.mobile-menu-action-btn.primary {
  background: var(--primary);
  color: #fff;
}

.mobile-menu-action-btn.primary:hover {
  background: var(--primary-dark);
}

/* ========== RESPONSIVE: MOBILE HEADER (â‰¤768px) ========== */

@media (max-width: 768px) {
  /* Show hamburger */
  .hamburger-btn {
    display: flex;
  }

  /* Hide desktop nav center (slogan + nav links) */
  .header-center {
    display: none;
  }

  /* Hide desktop right icons (gutschein button, search, account, cart shown in mobile menu) */
  .header-right {
    display: none;
  }

  /* Mobile header: Logo left, hamburger right */
  .header-flex-container {
    grid-template-columns: 1fr auto;
    min-height: 65px;
    padding: 0.25rem 1rem;
  }

  .logo {
    height: 65px !important;
  }

  /* Smaller container padding on phone */
  .container {
    padding: 0 1rem;
  }
}

/* ========== RESPONSIVE: FOOTER (â‰¤768px) ========== */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ========== MOBILE TOUCH TARGETS ========== */

@media (max-width: 768px) {
  /* Min 44x44px touch targets */
  .btn,
  .btn-primary,
  .btn-sm {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Checkout form full-width on mobile */
  .checkout-form-row {
    flex-direction: column;
  }
}
/* ========== SEARCH BAR (IN-HEADER) ========== */
.search-bar-container {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10;
}

.search-bar-container.active {
  width: 250px;
  opacity: 1;
  visibility: visible;
}

.search-bar-input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
}

.search-bar-close {
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.search-bar-close:hover {
  color: var(--primary);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(253, 250, 246, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 1rem 0;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ========================================================================== */
/* HOMEPAGE – KINDERLADEN STARTSEITE                                          */
/* ========================================================================== */

/* --- Container --- */
.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Spacing --- */
.hp-section {
  margin-bottom: 70px; /* Mehr Luft zum Durchatmen */
}

.hp-section:last-child {
  margin-bottom: 40px;
}

/* --- Typography --- */
.hp-h1 {
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 26px; /* Noch etwas dezentere Überschrift */
  font-weight: 600;
  line-height: 1.25;
  color: #4a3f3f;
  margin: 0 0 12px 0;
}

.hp-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #4a3f3f;
  margin: 0 0 28px 0;
}

.hp-body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a3f3f;
  margin: 0 0 20px 0;
}

.hp-body.sec {
  color: #7b6f6f;
}

/* --- Buttons --- */
.hp-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--primary);
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-btn:hover {
  background: #c14c7c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 90, 141, 0.3);
}

/* ========== SECTION 1: HERO ========== */

.hp-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  position: relative;
  height: 340px; /* Noch etwas mehr Präsenz */
  min-height: 340px;
  overflow: hidden;
  border-radius: 30px 50px 50px 30px; /* Harmonischer und weicher abgestuft */
  background: var(--hp-bg);
  box-shadow: none;
  margin-top: 0; /* Zwischenraum darüber reduziert */
  margin-bottom: 40px; /* Abstand zu Kategorien reduziert */
}

.hp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px; /* Padding vertikal entfernt, da Höhe fest */
  max-width: 530px; /* Minimal breiter für den neuen Text */
}

.hp-hero-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Noch weicherer Übergang für perfektes Blending */
  --webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%, black 90%, transparent 100%);
}

.hp-hero-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 5%;
  /* Baby 5-10% größer für mehr Wirkung + Filter */
  transform: scale(1.08);
  filter: saturate(1.05) sepia(0.12) contrast(1.02) brightness(1.02);
}

/* ========== SECTION 2: KATEGORIEN (CAROUSEL) ========== */

.hp-cat-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 30px 0; /* Oben deutlich reduziert von 40px */
  cursor: grab;
}

.hp-cat-carousel-container:active {
  cursor: grabbing;
}

.hp-cat-track {
  display: flex;
  gap: 30px; /* Luftigerer Abstand zwischen den Kategorien */
  width: max-content;
  will-change: transform;
  user-select: none;
  padding: 0 40px;
}

.hp-cat-card {
  background: transparent;
  padding: 0; /* Padding entfernt, da jetzt Gap genutzt wird */
  text-align: center;
  text-decoration: none;
  color: #4a3f3f;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 180px; /* Angepasst an größere Kreise */
}

.hp-cat-card:hover {
  transform: translateY(-8px);
}

.hp-cat-img-wrap {
  width: 155px; /* Größere Kreise für mehr Wirkung */
  height: 155px;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  pointer-events: none; /* Prevents image dragging interference */
}

.hp-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp-cat-card:hover .hp-cat-img-wrap img {
  transform: scale(1.1);
}

.hp-cat-title {
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #4a3f3f;
  margin-top: 5px;
  pointer-events: none;
}

/* ========== SECTION 3 + 6: PRODUKTGRID ========== */

.hp-prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.hp-prod-grid .product-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 16px;
}

.hp-prod-grid .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.hp-prod-grid .product-image {
  height: 210px;
  border-radius: 16px 16px 0 0;
}

/* ========== SECTION 4: HANDGEMACHT / STORY ========== */

.hp-story-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hp-story-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  --webkit-mask-image: radial-gradient(circle at center, black 80%, transparent 100%);
  mask-image: radial-gradient(circle at center, black 80%, transparent 100%);
}

.hp-story-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hp-story-content {
  max-width: 520px;
}

.hp-story-h {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #4a3f3f;
  line-height: 1.2;
}

.hp-story-p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #5a4f4f;
}

.hp-story-italic {
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: 16px;
  font-family: inherit;
  color: #4a3f3f;
}

/* ========== SECTION 5: VALUES (Darum mögen Eltern...) ========== */

.hp-values-section {
  padding: 30px 0 100px 0;
  background: transparent;
}

.hp-values-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #4a3f3f;
  margin-bottom: 50px;
  font-family: 'Outfit', sans-serif;
}

.hp-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-value-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-value-icon {
  margin-bottom: 20px;
  color: #a49696; /* Dezentes Graurosa/Taupe */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.hp-value-title {
  font-size: 17px;
  font-weight: 600;
  color: #4a3f3f;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.hp-value-text {
  font-size: 14.5px;
  color: #6a5a5a;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .hp-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 576px) {
  .hp-values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hp-values-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

/* ========== HOMEPAGE RESPONSIVE ========== */

@media (max-width: 1200px) {
  .hp-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hp-section {
    margin-bottom: 48px;
  }

  .hp-h1 {
    font-size: 32px;
  }

  .hp-section-title {
    font-size: 24px;
  }

  .hp-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-top: 24px;
  }

  .hp-hero-content {
    padding-right: 0;
  }

  .hp-hero-img-wrapper img {
    max-height: 360px;
    object-fit: cover;
  }

  .hp-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hp-prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hp-story-card {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
    margin: 40px auto;
  }

  .hp-feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .hp-h1 {
    font-size: 26px;
  }

  .hp-section-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hp-body {
    font-size: 15px;
  }

  .hp-btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .hp-hero {
    padding-top: 16px;
  }

  .hp-hero-img-wrapper img {
    max-height: 280px;
    border-radius: 16px;
  }

  .hp-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hp-cat-card {
    padding: 14px;
  }

  .hp-prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hp-feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hp-feat-card {
    padding: 16px;
  }

  .hp-story-card {
    padding: 20px;
  }
}
