:root {
    --bg: #eef2f8;
    --bg-alt: #dfe7f2;
    --surface: rgba(255, 255, 255, 0.96);
    --ink: #0f172a;
    --ink-muted: #526176;
    --accent: rgb(0 0 36);
    --accent-dark: rgb(0 0 22);
    --accent-light: rgba(0, 0, 36, 0.08);
    --outline: rgba(0, 0, 36, 0.12);
    --shadow: 0 28px 60px rgba(0, 0, 36, 0.18);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::selection {
    background: rgba(0, 0, 36, 0.88);
    color: #fff;
}

body {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 42%),
        linear-gradient(180deg, #f9fbff 0%, var(--bg) 46%, #edf2f9 100%);
    min-height: 100vh;
    line-height: 1.6;
}

body.is-rtl {
    direction: rtl;
    font-family: "Cairo", "Source Sans 3", sans-serif;
}

body.is-rtl .header-inner {
    flex-direction: row-reverse;
}

body.is-rtl .header-actions {
    flex-direction: row-reverse;
}

body.is-rtl .hero-copy,
body.is-rtl .feature-copy,
body.is-rtl .value-card,
body.is-rtl .step,
body.is-rtl .testimonial,
body.is-rtl .cta-inner,
body.is-rtl .section-head,
body.is-rtl .footer-grid,
body.is-rtl .trust {
    text-align: right;
}

h1,
h2,
h3,
h4 {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

select,
input,
textarea {
    font: inherit;
    color: inherit;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 36, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 36, 0.04);
    color: var(--ink);
}

.site-header .brand {
    color: var(--ink);
}

.site-header .lang-switch {
    background: rgba(0, 0, 36, 0.05);
    border-color: var(--outline);
}

.site-header .lang-caret {
    color: rgba(255, 255, 255, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 16px;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.lang-btn.is-active {
    background: var(--ink);
    color: #fff;
}

.lang-dropdown {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
}

.lang-dropdown summary {
    list-style: none;
}

.lang-dropdown summary::-webkit-details-marker {
    display: none;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--outline);
    background: var(--surface);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
}

.lang-caret {
    font-size: 0.75rem;
    color: var(--ink-muted);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: 16px;
    padding: 6px;
    min-width: 140px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 50;
}

.lang-dropdown:not([open]) .lang-menu {
    display: none;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: transparent;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    text-align: left;
}

.lang-option:hover {
    background: var(--bg);
}

.lang-option.lang-btn.is-active {
    background: var(--ink);
    color: #fff;
}

.lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid var(--outline);
    object-fit: cover;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 36, 0.22);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    border: 1px solid var(--outline);
    background: transparent;
}

.reserve-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 40;
}

.reserve-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.reserve-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.reserve-panel {
    position: relative;
    background: #fff;
    width: min(760px, 92vw);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
    padding: 22px;
    display: grid;
    gap: 20px;
    z-index: 1;
    max-height: calc(100vh - 100px);
    overflow: hidden;
    overflow-y: auto;
}

.reserve-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    font-size: 1.2rem;
    color: var(--ink);
}

.reserve-head {
    display: grid;
    gap: 8px;
}

.reserve-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
}

.reserve-subtitle {
    color: var(--ink-muted);
}

.reserve-form {
    display: grid;
    gap: 12px;
}

.reserve-field {
    display: grid;
    gap: 5px;
    font-weight: 600;
    color: var(--ink);
}

.reserve-field input,
.reserve-field textarea,
.reserve-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--outline);
    background: #fff;
    font-weight: 500;
}

.reserve-row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reserve-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
    align-items: start;
}

.reserve-calendar {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: #f5f7fb;
    border: 1px solid var(--outline);
}

.reserve-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.calendar-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--outline);
    font-size: 1rem;
    color: var(--ink);
}

.calendar-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-month {
    font-weight: 600;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-size: 0.7rem;
    color: var(--ink-muted);
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.calendar-grid {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    border: 1px solid transparent;
    background: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--ink);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.calendar-day.is-muted {
    color: #94a3b8;
    background: #edf2f7;
    box-shadow: none;
}

.calendar-day.is-booked {
    color: #94a3b8;
    background: #e2e8f0;
    box-shadow: none;
}

.calendar-day.is-selected {
    background: var(--accent);
    color: #fff;
}

.calendar-times {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.time-grid {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
}

.time-slot {
    padding: 8px 10px;
    border-radius: 9px;
    border: 1px solid var(--outline);
    background: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--ink);
}

.time-slot.is-selected {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
}

.reserve-footnote {
    font-size: 0.85rem;
    color: var(--ink-muted);
    text-align: center;
}

body.modal-open {
    overflow: hidden;
}

.hero {
    height: 100vh;
    padding: 120px 0 0;
    position: relative;
    background-image: url('../img/cabinet1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 36, 0.4) 100%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    bottom: 0;
    height: 100%;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: end;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 80px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 1px solid var(--outline);
    min-width: 130px;
}

.trust-number {
    font-weight: 700;
    font-size: 1.2rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.hero-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: flex-end;
}

.hero-card img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

.hero-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-overlay p {
    font-weight: 700;
    color: #fff;
}

.hero-card-overlay span {
    color: rgba(255, 255, 255, 0.7);
}

body.is-rtl .hero-card-overlay {
    left: 20px;
    right: 20px;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--ink-muted);
    max-width: 600px;
    margin: 0 auto;
}

.value {
    padding: 70px 0;
}

.value-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.value-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--outline);
    box-shadow: 0 18px 40px rgba(0, 0, 36, 0.08);
}

.value-icon {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.features {
    padding: 70px 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(223, 231, 242, 0.88)),
        var(--bg-alt);
}

.features-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.feature-image {
    position: relative;
}

.feature-image::before {
    content: "";
    position: absolute;
    inset: -18px 12% -18px -18px;
    border-radius: calc(var(--radius-lg) + 8px);
    background: linear-gradient(145deg, rgba(0, 0, 36, 0.12), rgba(255, 255, 255, 0.35));
    z-index: 0;
}

.feature-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 30px;
    color: var(--ink-muted);
}

.feature-list li {
    list-style: none;
    padding-left: 22px;
    position: relative;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

body.is-rtl .feature-list li {
    padding-left: 0;
    padding-right: 22px;
}

body.is-rtl .feature-list li::before {
    left: auto;
    right: 0;
}

body.is-rtl .reserve-panel {
    text-align: right;
}

body.is-rtl .reserve-close {
    right: auto;
    left: 14px;
}

body.is-rtl .reserve-calendar-header {
    flex-direction: row-reverse;
}

.steps {
    padding: 70px 0;
}

.steps-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.step {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--outline);
}

.step-number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
}

.stats {
    padding: 50px 0;
    background: var(--accent);
    color: #fff;
}

.stats-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
}

.testimonials {
    padding: 70px 0;
}

.testimonial-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--outline);
    min-height: 170px;
    box-shadow: 0 16px 36px rgba(0, 0, 36, 0.06);
}

.testimonial span {
    display: block;
    margin-top: 14px;
    font-weight: 600;
    color: var(--accent-dark);
}

.cta {
    padding: 84px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 36, 0.94), rgba(18, 33, 72, 0.92));
    color: #fff;
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    pointer-events: none;
}

.cta::before {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -80px;
    background: rgba(156, 180, 223, 0.22);
}

.cta::after {
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: -60px;
    background: rgba(255, 255, 255, 0.08);
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: stretch;
}

.cta-panel {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.cta-links-panel h2,
.cta-form-panel h3 {
    color: #fff;
}

.cta-links-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.cta-links {
    display: grid;
    gap: 14px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-link-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
}

.contact-link-icon svg {
    width: 22px;
    height: 22px;
}

.contact-link-copy {
    display: grid;
    gap: 2px;
}

.contact-link-copy strong {
    font-size: 1rem;
}

.contact-link-copy small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-form {
    display: grid;
    gap: 12px;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font: inherit;
    background: rgba(9, 16, 54, 0.72);
    color: #fff;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.cta-form textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-form-panel .btn-primary {
    width: 100%;
}

.cta-email {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(3, 8, 28, 0.98), rgba(6, 12, 36, 0.98));
    color: #d3dbef;
    padding: 60px 0 20px;
}

.faq {
    padding: 70px 0;
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--outline);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.first-visit .hero-copy {
    animation: fadeUp 0.9s ease-out both;
}

.first-visit .hero-visual {
    animation: fadeUp 1.1s ease-out both;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
}

.footer-column {
    display: grid;
    gap: 10px;
}

.footer-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(211, 219, 239, 0.6);
}

.site-footer .brand,
.site-footer a {
    color: #f8fbff;
}

.site-footer p {
    color: rgba(211, 219, 239, 0.76);
}

.footer-highlight {
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(211, 219, 239, 0.6);
}

.footer-credit,
.footer-credit a {
    color: rgba(211, 219, 239, 0.78);
}

body.is-rtl .contact-link {
    flex-direction: row-reverse;
}

body.is-rtl .contact-link-copy {
    text-align: right;
}

@media (max-width: 800px) {
    .hero {
        height: auto;
    }
    .header-inner {
        padding: 12px 0;
        gap: 8px;
    }

    .brand {
        font-size: 1.15rem;
    }

    .header-actions {
        gap: 8px;
    }

    .lang-toggle {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-card img {
        height: 320px;
    }

    .feature-image::before {
        inset: -12px 8% -12px -12px;
    }

    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .brand {
        font-size: 1rem;
        white-space: nowrap;
    }

    .lang-toggle {
        padding: 4px;
        font-size: 0.7rem;
    }

    .lang-code {
        display: none;
        /* Hide language text to save space, only show flag */
    }

    .btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-panel {
        padding: 22px;
    }

    .reserve-panel {
        padding: 22px;
    }

    .reserve-close {
        top: 10px;
        right: 10px;
    }

    .reserve-grid {
        grid-template-columns: 1fr;
    }
}

.global-alert {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--ink);
    padding: 14px 24px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 10000;
    font-weight: 600;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 90vw;
}

.global-alert.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.global-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.global-alert.success .global-alert-icon {
    color: #10b981;
}

.global-alert.error .global-alert-icon {
    color: #ef4444;
}

.global-alert.error {
    border-bottom: 3px solid #ef4444;
}

.global-alert.success {
    border-bottom: 3px solid #10b981;
}

.global-alert-msg {
    font-size: 0.95rem;
    line-height: 1.4;
}
