/*
Theme Name: 3dcapo-shop
Theme URI: https://www.3dcapo.de
Description: Child Theme von BestShop mit poppig-rotem KingOf3D-Style
Author: Gottlob
Template: best-shop
Version: 1.2
*/

/* === Footer-Boxen (angepasst) === */
.footer-box {
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  font-size: 0.95rem;
  line-height: 1.6;
  background-color: #d80000;
  color: #ffdd00;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* === Footer-Kategorien === */
.footer-kategorien h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #ffdd00;
}
.footer-kategorien ul li {
  margin-bottom: 8px;
  color: #ffffff;
}
.footer-kategorien ul li a {
  color: #ffdd00;
  text-decoration: none;
}
.footer-kategorien ul li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* === Utility-Klassen === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* === FAQ Akkordeon – KingOf3D-Stil === */
.faq-accordion {
  font-family: "Segoe UI", sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #fff7e6;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #ffcc00;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 15px 20px;
  position: relative;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: #fdf1d6;
  color: #333;
  transition: background 0.3s ease;
  border-radius: 12px;
}

.faq-question:hover {
  background-color: #ffefb3;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  color: #ffcc00;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '–';
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  color: #222;
  font-size: 1rem;
  border-radius: 0 0 12px 12px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-accordion .faq-info-text {
  color: #444;
  font-size: 1rem;
  padding: 20px;
  background-color: #fff0d9;
  border-radius: 16px 16px 0 0;
  font-family: "Segoe UI", sans-serif;
}

.faq-accordion .faq-info-text a {
  color: #d32f2f;
  font-weight: bold;
  text-decoration: underline;
}

.faq-accordion .faq-info-text a:hover {
  color: #b71c1c;
  text-decoration: none;
}


/* === Sticky Store Notice === */
body .woocommerce-store-notice {
  position: fixed !important;
  top: unset !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  width: 100vw;
  max-height: 60px;
  background-color: #d80000 !important;
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding: 12px 15px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

/* Sorgt dafür, dass alle Kindelemente auch sichtbar bleiben */
.woocommerce-store-notice * {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

/* Starke Linkfarbe für bessere Lesbarkeit */
.woocommerce-store-notice a,
.woocommerce-store-notice a:visited {
  color: #ffff66 !important;
  font-weight: bold;
  text-decoration: underline;
}

/* Hover-Effekt: weißer Text */
.woocommerce-store-notice a:hover {
  color: #ffffff !important;
  text-decoration: none;
}

/* Deko-Elemente entfernen */
.woocommerce-store-notice::before,
.woocommerce-store-notice::after {
  display: none !important;
  content: none !important;
}

.rounded-box {
  padding-bottom: 20px !important;
}

/* === Promo-Box mit Bild und Text === */
.promo-box,
.about-promo-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #a00000 0%, #d80000 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  color: #fff6b0;
  font-family: "Segoe UI", sans-serif;
  margin-bottom: 30px;
}

.promo-box img,
.about-promo-box img,
.about-promo-image {
  width: 120px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  display: block;
}

.promo-content,
.about-promo-text {
  flex: 1;
  min-width: 200px;
}

.promo-content h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffdd00;
  margin-bottom: 10px;
}

.promo-content p,
.about-promo-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff6b0;
  margin-bottom: 12px;
}

.promo-content strong,
.promo-content em,
.about-promo-text strong,
.about-promo-text em {
  color: #ffdd00;
  font-weight: bold;
}

.promo-button,
.about-promo-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ffdd00;
  color: #000000;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.promo-button:hover,
.about-promo-button:hover {
  background-color: #ffe600;
  transform: scale(1.05);
}
/* Nur für die "NEU BEI CAB3D!" Box */
.promo-box.highlight-box .promo-content {
  text-align: center;
}

.promo-box.highlight-box .promo-button {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}


/* === Willkommen-Box === */
.welcome-box {
  background-color: #c1001f;
  border-radius: 16px;
  padding: 20px;
  margin-top: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  color: #fff6b0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-family: "Segoe UI", sans-serif;
}
.welcome-box h1,
.welcome-box h2,
.welcome-box h3,
.welcome-box p,
.welcome-box li,
.welcome-box em,
.welcome-box strong {
  color: #fff6b0;
}
.welcome-box h1,
.welcome-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}
.welcome-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
.welcome-box .highlight,
.welcome-box strong.highlight,
.welcome-box em.highlight {
  color: #ffdd00;
  font-weight: bold;
}
.welcome-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
.welcome-box li {
  margin-bottom: 8px;
  color: #fff6b0;
}
.welcome-box li strong {
  color: #ffdd00;
}
.welcome-box .welcome-discover {
  margin-top: 20px;
}
.welcome-box .welcome-button-box {
  text-align: center;
  margin-top: 30px;
}
.welcome-box .welcome-button {
  background-color: #ffdd00;
  color: #000000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  display: inline-block;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.welcome-box .welcome-button:hover {
  background-color: #ffe600;
  transform: scale(1.05);
}

/* === Einheitlicher vertikaler Abstand === */
.promo-box,
.about-promo-box,
.welcome-box,
.payment-methods-box,
.footer-box,
.rounded-box,
.faq-accordion,
.footer-etsy-reviews {
  margin-bottom: 30px;
}
.kingof3d-h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #d80000;
  text-align: center;
  margin-bottom: 30px;
}
.seo-intro {
  padding: 20px;
  margin: 30px auto;
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  background: #fff6e6;
  border-left: 6px solid #ffdd00;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.seo-intro h2 {
  font-size: 1.6rem;
  color: #d80000;
  margin-bottom: 12px;
}
.seo-intro-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff6e6;
  border-left: 6px solid #ffdd00;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.seo-intro-flex .seo-text {
  flex: 1;
  min-width: 280px;
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
}

.seo-intro-flex .seo-image {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.seo-intro-flex .seo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* === USP Container === */
/* Hauptcontainer */
.usp-container {
  background-color: #c00;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

/* Überschrift */
.usp-header h2 {
  color: #FFD700;
  font-size: 2em;
  margin-bottom: 10px;
}

.usp-header p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #fff;
}

/* USP-Box – 5 Spalten nebeneinander */
.usp-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background-color: #fff8e5;
  padding: 30px;
  border-radius: 25px;
  color: #222;
  align-items: start;
}

/* USP-Item jetzt mit Flexbox */
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Optional: kannst du auch auf 'center' setzen */
  text-align: center;
  height: 100%;
}

/* USP-Icons */
.usp-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  padding: 10px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  display: block;
}


/* USP-Text */
.usp-text strong {
  display: block;
  color: #c00;
  font-size: 1.05em;
  margin-bottom: 4px;
}

.usp-text span {
  font-size: 0.95em;
  color: #222;
}

/* Payment Icons */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.payment-icons img {
  height: 26px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
/* Nach-oben-Button fixieren und sichtbar machen */
.backtotop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #ffcc00;
  color: #000;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: none; /* Wird durch JS sichtbar */
}
.footer-widget-box {
  background-color: #111;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Einheitliche H2- und Widget-Überschrift – orange, fett, größer */
.footer-widget-box h2,
.footer-widget-box .widget-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: orange !important;
}

/* H3 bleibt separat (z. B. für manuelle Boxüberschriften) */
.footer-widget-box h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff8800;
  margin-bottom: 12px;
}

/* Aufzählungsliste in Footer-Box */
.footer-widget-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-widget-box ul li {
  margin-bottom: 8px;
}

/* Link-Stil innerhalb der Listenelemente */
.footer-widget-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget-box ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Standard-Absatz im Footer-Widget */
.footer-widget-box p {
  margin: 0 0 10px;
  color: #ddd;
  font-size: 0.95rem;
}

/* Allgemeine Links im Footer-Widget */
.footer-widget-box a {
  color: #ffdd00;
  text-decoration: underline;
}

.footer-widget-box a:hover {
  color: #ffffff;
  text-decoration: none;
}
.footer-widget-box h2,
.footer-widget-box h3,
.footer-widget-box .widget-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  font-family: inherit !important;
  color: orange !important;
  margin-bottom: 1rem !important;
  text-transform: none !important;
}


/* Shop-Link oben rechts als Button */
#top-menu li a[href*="shop"],
#site-navigation li a[href*="shop"] {
  background: #d80000;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Hover-Effekt */
#top-menu li a[href*="shop"]:hover,
#site-navigation li a[href*="shop"]:hover {
  background: #a00000;
}
.footer-latest-products {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-latest-products li {
  margin-bottom: 6px;
}

.footer-latest-products li a {
  color: #ffdd00;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-latest-products li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-latest-products i {
  color: #ff8800;
  margin-right: 6px;
}
.footer-latest-products li::before {
  content: "➜";
  margin-right: 6px;
  color: #ff8800;
  font-family: Arial, sans-serif; /* Fallback-Fonts mit Symbolunterstützung */
}


