.footer-box {
padding: 20px;
border-radius: 8px;
margin-top: 30px;
font-size: 0.95rem;
line-height: 1.6;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
} .footer-kategorien h3 {
margin-bottom: 10px;
font-size: 1.1rem;
}
.footer-kategorien ul li {
margin-bottom: 8px;
} .footer-etsy-reviews {
display: flex;
flex-direction: column;
}
.footer-etsy-reviews .ets-header {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.footer-etsy-reviews .ets-icon {
font-size: 1.4rem;
margin-right: 8px;
}
.footer-etsy-reviews .ets-title {
font-weight: bold;
font-size: 1.1rem;
}
.footer-etsy-reviews .ets-reviews blockquote {
margin: 0 0 10px;
padding: 0;
font-style: italic;
}
.footer-etsy-reviews .ets-footer {
text-align: center;
margin-top: 10px;
}
.footer-etsy-reviews .ets-footer a {
text-decoration: none;
font-weight: bold;
}
.footer-etsy-reviews .ets-footer a:hover {
text-decoration: underline;
} .text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; } .faq-accordion {
font-family: sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 10px 0;
border-top: 1px solid var(--glb-primary-color);
}
.faq-item {
border-bottom: 1px solid #ccc;
}
.faq-question {
cursor: pointer;
padding: 15px;
position: relative;
font-weight: bold;
background-color: #f9f9f9;
transition: background 0.3s ease;
color: inherit;
}
.faq-question:hover {
background-color: #ececec;
}
.faq-question::after {
content: '+';
position: absolute;
right: 20px;
font-size: 1.5em;
transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after {
content: '–';
}
.faq-answer {
display: none;
padding: 0 15px 15px 15px;
background-color: #fff;
color: #333;
line-height: 1.6;
}
.faq-item.open .faq-answer {
display: block;
}