/*
Theme Name: Divi Child
Theme URI: https://www.manukainer.at/
Description: Child Theme für Divi – ModeWelt Manu Kainer
Author: Manu Kainer
Author URI: https://www.manukainer.at/
Template: Divi
Version: 1.0
*/

@import url("../Divi/style.css");

/* Eigene Styles hier */



/* 🔮 MODEWELT TALER – Design */

.modewelt-taler-box {
    background-color: #fdf7fa;
    border: 1px solid #e5cbd7;
    border-left: 5px solid #cc3366;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    max-width: 600px;
}

.modewelt-taler-box label {
    font-weight: 600;
    color: #5a2a3e;
}

.modewelt-taler-box input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

.modewelt-taler-box button {
    background-color: #cc3366;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.modewelt-taler-box button:hover {
    background-color: #a42852;
}

.modewelt-taler-success {
    background-color: #fdf0f5;
    border-left: 5px solid #cc3366;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: inherit;
}

.modewelt-taler-success h3 {
    color: #cc3366;
    margin-top: 0;
}

.modewelt-taler-success p {
    font-size: 1.05rem;
    color: #4d2c3a;
    line-height: 1.5;
}

.modewelt-taler-box p span {
    font-weight: bold;
    font-size: 1.2rem;
    color: #cc3366;
}


/* ModeWelt Suche Styling (schlank & elegant) .................................................... */

form[role="search"] {
    max-width: 100%;
    margin: 10px auto;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

form[role="search"] input[type="text"] {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    border-radius: 4px;
    border: 2px solid #e02b20;
    padding: 6px 8px;
    box-sizing: border-box;
}

form[role="search"] button[type="submit"] {
    background-color: #e02b20;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
}

form[role="search"] button[type="submit"]:hover {
    background-color: #c0251a; /* etwas dunkler beim Hover */
}

/* Mobilgeräte Anpassung */
@media only screen and (max-width: 600px) {
    form[role="search"] {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }

    form[role="search"] input[type="text"],
    form[role="search"] button[type="submit"] {
        width: 100%;
        font-size: 15px;
    }
}

/* Ende ModeWelt Suche Styling .................................................... */
