/* ═══════════════════════════════════════════════
   Tojarii Brand Overrides
   Colors from tojarii.com
   ═══════════════════════════════════════════════ */

/* Primary font: Cairo (Arabic) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

body, .uni-body, h1, h2, h3, h4, h5, h6, p, a, span, li, button, input, textarea, select,
.ft-primary, .ft-secondary, .ft-tertiary {
    font-family: 'Cairo', 'Noto Kufi Arabic', 'Inter', system-ui, sans-serif !important;
}

/* Tojarii primary: #CF0F47 → rgb(207, 15, 71) */
:root {
    --color-primary: 207 15 71;
    --color-primary-hsl: 342 87% 44%;
}

/* CTA button gradient */
.btn-primary {
    background: linear-gradient(135deg, #CF0F47, #FF0B55) !important;
    border-color: #CF0F47 !important;
    box-shadow: 0 4px 15px rgba(207, 15, 71, 0.25);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #B00D3D, #E50A4D) !important;
    box-shadow: 0 6px 20px rgba(207, 15, 71, 0.35);
    transform: translateY(-1px);
}

/* Hero background tint */
.hero-header .bg-secondary {
    background-color: #FFF5F7 !important;
}

/* Dark mode hero */
.dark .hero-header .bg-secondary,
.dark\:bg-gray-800 .hero-header {
    background-color: #1C1917 !important;
}

/* Text primary color for .text-primary class */
.text-primary {
    color: #CF0F47 !important;
}

/* Link hover */
a:hover {
    color: #CF0F47;
}

/* Store form */
.form-control {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.form-control:focus {
    border-color: #CF0F47;
    box-shadow: 0 0 0 3px rgba(207, 15, 71, 0.1);
    outline: none;
}
.form-step { flex-direction: column; }
.step-dot { transition: all 0.3s ease; }
.step-dot.active { transform: scale(1.1); }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.border-dashed { border-style: dashed !important; }
.cursor-pointer { cursor: pointer; }
