.fashion-newsletter-container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.fashion-newsletter-header {
    background: linear-gradient(135deg, #3b82f6 0%, #fbbf24 100%);
    padding: 24px;
    text-align: center;
    color: white;
}

.fashion-newsletter-header h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: bold;
}

.fashion-newsletter-header p {
    margin: 0;
    opacity: 0.9;
}

.fashion-newsletter-form {
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s;
    direction: rtl;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    direction: rtl;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #fbbf24 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    padding: 24px;
    text-align: center;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-message h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #1f2937;
}

.coupon-container {
    background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}

.coupon-code {
    background: white;
    border: 2px dashed #3b82f6;
    border-radius: 8px;
    padding: 12px;
    font-family: monospace;
    font-size: 18px;
    font-weight: bold;
    color: #3b82f6;
    margin: 8px 0;
}

.coupon-note {
    font-size: 12px;
    color: #6b7280;
    margin: 8px 0 0 0;
}

@media (max-width: 480px) {
    .fashion-newsletter-container {
        margin: 16px;
        max-width: none;
    }
}