:root {
    --rewe-font: "Segoe UI", "SegoeUI", "Segoe UI Variable", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --rewe-red: #f43f5e;
}

.rewe-contact-wrapper,
.rewe-contact-wrapper * {
    box-sizing: border-box;
    font-family: var(--rewe-font);
}

.rewe-contact-wrapper {
    max-width: 800px;
    margin: 40px auto 60px;
    color: #111827;
}

.rewe-contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 32px 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    margin-bottom: 24px;
}

.rewe-contact-card-secondary {
    padding-top: 24px;
}

.rewe-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 9999px;
    background: var(--rewe-red);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rewe-contact-icon-inner {
    font-size: 32px;
    color: #ffffff;
}

.rewe-contact-title {
    text-align: center;
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 600;
}

.rewe-contact-subtitle {
    text-align: center;
    margin: 0 0 24px;
    font-size: 14px;
    color: #6b7280;
}

.rewe-contact-notice {
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}

.rewe-contact-notice-success {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.rewe-contact-notice-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.rewe-contact-form {
    margin-top: 8px;
}

.rewe-contact-row {
    margin-bottom: 16px;
}

.rewe-contact-row-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.rewe-contact-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 4px;
}

.rewe-contact-field input,
.rewe-contact-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    font-size: 14px;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    box-shadow: none;
}

.rewe-contact-field input:focus,
.rewe-contact-field textarea:focus {
    border-color: var(--rewe-red);
    box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.4);
    background: #ffffff;
}

.rewe-contact-actions {
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;
}

.rewe-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    background: var(--rewe-red);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
}

.rewe-contact-button:hover {
    filter: brightness(0.95);
}

.rewe-contact-button-icon {
    font-size: 16px;
}

.rewe-contact-secondary-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
}

.rewe-contact-secondary-item {
    margin-bottom: 12px;
}

.rewe-contact-secondary-item h4 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 600;
}

.rewe-contact-secondary-item p {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
}

@media (max-width: 768px) {
    .rewe-contact-wrapper {
        margin: 24px 16px 40px;
    }
    .rewe-contact-card {
        padding: 24px 18px 22px;
    }
    .rewe-contact-row-two {
        grid-template-columns: minmax(0, 1fr);
    }
    .rewe-contact-actions {
        justify-content: stretch;
    }
    .rewe-contact-button {
        width: 100%;
    }
}
