
.kerzen-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    font-family: "Varela Text", sans-serif;
    background: transparent;
}
.kerze-open-btn {
    padding: 12px 30px;
    background-color: #d1a83b;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 20px;
}
.kerze-open-btn:hover {
    background-color: #bb942f;
}
.kerzen-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}
.kerzen-modal {
    background: #fff;
    padding: 24px 30px;
    border-radius: 0px;
    text-align: left;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    animation: scaleIn 0.3s ease;
}
.kerzen-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}
.kerzen-close:hover {
    color: #000;
}
.kerzen-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 40px;
}
.kerzen-form input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    margin-bottom: 0px;
}
.kerzen-form label {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 6px;
}
.kerzen-form input[type="checkbox"] {
    transform: scale(1.1);
    accent-color: #d1a83b;
}
.kerzen-form button {
    padding: 12px 20px;
    background-color: #d1a83b;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0px;
    transition: background-color 0.2s ease;
    margin-top: 6px;
}
.kerzen-form button:hover {
    background-color: #bb942f;
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.kerzen-liste {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}
.kerze-card {
    background: transparent;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    width: 180px;
    text-align: center;
}
.kerze-card .kerze-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}
.kerze-card p {
    margin: 0;
    font-weight: bold;
    color: #4a3d2c;
}
