/* ===== Grundlayout ===== */

body {
  background-color: #F3EFE7;
  color: #1A1A1A;
  font-family: "Source Sans 3", Arial, sans-serif;
}

/* ===== Überschriften ===== */

h1, h2, h3, h4, h5 {
  color: #555555;
}

/* ===== Links ===== */

a {
  color: #9B2C2C;
}

a:hover {
  color: #7a2222;
}

/* ===== Buttons ===== */

.btn-primary {
  background-color: #385b7c;
  border-color: #385b7c;
  letter-spacing: 0.5px;
  font-weight: 600;
  border-radius: 3px;
  padding: 10px 18px;
}

.btn-primary:hover {
  background-color: #2e4a64;
  border-color: #2e4a64;
}

/* ===== Preisgestaltung ===== */

.current-price {
  font-size: 1.45rem;
  color: #385b7c;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* durchgestrichene alte Preise */

.regular-price {
  color: #888;
  font-size: 0.95rem;
}

/* ===== Produktbeschreibung besser lesbar ===== */

.product-description {
  max-width: 900px;
  line-height: 1.6;
}

/* ===== Produktcontainer ruhiger ===== */

.product-container {
  margin-top: 20px;
}

/* ===== Abstand zu Zubehör ===== */

.product-accessories {
  margin-top: 50px;
}

/* ===== Produktkarten hochwertiger ===== */

.products .product-miniature {
  background: #ffffff;
  border: 1px solid #e6e2d9;
  border-radius: 4px;
  padding: 12px;
  transition: box-shadow 0.2s ease;
}

.products .product-miniature:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ===== Karten allgemein ===== */

.card {
  border: none;
  background: #FFFFFF;
}

/* ===== Header ===== */

#header {
  background: #FFFFFF;
  border-bottom: 1px solid #e6e2d9;
}

/* ===== Tabs unter Produktbeschreibung ===== */

.tabs .nav-tabs {
  border-bottom: 1px solid #e6e2d9;
  margin-top: 20px;
}

.tabs .nav-link.active {
  color: #385b7c;
  border-color: #385b7c #385b7c transparent;
}

/* ===== Footer ===== */

#footer {
  background: #FFFFFF;
  border-top: 1px solid #e6e2d9;
  font-size: 0.95rem;
  color: #555;
}

/* ===== Sale Badge dezent ===== */

.product-flags .product-flag,
li.product-flag,
.product-flag.on-sale,
.product-flag.discount,
.product-flag.new,
.product-flag.online-only {
  background-color: #555555 !important;
  color: #ffffff !important;
  border: none !important;
}

.delivery-time {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}