*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    min-height: 100dvh;
    line-height: 1.5;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

textarea {
    line-height: 1.5;
}

button {
    cursor: pointer;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 600;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:focus {
    outline: none;
}

::selection {
    background: #c8a96a;
    color: #ffffff;
}

[v-cloak] {
    display: none;
}

:root {
    /* Brand */
    --primary: #111111;
    --primary-hover: #262626;

    --accent: rgb(200, 169, 106);
    --accent-hover: #b69454;
    --accent-light: #f4e9d4;

    /* Backgrounds */
    --bg: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-tertiary: #f2f2f2;

    /* Text */
    --text-primary: #111111;
    --text-secondary: #6e6e6e;
    --text-muted: #9ca3af;
    --text-white: #ffffff;

    /* Borders */
    --border: #e5e7eb;
    --border-light: #f1f3f5;

    /* Status */
    --success: #16a34a;
    --error: #dc2626;
    --warning: #f59e0b;
    --info: #2563eb;

    /* Shadows */
    --shadow: rgba(17, 17, 17, 0.08);
    --shadow-lg: rgba(17, 17, 17, 0.14);
}

body {
    direction: rtl;
    background: #f8f8f6;
    color: var(--text-primary);
    font-family: "EstedadFD", sans-serif;
}

.leaflet-top.leaflet-left,
.leaflet-bottom.leaflet-right {
    display: none !important;
}

.el-select .el-select__wrapper {
    text-align: right;
}

.el-select-dropdown__item.is-selected {
    color: var(--accent) !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
