/* ============================================================
   استایل اختصاصی بخش بنر (banner_ads)
   Path: templates/forms/sections/specs/banner_ads/style.css
   ============================================================ */

.sadtik-banner-specs {
    background: linear-gradient(135deg, #fefce8, #fffbeb);
    border: 2px solid #fde68a;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
    font-family: 'Estedad', sans-serif;
}

.sadtik-banner-specs .sadtik-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #fde68a;
}

.sadtik-banner-specs .sadtik-card-header i {
    font-size: 20px;
    color: #d97706;
    background: #fffbeb;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.sadtik-banner-specs .sadtik-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #78350f;
    margin: 0;
}

.sadtik-banner-specs .sadtik-field-group {
    margin-bottom: 16px;
}

.sadtik-banner-specs .sadtik-field-group label {
    font-size: 13px;
    font-weight: 600;
    color: #78350f;
    display: block;
    margin-bottom: 8px;
}

.sadtik-banner-specs .sadtik-input-control {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    background: #ffffff;
    border: 2px solid #fde68a;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
    outline: none;
}

.sadtik-banner-specs .sadtik-input-control:hover {
    border-color: #f59e0b;
    background: #fefef8;
}

.sadtik-banner-specs .sadtik-input-control:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
    transform: translateY(-1px);
}

.sadtik-banner-specs .sadtik-input-control::placeholder {
    color: #94a3b8;
    font-size: 13px;
}

.sadtik-banner-specs .select-wrapper {
    position: relative;
}

.sadtik-banner-specs select.sadtik-input-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
    padding-left: 40px !important;
    cursor: pointer;
}

.sadtik-banner-specs .select-arrow {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #d97706;
    font-size: 13px;
    pointer-events: none;
}

.sadtik-banner-specs .field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #92400e;
    margin-top: 8px;
}

.sadtik-banner-specs .field-hint::before {
    content: "💡";
    font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
    .sadtik-banner-specs {
        padding: 18px;
    }
    .sadtik-banner-specs .sadtik-input-control {
        height: 44px;
        padding: 0 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sadtik-banner-specs {
        padding: 14px;
    }
    .sadtik-banner-specs .sadtik-input-control {
        height: 42px;
        padding: 0 10px;
        font-size: 13px;
    }
}