* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #120d0b;
  background-image: 
    linear-gradient(rgba(10, 7, 6, 0.82), rgba(18, 12, 10, 0.92)),
    url("bg-texture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f3ece6;
}

/* NEUER HEADER */
.top-header {
  background-image: url("headerbild.jpg");
  background-size: cover;
  background-position: center;
  min-height: 310px;
  position: relative;
  color: white;
}


.top-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 10, 0.45);
}

.header-overlay {
  position: relative;
  z-index: 1;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 60px 20px 60px;
}

.header-left {
  min-height: 1px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  max-width: 350px;
  width: 100%;
  height: auto;
  display: block;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.header-icons a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-icons a:hover {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 18px 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.main-nav a:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.main-nav a:hover {
  opacity: 0.8;
}

.hero-banner {
  position: relative;
  min-height: 680px;
  background-image:
    linear-gradient(rgba(12, 8, 7, 0.35), rgba(12, 8, 7, 0.55)),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 50px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-content {
  max-width: 520px;
  margin-top: 40px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 24px;
  background: rgba(25, 16, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4e8de;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-banner h2 {
  color: #f3e7dc;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  font-weight: 500;
}

.hero-banner h3 {
  color: #f7efe8;
  font-size: 2.6rem;
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}


.auth-btn {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;

}

.btn-glow {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff6ee;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(38, 24, 19, 0.9), rgba(94, 62, 42, 0.9));
  border: 1px solid rgba(255, 220, 180, 0.25);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(255, 200, 150, 0.12);
  background: linear-gradient(135deg, rgba(52, 32, 25, 0.95), rgba(120, 78, 53, 0.95));
}

.btn-glow:hover::before {
  left: 130%;
}

.btn-glow:active {
  transform: translateY(-1px) scale(0.99);
}


.hero-button {
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 1.1rem;
}

.shop-btn {
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 1rem;
}

.collection-button {
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 600;
}









.collection-button-wrapper {
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-bottom-text {
  text-align: center;
  margin-top: 40px;
}

.hero-bottom-text p {
  color: #f5e7db;
  font-size: 2rem;
  font-family: Georgia, serif;
  font-weight: 400;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-top {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    max-width: 180px;
  }

  .header-icons {
    justify-content: center;
  }

  .main-nav {
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .header-icons a {
    font-size: 1.6rem;
  }
}



.products-wrap {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.products-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}



.products-title {
  text-align: center;
  color: #f5e7db;
  font-size: 2.2rem;
  font-family: Georgia, serif;
  font-weight: 400;
  margin-bottom: 28px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.large-card {
   position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 170, 120, 0.35);
  min-height: 650px;
  background: #1b120f;


  display: flex;
  justify-content: center;
  align-items: flex-start;

  position: relative;

}

.large-card img {
  width: 200%;
  height: 100%;

  max-width: 720px;
  max-height: 520px;

  object-fit: contain;
  object-position: center;

  display: block;

  position: absolute;
  top: 20px;
  left: 50%;

  transform: translateX(-50%) scale(1);
  transition: transform 0.4s ease;
}

.large-card:hover img {
  transform: translateX(-50%) scale(1.08);
}





.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 7, 6, 0.92) 0%,
    rgba(10, 7, 6, 0.55) 30%,
    rgba(10, 7, 6, 0.12) 60%,
    rgba(10, 7, 6, 0.05) 100%
  );
}

.product-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.product-info h3 {
  color: #f6e9dd;
  font-size: 2rem;
  font-family: Georgia, serif;
  font-weight: 400;
  margin-bottom: 8px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.price {
  color: #f6e9dd;
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}




.footer {
  background: #0b0706;
  color: #f3ece6;
  padding: 50px 20px 20px;
border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 4 Spalten */
  gap: 40px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-column a {
  display: block;
  width: fit-content;
  position: relative;
  color: #d8cfc7;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: rgba(255, 220, 180, 0.6);
  transition: width 0.3s ease;
}

footer-column:not(.social-column) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: rgba(255, 220, 180, 0.6);
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(4px);
}



.footer-column:not(.social-column) a:hover::after {
  width: 100%;
}

.footer-bottom {
  grid-column: 1 / -1; /* ganze Breite vom Grid */
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}



.social-column {
  text-align: left;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.social-link {
  position: relative;
  width: 42px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #f3ece6;
}

.social-link i {
  display: block;
  line-height: 1;
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.social-link:hover i {
  color: #ffffff;
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(255, 200, 150, 0.4);
}

.social-label {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  display: block;

  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(20, 12, 10, 0.95);
  color: #f3ece6;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.social-link:hover .social-label {
  opacity: 1;
  visibility: visible;
}



#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff6ee;
  font-size: 18px;

  background: linear-gradient(135deg, rgba(38, 24, 19, 0.9), rgba(94, 62, 42, 0.9));
  border: 1px solid rgba(255, 220, 180, 0.25);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);

  cursor: pointer;
  overflow: hidden;

  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;

  z-index: 1000;
}

#scrollTopBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-3px) scale(1.05);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(255, 200, 150, 0.15);

  background: linear-gradient(135deg, rgba(52, 32, 25, 0.95), rgba(120, 78, 53, 0.95));
}

#scrollTopBtn:hover::before {
  left: 130%;
}

#scrollTopBtn:active {
  transform: translateY(-1px) scale(0.97);
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}





.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #efefef;
  padding: 22px 18px 12px;
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box {
  max-width: 1400px;
  margin: 0 auto;
}

.search-top {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #111;
  padding-bottom: 14px;
}

.search-icon {
  color: #111;
  font-size: 1rem;
}

#searchInput {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: #7f6b5d;
  outline: none;
}

#searchInput::placeholder {
  color: #8c7869;
}

.close-search {
  border: none;
  background: transparent;
  color: #111;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 0;
}

.close-search:hover {
  opacity: 0.7;
}

html {
  scroll-behavior: smooth;
}






.profile-menu-wrapper {
  position: relative;
}

.profile-dropdown {
  position: absolute;
  top: 54px;
  right: -70px;

  width: 360px;
  padding: 24px;

  background: rgba(20, 12, 10, 0.98);
  border: 1px solid rgba(255, 220, 180, 0.28);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.25s ease;

  z-index: 9999;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}


.profile-title {
  white-space: normal !important;
  margin-bottom: 18px !important;
  line-height: 1.2 !important;
}

/* WILLKOMMEN */
.welcome-text {
  display: block !important;
  font-size: 1.1rem !important;
  letter-spacing: 2px !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
}

/* NAME (wie im Bild 🔥) */
.profile-name {
  display: block !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
   line-height: 1.25 !important;   /* wichtig */
  padding-bottom: 4px !important; /* wichtig */
  margin-bottom: 10px !important;


  background: linear-gradient(90deg, #f5cfa3, #e0a96d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-top: 4px !important;
}

/* Ausgeloggt Text */
.profile-title:not(:has(.profile-name)) {
  font-size: 1.2rem !important; /* 🔥 größer */
  font-weight: 600 !important;
  color: #ffffff !important;
}


.profile-account-link {
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* 🔥 mehr Abstand */

  width: 100%;
  padding: 14px 18px; /* 🔥 weniger Höhe */

  border-radius: 14px !important; /* 🔥 wieder rund */

  font-size:  1.05rem; /* bisschen größer als Logout */
  font-weight: 600;

  color: #fff6ee;
  text-decoration: none;
margin-bottom: 12px !important; /* 🔥 Abstand nach unten */

}



.profile-btn {
  width: 100%;
  padding: 14px 18px !important;
  margin-bottom: 12px;
  border-radius: 14px;
  font-size: 1rem !important;
  font-weight: 700;
  text-align: center;
}

.profile-account-link.btn-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px !important;
  margin-bottom: 12px !important;
  border-radius: 14px !important;
  font-size: 1.05rem !important;
}

.profile-account-link i {
  position: absolute;
  left: 22px;
  font-size: 1.35rem;
  color: #f5cfa3;
}

#logoutBtn {
  width: 100%;
  padding: 15px 22px;
 
margin-top: 4px !important; /* optional Feinschliff */

  border-radius: 14px;
  border: 1px solid rgba(255, 220, 180, 0.28);

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;

  color: #fff6ee;
  background: linear-gradient(135deg, rgba(38, 24, 19, 0.95), rgba(94, 62, 42, 0.95));
  cursor: pointer;
}


















.login-page {
  height: 100vh;
  display: flex;
  justify-content: center; /* 👈 horizontal zentriert */
  align-items: center;     /* 👈 vertikal zentriert */
  background: #0b0706;
}

.login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* 👈 ALLES mittig */
}

.login-container {
  width: 320px;
  background: rgba(20, 12, 10, 0.95);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 220, 180, 0.15);
  text-align: center;
}

.login-container h1 {
  margin-bottom: 20px;
  color: #f3ece6;
}

.login-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  background: transparent;
  border: 1px solid rgba(255, 220, 180, 0.2);
  color: #fff;
}

.login-container button {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px; /* 👈 Abstand nach unten */
  background: linear-gradient(135deg, #5a3a28, #8b5a3c);
  color: white;
  border: none;
  cursor: pointer;
}

.login-container button:hover {
  box-shadow: 0 0 15px rgba(255, 180, 120, 0.3);
}

.login-logo {
  width: 280px;
  margin-bottom: 25px;
}

.login-bottom-text a {
  color: #d6a878; /* gold/braun */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.login-bottom-text a:hover {
  color: #f5cfa3;
  text-shadow: 0 0 8px rgba(255, 200, 150, 0.4);
}


.login-subtitle {
  font-size: 0.9rem;
  color: #cfc3b8;
  margin-bottom: 24px; /* 👈 mehr Abstand zu E-Mail */
  line-height: 1.4;
}






.social-login {
  margin-top: 25px;
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfc3b8;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(20, 12, 10, 0.6);
  border: 1px solid rgba(255, 220, 180, 0.2);
  color: #f3ece6;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(255, 200, 150, 0.3);
}





.brand-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.brand-logo-img {
  display: block;
  height: 90px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}






/* Für Konto Style.Css */
.account-page {
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

body.account-body {
  background-color: #120d0b;
  background-image: 
    linear-gradient(rgba(10, 7, 6, 0.85), rgba(18, 12, 10, 0.95)),
    url("bg-texture.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}




.account-card {
  width: 100%;
  max-width: 980px;
  background: rgba(34, 20, 15, 0.92);
  border: 1px solid rgba(255, 220, 180, 0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 20px;
}

.account-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

.account-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  background: rgba(30, 18, 14, 0.9);
  color: #f3ece6;
  border: 1px solid rgba(255, 220, 180, 0.12);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}

.menu-item i {
  font-size: 1.25rem;
  width: 26px;
  text-align: center;
}

.menu-item:hover,
.menu-item.active {
  background: linear-gradient(
    135deg,
    rgba(52, 32, 25, 0.95),
    rgba(120, 78, 53, 0.95)
  );
  transform: translateY(-2px);
}

.account-content {
  background: rgba(20, 12, 10, 0.9);
  border: 1px solid rgba(255, 220, 180, 0.15);
  padding: 34px;
  color: #f3ece6;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.content-section h2 {
  color: #f5cfa3;
  margin-bottom: 14px;
}








.account-brand {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
}

.account-header {
 background: rgba(55, 32, 24, 0.65);
  border: 1px solid rgba(255, 220, 180, 0.18);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 14px;
}

.account-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  background: #222;
}

.account-hello {
  color: #222;
  font-size: 1rem;
  margin-bottom: 6px;
}

.account-header h1 {
  color: #111;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.account-message {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
}

.account-user-text h1,
#accountName {
  color: #f5cfa3 !important;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 1px;
}



.account-logo {
  position: fixed;
  top: 28px;
  left: 40px;
  z-index: 1000;
}

.account-logo img {
  width: 200px;
  height: auto;
}


.empty-orders {
  text-align: center;
  margin-top: 40px;
}

.empty-orders i {
  font-size: 40px;
  color: #f5cfa3;
  margin-bottom: 20px;
}

.empty-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f3ece6;
  margin-bottom: 10px;
}

.empty-sub {
  color: #bfae9f;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.shop-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;        /* 🔥 entfernt schwarzen Rand */
  outline: none;       /* 🔥 entfernt Focus-Rand */
 cursor: pointer;

  background: linear-gradient(
    135deg,
    rgba(120, 78, 53, 0.95),
    rgba(200, 150, 100, 0.95)
  );

  color: #fff6ee;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 1px;

  transition: 0.25s;
}

.shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 200, 150, 0.25);
}



.address-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.address-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 220, 180, 0.2);
  background: rgba(30, 18, 14, 0.9);
  color: #fff;
}

.address-form h3 {
  margin-top: 20px;
  color: #f5cfa3;
}

#saveAddressBtn.shop-btn {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  padding: 16px 24px !important;
  margin-top: 20px !important;
  border: none !important;
}

#email[readonly] {
  opacity: 0.7;
  cursor: not-allowed;
}

#rechnungSection {
  width: 100%;
  display: block;
}

#rechnungSection input,
#rechnungSection select,
.address-form input,
.address-form select {
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  margin-bottom: 12px !important;
}

.same-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 22px;
  color: #f3ece6;
}

.same-address-row input {
  width: auto !important;
  margin: 0 !important;
}

.payment-methods {
  margin-top: 28px;
}

.payment-info {
  color: #bfae9f;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.payment-option {
  width: 100%;
  min-height: 58px;
  padding: 16px 20px;
  margin-bottom: 12px;

  border-radius: 0;
  border: 1px solid rgba(255, 220, 180, 0.22);

  background: rgba(30, 18, 14, 0.9);
  color: #fff6ee;

  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;

  cursor: pointer;
  transition: 0.25s ease;
}

.payment-option i {
  font-size: 1.35rem;
  color: #f5cfa3;
  text-align: center;
}

.payment-option strong {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.payment-option:hover,
.payment-option.active {
  background: linear-gradient(
    135deg,
    rgba(52, 32, 25, 0.95),
    rgba(120, 78, 53, 0.95)
  );
  transform: translateY(-2px);
}

.payment-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: #bfae9f;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 0.8rem;
}

.payment-divider::before,
.payment-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 220, 180, 0.2);
}

.payment-options-list {
  margin-top: 24px;
}

.saved-payment-methods {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.saved-payment-item {
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 220, 180, 0.2);
  background: rgba(30, 18, 14, 0.75);
  color: #fff6ee;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.saved-payment-item strong {
  display: block;
  color: #f5cfa3;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.saved-payment-item p {
  color: #bfae9f;
  font-size: 0.9rem;
}

.delete-payment {
  background: transparent;
  border: none;
  color: #fff6ee;
  font-size: 1.2rem;
  cursor: pointer;
}

.delete-payment:hover {
  color: #f5cfa3;
}








/* Produktseite */

.product-header {
  width: 100%;
  height: 120px;
  padding: 25px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: relative;
  z-index: 10;
}

.product-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.product-logo img {
  width: 180px !important;
  max-width: 180px !important;
  height: auto !important;
  display: block;
}

.product-cart {
  color: #ffffff !important;
  font-size: 30px !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-cart i {
  color: #ffffff !important;
  font-size: 30px !important;
}

.product-cart span {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 800;
}

.product-cart:hover,
.product-cart:hover i,
.product-cart:hover span {
  color: #c89b6d !important;
}

.product-page {
  min-height: calc(100vh - 120px);
  position: relative;
  padding: 0 40px 80px;
}

.product-container {
  width: 100%;
  min-height: calc(100vh - 200px);
  position: relative;
}

/* Bild links mittig */
.product-image {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

/* Text unten exakt mittig */
.product-info-box {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  text-align: center;
  width: 520px;
  max-width: 90vw;
}

.product-info-box h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 8px;
}

.product-price {
  font-size: 20px;
  color: #f3ece6;
  margin-bottom: 35px;
}

.product-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.product-actions label {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.product-actions select {
  padding: 16px 20px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  background: #0f0502;
  color: white;
  cursor: pointer;
}

.product-actions select:hover {
  border-color: #c89b6d;
}

.product-actions .shop-btn {
  padding: 18px 36px;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .product-image {
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 40px;
  }

  .product-info-box {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .product-actions {
    flex-wrap: wrap;
  }
}





/* Farbe Startseite / Shop */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.3s;
}

.main-nav a:not(:last-child)::after {
  content: "•";
  margin-left: 22px;
  color: rgba(255, 255, 255, 0.6);
}

.main-nav a:hover {
  color: #c89b6d;
}

.main-nav a.active {
  color: #c89b6d;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(200, 155, 109, 0.35);
}











/* Warenkorb */

.cart-header {
  width: 100%;
  height: 100px;
  padding: 20px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-logo img {
  width: 200px;
  height: auto;
  display: block;
}

.cart-shop-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-shop-link i {
  font-size: 28px;
}

.cart-shop-link:hover {
  color: #c89b6d;
}

.cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px;
}

.cart-page h1 {
  font-size: 42px;
  margin-bottom: 35px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 35px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: rgba(30, 18, 14, 0.88);
  border: 1px solid rgba(255, 220, 180, 0.18);
  border-radius: 18px;
}

.cart-item img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  background: #0b0706;
}

.cart-item-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cart-item-info p {
  color: #cfc3b8;
  margin-bottom: 5px;
}

.remove-item {
  background: transparent;
  border: none;
  color: #fff6ee;
  font-size: 22px;
  cursor: pointer;
}

.remove-item:hover {
  color: #c89b6d;
}

.cart-summary {
  padding: 28px;
  background: rgba(30, 18, 14, 0.92);
  border: 1px solid rgba(255, 220, 180, 0.2);
  border-radius: 20px;
  position: sticky;
  top: 30px;
}

.cart-summary h2 {
  margin-bottom: 25px;
  color: #f5cfa3;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  font-size: 18px;
}

.cart-summary .shop-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
}

.continue-shopping {
  display: block;
  text-align: center;

  font-size: 18px;      /* 🔥 größer */
  font-weight: 800;     /* 🔥 fetter */
  letter-spacing: 1px;

  color: #ffffff;
  text-decoration: none;

  margin-top: 10px;
  transition: 0.3s;
}

.continue-shopping:hover {
  
  color: #c89b6d;
}

@media (max-width: 850px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 90px 1fr;
  }

  .remove-item {
    grid-column: 1 / -1;
  }
}















/* Kundenservice */

.service-page {
  background: #120d0b;
}

.service-hero {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 280px;
  padding: 60px 20px;

  background:
    linear-gradient(rgba(10, 7, 6, 0.45), rgba(10, 7, 6, 0.65)),
    url("hero.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 220, 180, 0.18);
}

.service-hero h1 {
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.service-search {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 40px;
  padding: 0 22px;

  display: flex;
  align-items: center;
}

.service-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 0;
  font-size: 16px;
}

.service-search i {
  color: #111;
  font-size: 22px;
}

.service-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 45px 20px 80px;
}

.service-section h2 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(30, 18, 14, 0.9);
  border: 1px solid rgba(255, 220, 180, 0.18);
  border-radius: 18px;
  padding: 26px;
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 220, 180, 0.15);
}

.service-card-head i {
  font-size: 24px;
  color: #f5cfa3;
}

.service-card h3 {
  font-size: 18px;
}

.service-card a {
  display: block;
  color: #f3ece6;
  text-decoration: none;
  margin-bottom: 14px;
}

.service-card a:hover {
  color: #c89b6d;
}

.service-card strong {
  display: inline-block;
  color: #f5cfa3;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}






/* Kundenservice buttons */
.service-card {
  min-height: 250px;
}

.service-details {
  display: none;
}

.show-toggle {
  width: 100%;
  margin-top: 22px;
  padding: 13px 18px;

  position: relative;
  overflow: hidden;

  border-radius: 999px;
  border: 1px solid rgba(255, 220, 180, 0.25);

  background: linear-gradient(
    135deg,
    rgba(38, 24, 19, 0.9),
    rgba(94, 62, 42, 0.9)
  );

  color: #fff6ee;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
}

.show-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.show-toggle:hover::before {
  left: 130%;
}

.service-detail-box {
  display: none;
  position: relative;

  margin-top: 30px;
  padding: 34px;

  background: rgba(30, 18, 14, 0.95);
  border: 1px solid rgba(255, 220, 180, 0.22);
  border-radius: 20px;
}

.service-detail-box.active {
  display: block;
}

.service-detail-box h2 {
  color: #f5cfa3;
  margin-bottom: 20px;
}

.service-detail-box p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-detail-box strong {
  color: #f5cfa3;
}

.service-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;

  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.service-detail-close:hover {
  color: #c89b6d;
}




.site-footer {
  width: 100%;
  text-align: center;   /* 🔥 DAS ist der wichtige Part */
  padding: 30px 0;
  color: #9a8c7d;
  font-size: 14px;
}