/* ===============================
   GLOBAL VARIABLES (Design System)
================================= */

:root {
  --primary: #ef9273;
  --primary-hover: #e07f60;
  --secondary: #ffd0b2;
  --background: #fef9f9;
  --text-dark: #0d0d0d;
  --text-light: #666;
}

/* ===============================
   BASE STYLES
================================= */

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  margin: 0;
  padding-top: 92px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ===============================
   HERO
================================= */
.hero-contained {
  padding: 32px 0 56px;
}

.hero-image-box {
  position: relative;
  height: 55vh;          /* vorher 75vh → deutlich flacher */
  min-height: 380px;     /* vorher 520px → reduziert */
  max-height: 520px;     /* verhindert zu große Hero auf großen Screens */
  border-radius: 20px;
  overflow: hidden;
}

.hero-image-box picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image-box picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-contained-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay bleibt fast gleich (gut so!) */
.hero-contained-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.08) 70%,
    rgba(0,0,0,0) 100%
  );
}

.hero-content {
  max-width: 620px;
  padding-left: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-secondary-link:hover {
  color: var(--secondary);
}

.hero-secondary-link i {
  transition: transform 0.25s ease;
}

.hero-secondary-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-contained {
    padding: 24px 0 40px;
  }

  .hero-image-box {
    height: 60vh;
    min-height: 360px;
    border-radius: 16px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* ===============================
   BUTTONS
================================= */

.btn-primary-custom {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  color: white;
}

.btn-outline-custom {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 12px 26px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: white;
}

/* ===============================
   SECTIONS
================================= */

.section-light {
  background-color: var(--background);
}

.section-accent {
  background-color: var(--secondary);
}

/* ===============================
   NAVBAR
================================= */
.main-navbar {
  background: rgba(254, 249, 249, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.12);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  transition:
    padding 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* Zustand beim Scrollen */
.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 0;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.06),
    0 18px 40px rgba(0,0,0,0.08);
}

.navbar-inner {
  min-height: 58px;
  transition: min-height 0.25s ease;
}

.main-navbar.scrolled .navbar-inner {
  min-height: 44px;
}

.navbar-content {
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  padding: 0;
}

.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}

.main-navbar.scrolled .brand-logo img {
  height: 34px;
}

.nav-menu {
  margin-left: auto;
  margin-right: auto;
  gap: 26px;
}

.nav-link {
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: -4px;

  width: 0;
  height: 2px;

  background: var(--primary);
  border-radius: 999px;

  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav-link:hover::after {
  width: calc(100% - 1.5rem);
}

.nav-link.active::after {
  width: calc(100% - 1.5rem);
}

.nav-cta {
  background: var(--primary);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 700;

  box-shadow: 0 8px 20px rgba(239, 146, 115, 0.24);
  transition: all 0.25s ease;

  white-space: nowrap;
}

.main-navbar.scrolled .nav-cta {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.nav-cta:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(239, 146, 115, 0.32);
}

.navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

  .main-navbar {
    padding: 12px 0;
  }

  .brand-logo img,
  .main-navbar.scrolled .brand-logo img {
    height: 40px;
  }

  .navbar-inner {
    min-height: 52px;
  }

  .navbar-collapse {
    margin-top: 16px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;

    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  }

  .nav-menu {
    gap: 10px;
    margin: 0;
  }

  .nav-link {
    padding: 10px 0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   USP CARDS
================================= */

.usp-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.03),
    0 12px 30px rgba(0, 0, 0, 0.06);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.10);
}

.usp-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
}

.usp-icon img {
  width: 30px;
  height: 30px;
}

/* Titel */
.usp-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.usp-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Highlight (wie im Screenshot) */
.highlight {
  background: #dcdcdc;
  padding: 2px 4px;
  border-radius: 4px;
}

/* ===============================
   IMAGES
================================= */

.img-shadow {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 10px;
}

/* ===============================
   SPACING
================================= */

.section-padding {
  padding: 80px 0;
}

/* CTA / DARK SECTION */
.section-dark {
  background-color: var(--text-dark);
  color: white;
}

.section-dark h2,
.section-dark p {
  color: white;
}

/* ===============================
   CATEGORY SECTION
================================= */

.categories-section {
  background: var(--background);
}

.section-heading {
  max-width: 1020px;
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 1020px;
  margin: 0 auto;
}

.category-card {
  display: block;
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.07);
  transition: all 0.28s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  color: var(--text-dark);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.10);
}

.category-image {
  height: 230px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
  object-position: 60% center;
}

.category-card:hover .category-image img {
  transform: scale(1.06);
}

.category-content {
  padding: 24px;
}

.category-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.category-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .category-image {
    height: 210px;
  }

  .custom-request-box {
    padding: 28px;
  }
}

/* ===============================
   SHOWCASE SECTION
================================= */

.showcase-section {
  background: var(--background);
}

.showcase-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.05),
    0 18px 45px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-8px);
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.14);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-card:hover img {
  transform: scale(1.07);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.05) 100%
  );
}

.showcase-overlay span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.showcase-overlay h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.showcase-overlay p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .showcase-card {
    height: 280px;
  }

  .showcase-overlay {
    padding: 24px;
  }
}

/* ===============================
   TESTIMONIALS
================================= */

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  height: 100%;
  text-align: left;

  box-shadow:
    0 6px 16px rgba(0,0,0,0.05),
    0 16px 40px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    0 24px 60px rgba(0,0,0,0.12);
}

.stars {
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.testimonial-card h6 {
  margin-top: 18px;
  font-weight: 600;
}

.testimonial-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===============================
   CTA SECTION
================================= */

.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: var(--primary);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 30px 80px rgba(0,0,0,0.12);

  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-4px);
}

/* Kicker */
.cta-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

/* Headline */
.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

/* Text */
.cta-box p {
  max-width: 520px;
  margin: 0 auto 25px;
  color: rgba(255,255,255,0.9);
}

/* Button */
.cta-button {
  background: #ffffff;
  color: var(--primary);
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--text-light);
  transform: translateY(-2px);
}

/* Bonus Note */
.cta-note {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }
}

/* ===============================
   FOOTER
================================= */

.footer-section {
  background: var(--background);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(13,13,13,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.8fr 0.8fr 1.05fr;
  gap: 44px;
}

.footer-section h5 {
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

.footer-section p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 300px;
}

.footer-address {
  color: var(--text-dark);
  font-weight: 500;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 11px;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.22s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-contact-link {
  display: inline-block;
  margin-top: 0px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  transition: all 0.25s ease;
}

/* Underline Animation */
.footer-contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--primary-hover);
}

.footer-contact-link:hover::after {
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.05),
    0 14px 30px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 10px 22px rgba(239,146,115,0.28),
    0 20px 45px rgba(239,146,115,0.32);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(13,13,13,0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* Trennlinie */
.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(13,13,13,0.15);
  margin: 20px 0 14px;
}

/* Label über Social */
.footer-social-label {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* ===============================
   Kontakt
================================= */
.page-hero {
  padding: 80px 0 40px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.page-hero p {
  max-width: 680px;
  margin: 16px auto 0;
}

.contact-card,
.contact-info-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 18px 45px rgba(0,0,0,0.07);
}

.contact-card h2,
.contact-info-box h3 {
  margin-bottom: 12px;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(13,13,13,0.12);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(239,146,115,0.18);
}

.contact-info-box {
  position: sticky;
  top: 120px;
}

.contact-step {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.contact-step span {
  width: 34px;
  height: 34px;
  background: var(--secondary);
  color: var(--text-dark);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-step p {
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .contact-info-box {
    position: static;
  }
}

.contact-hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.form-check-label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.form-check-label a:hover {
  color: var(--primary-hover);
}

.contact-message {
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-message.success {
  color: #2e7d32;
}

.contact-message.error {
  color: #c62828;
}

.btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}

/* ===============================
   ABOUT PAGE
================================= */

.page-hero {
  padding: 90px 0 50px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  max-width: 820px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1.08rem;
}

/* About Text Sections */

.about-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Story Image */

.about-image {
  border-radius: 24px;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.06),
    0 24px 60px rgba(0,0,0,0.10);
}

/* Dino Highlight */

.about-highlight {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 18px 45px rgba(0,0,0,0.07);
}

/* About Cards */

.about-values .card-custom {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 18px 45px rgba(0,0,0,0.07);
}

.about-values .card-custom h5 {
  margin-bottom: 12px;
}

.about-values .card-custom p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Mobile */

@media (max-width: 768px) {
  .page-hero {
    padding: 64px 0 36px;
  }

  .about-highlight {
    padding: 28px;
  }
}

/* Übergänge */
.section-transition {
  margin-top: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Bilder */
.about-image {
  border-radius: 20px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 28px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.about-image:hover {
  transform: scale(1.04);
}

/* Mehr Luft */
.section-padding {
  padding: 110px 0;
}

/* Werte Cards */
.about-values .card-custom {
  transition: all 0.3s ease;
}

.about-values .card-custom:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 35px rgba(0,0,0,0.08),
    0 28px 60px rgba(0,0,0,0.12);
}

/* ===============================
   LEGAL PAGES
================================= */

.legal-section {
  padding-top: 60px;
}

.legal-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 18px 45px rgba(0,0,0,0.07);
}

.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 28px;
  }
}


/* ===============================
   INSPIRATION PAGE
================================= */

.inspiration-page-section {
  background: var(--background);
  scroll-margin-top: 110px;
}

.inspiration-filter {
  position: sticky;
  top: 86px;
  z-index: 50;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;

  background: rgba(254, 249, 249, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 14px 0;
  margin-inline: -12px;
  border-bottom: 1px solid rgba(13,13,13,0.08);
}

.filter-btn {
  border: 1px solid rgba(13,13,13,0.12);
  background: #ffffff;
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(239,146,115,0.22);
}

.inspiration-page-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.05),
    0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.inspiration-page-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.08),
    0 28px 70px rgba(0,0,0,0.12);
  color: inherit;
}

.inspiration-page-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.inspiration-page-card:hover img {
  transform: scale(1.06);
}

.inspiration-page-content {
  padding: 24px;
}

.inspiration-page-content > span:not(.inspiration-card-link) {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inspiration-page-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.inspiration-page-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.inspiration-item.hidden {
  display: none;
}

.inspiration-card-link {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 16px;

  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;

  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
}

.inspiration-page-card:hover .inspiration-card-link {
  opacity: 1;
  transform: translateY(0);
}

.inspiration-card-link i {
  transition: transform 0.25s ease;
}

.inspiration-page-card:hover .inspiration-card-link i {
  transform: translateX(4px);
}

.inspiration-detail-page {
  background: var(--background);
}

.inspiration-detail-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 18px 45px rgba(0,0,0,0.07);
}

.inspiration-detail-content h2 {
  margin-bottom: 16px;
}

.inspiration-detail-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.inspiration-detail-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.inspiration-cta-box {
  margin-top: 30px;
  padding: 24px;
  border-radius: 20px;
  background: var(--background);
}

.inspiration-cta-box h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.inspiration-cta-box p {
  margin-bottom: 18px;
}

.inspiration-details {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.inspiration-detail-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--background);
}

.inspiration-detail-item span {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.inspiration-detail-item strong {
  color: var(--text-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .inspiration-filter {
    top: 74px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px 4px;
    scrollbar-width: none;
  }

  .inspiration-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .inspiration-card-link {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   LIGHTBOX
================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(13,13,13,0.88);
  padding: 32px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lightbox-counter {
  position: absolute;

  top: 28px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 10001;

  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);

  padding: 10px 18px;
  border-radius: 999px;

  user-select: none;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(1100px, 90vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  transform: scale(.94);
  aspect-ratio: 4/3;

    transition:
        transform .30s ease,
        opacity .30s ease;
}

.lightbox.active .lightbox-image {

    transform: scale(1);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-close {
  top: 28px;
  right: 28px;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 18px;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }
}

.detail-main-image-box {
  position: relative;
}

.detail-main-image {
  cursor: zoom-in;
}

.detail-main-image-box::after {
  content: "Bild ansehen";
  position: absolute;
  right: 22px;
  bottom: 22px;

  background: rgba(13,13,13,0.72);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 600;

  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.detail-main-image-box:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   DETAIL PAGE
================================= */
.detail-page {
    padding: 10px 0 80px;
}

.detail-image {
  border-radius: 24px;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.06),
    0 24px 60px rgba(0,0,0,0.10);
}

.detail-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.detail-tax-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
}

.detail-layout {
  align-items: stretch;
}

.detail-intro {
  margin-bottom: 0;
}

.detail-divider {
  height: 1px;
  background: rgba(13,13,13,0.08);
  margin: 26px 0;
}

.detail-product-box h2 {
  margin-bottom: 12px;
}

.detail-product-box {
  height: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.04),
    0 18px 45px rgba(0,0,0,0.07);
}

.detail-main-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.detail-main-image-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.04),
        0 18px 45px rgba(0,0,0,.07);
}

.detail-thumbnails {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.detail-thumb {
  width: 92px;
  height: 92px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumb:hover,
.detail-thumb.active {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.detail-product-box {
  display: flex;
  flex-direction: column;
}

.detail-features {
  margin: 24px 0;
  padding: 20px;
  border-radius: 18px;
  background: var(--background);
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.detail-feature:last-child {
  margin-bottom: 0;
}

.detail-feature i {
  color: var(--primary);
  font-size: 1.05rem;
}

.detail-delivery {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(13,13,13,0.08);
  border-bottom: 1px solid rgba(13,13,13,0.08);
  margin-bottom: 24px;
}

.detail-delivery i {
  color: var(--primary);
  font-size: 1.35rem;
}

.detail-delivery strong,
.detail-delivery span {
  display: block;
}

.detail-delivery span {
  color: var(--text-light);
  margin-top: 2px;
}

.detail-button {
  width: 100%;
  margin-top: 22px;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.detail-back-link:hover {
  color: var(--primary);
}

/* ===============================
   PRODUCT CARDS
================================= */

.product-item {
  display: flex;
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;

  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;

  text-decoration: none;
  color: inherit;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.07);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.product-card:hover {
  color: inherit;
  transform: translateY(-6px);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.07),
    0 28px 70px rgba(0, 0, 0, 0.11);
}

.product-card-image {
  flex-shrink: 0;
  padding: 26px;
  background: var(--background);
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;

  transition: transform 0.35s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 22px;
}

.product-card-category {
  display: inline-block;
  margin-bottom: 8px;

  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-content h3 {
  margin-bottom: 18px;

  font-size: 1.2rem;
  line-height: 1.35;
}

.product-card-bottom {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.product-card-price-area {
  margin-bottom: 14px;
}

.product-card-price {
  margin-bottom: 5px;

  color: var(--text-dark);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-card-price-note {
  min-height: 1.1rem;
  margin: 0;

  color: #6b6b6b;
  font-size: 0.7rem;
  line-height: 1.35;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  min-height: 42px;
  padding-top: 14px;

  border-top: 1px solid rgba(13, 13, 13, 0.08);
}

.product-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin: 0;

  color: var(--text-light);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.product-card-badge i {
  color: var(--primary);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-left: auto;

  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-card-link i {
  transition: transform 0.25s ease;
}

.product-card:hover .product-card-link i {
  transform: translateX(4px);
}

.products-section {
  background: var(--background);
}

.product-item.hidden {
  display: none;
}

@media (max-width: 575.98px) {
  .product-card-content {
    padding: 20px;
  }

  .product-card-footer {
    align-items: flex-end;
  }

  .product-card-badge {
    white-space: normal;
  }

  .product-card-price-note {
    font-size: 0.68rem;
  }
}

/* ===============================
   PRODUCT LOADING SKELETON
================================= */

#products-filter {
  min-height: 42px;
}

.product-skeleton-item {
  display: flex;
}

.product-skeleton {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 450px;

  overflow: hidden;
  border-radius: 24px;
  background: #fff;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.07);
}

.product-skeleton-image {
  height: 262px;
  background:
    linear-gradient(
      90deg,
      #f1efec 25%,
      #f8f7f5 50%,
      #f1efec 75%
    );
  background-size: 200% 100%;
  animation: product-skeleton-loading 1.4s infinite;
}

.product-skeleton-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-skeleton-line,
.product-skeleton-footer {
  border-radius: 8px;
  background:
    linear-gradient(
      90deg,
      #ece9e5 25%,
      #f6f4f1 50%,
      #ece9e5 75%
    );
  background-size: 200% 100%;
  animation: product-skeleton-loading 1.4s infinite;
}

.product-skeleton-category {
  width: 30%;
  height: 10px;
  margin-bottom: 12px;
}

.product-skeleton-title {
  width: 75%;
  height: 20px;
}

.product-skeleton-bottom {
  margin-top: auto;
}

.product-skeleton-price {
  width: 34%;
  height: 22px;
  margin-bottom: 8px;
}

.product-skeleton-note {
  width: 62%;
  height: 9px;
  margin-bottom: 18px;
}

.product-skeleton-footer {
  width: 100%;
  height: 42px;
  border-radius: 0;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
  background: transparent;
  animation: none;
}

@keyframes product-skeleton-loading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-skeleton-line,
  .product-skeleton-image {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .product-skeleton-item:nth-child(n + 3) {
    display: none;
  }
}

/* ===============================
   Breadcrumb
================================= */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 0 0 22px;
  padding-left: calc(var(--bs-gutter-x) * .5);

  font-size: .95rem;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color .25s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav span {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumb-nav i {
    color: rgba(13,13,13,.35);
    font-size: .8rem;
}

/* 404-Seite */

.error-page {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
}

.error-page-content {
  max-width: 760px;
  margin: 0 auto;
}

.error-page-content h1 {
  max-width: 700px;
  margin: 18px auto 22px;
}

.error-page-text {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.error-page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.error-link-card {
  display: block;
  height: 100%;
  padding: 32px 28px;
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.error-link-card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
}

.error-link-card i {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 2rem;
  color: var(--primary-color, #8b5e3c);
}

.error-link-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.error-link-card p {
  margin-bottom: 0;
  line-height: 1.65;
}

@media (max-width: 767.98px) {
  .error-page {
    min-height: auto;
    padding: 90px 0 65px;
  }

  .error-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-page-actions .btn {
    width: 100%;
  }
}