@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Cairo:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap";

/* src/styles.scss */
:root {
  --sf-ink: #211810;
  --sf-muted: #7a6c5a;
  --sf-line: #e7dece;
  --sf-gold: #a77d28;
  --sf-surface: #fffdf9;
  --sf-wash: #f7f1e7;
  --sf-focus: 0 0 0 3px rgba(167, 125, 40, 0.35);
  --sf-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sf-ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --sf-ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --sf-dur-fast: 220ms;
  --sf-dur: 480ms;
  --sf-dur-slow: 900ms;
  --sf-reveal-delay: 0ms;
  --sf-reveal-duration: 900ms;
}
@keyframes sf-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes sf-float {
  0%, 100% {
    transform: translateY(0) rotateX(64deg) rotateZ(-18deg);
  }
  50% {
    transform: translateY(-14px) rotateX(64deg) rotateZ(-12deg);
  }
}
@keyframes sf-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes sf-pulse-soft {
  0%, 100% {
    opacity: 0.45;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}
@keyframes sf-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sf-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sf-scale-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes sf-slide-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sf-slide-up-in {
  from {
    opacity: 0;
    transform: translateY(120%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sf-cart-pop {
  0% {
    transform: scale(0.4);
  }
  55% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes sf-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
@keyframes sf-line-draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes sf-glow-breathe {
  0%, 100% {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.35), 0 30px 80px rgba(0, 0, 0, 0.55);
  }
  50% {
    box-shadow: inset 0 0 36px rgba(255, 246, 210, 0.55), 0 36px 90px rgba(0, 0, 0, 0.45);
  }
}
@keyframes sf-login-veil {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sf-login-seal {
  0% {
    opacity: 0;
    transform: scale(0.55) rotate(-12deg);
  }
  55% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes sf-login-check {
  from {
    stroke-dashoffset: 36;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes sf-btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.sf-skeleton,
.skeleton-grid i,
.loader {
  background:
    linear-gradient(
      90deg,
      #f3ecdf,
      #fff,
      #f3ecdf);
  background-size: 200% 100%;
  animation: sf-shimmer 1.4s ease-in-out infinite;
}
.sf-empty,
.empty,
.state:not(.error) {
  color: var(--sf-muted);
}
.sf-error,
.state.error {
  color: #9a3d33;
}
.sf-success {
  color: #2f6b3a;
}
.sf-confirm {
  border: 1px solid var(--sf-line);
  background: var(--sf-surface);
  padding: 1rem;
}
.sf-reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity var(--sf-reveal-duration) var(--sf-ease-out) var(--sf-reveal-delay), transform var(--sf-reveal-duration) var(--sf-ease-out) var(--sf-reveal-delay);
}
.sf-reveal--up {
  transform: translateY(36px);
}
.sf-reveal--left {
  transform: translateX(-40px);
}
.sf-reveal--right {
  transform: translateX(40px);
}
.sf-reveal--scale {
  transform: scale(0.94);
}
.sf-reveal--fade {
  transform: none;
}
.sf-reveal--in {
  opacity: 1;
  transform: none;
}
.sf-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  animation: sf-rise 0.75s var(--sf-ease-out) forwards;
}
.sf-stagger > *:nth-child(1) {
  animation-delay: 0.05s;
}
.sf-stagger > *:nth-child(2) {
  animation-delay: 0.12s;
}
.sf-stagger > *:nth-child(3) {
  animation-delay: 0.19s;
}
.sf-stagger > *:nth-child(4) {
  animation-delay: 0.26s;
}
.sf-stagger > *:nth-child(5) {
  animation-delay: 0.33s;
}
.sf-stagger > *:nth-child(6) {
  animation-delay: 0.4s;
}
.sf-stagger > *:nth-child(7) {
  animation-delay: 0.47s;
}
.sf-stagger > *:nth-child(8) {
  animation-delay: 0.54s;
}
.sf-btn-motion {
  transition:
    transform var(--sf-dur-fast) var(--sf-ease-soft),
    background var(--sf-dur-fast),
    color var(--sf-dur-fast),
    letter-spacing var(--sf-dur);
}
.sf-btn-motion:hover {
  transform: translateY(-2px);
  letter-spacing: 0.14em;
}
.sf-btn-motion:active {
  transform: translateY(0) scale(0.98);
}
@media (prefers-reduced-motion: reduce) {
  .sf-reveal,
  .sf-stagger > *,
  .sf-btn-motion,
  .skeleton-grid i,
  .loader,
  .sf-skeleton {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
:root {
  --bg-primary: #faf7f1;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f4efe6;
  --bg-card: #ffffff;
  --bg-hover: #f6f1e8;
  --bg-active: #ece4d5;
  --accent-primary: #bd9434;
  --accent-primary-light: #8c6e1f;
  --accent-primary-dark: #a07d22;
  --accent-secondary: #bd9434;
  --accent-gradient:
    linear-gradient(
      135deg,
      #d3ac4d 0%,
      #bd9434 55%,
      #a87f29 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #ddba63 0%,
      #c9a043 55%,
      #b58a31 100%);
  --aa-ivory: #faf7f1;
  --aa-gold: #b68a32;
  --aa-gold-soft: #d8b660;
  --aa-ink: #1a130d;
  --aa-brown: #3a2a1c;
  --aa-serif:
    "Cormorant Garamond",
    Georgia,
    "Times New Roman",
    serif;
  --aa-sans:
    "Source Sans 3",
    "Segoe UI",
    sans-serif;
  --aa-radius-sm: 2px;
  --aa-radius-md: 6px;
  --aa-elevation-sm: 0 8px 24px rgba(26, 19, 13, 0.06);
  --aa-elevation-md: 0 18px 48px rgba(26, 19, 13, 0.1);
  --aa-focus: 0 0 0 3px rgba(182, 138, 50, 0.35);
  --success: #2f7d46;
  --success-light: #2f7d46;
  --warning: #a9760f;
  --warning-light: #a9760f;
  --error: #c0392b;
  --error-light: #c0392b;
  --info: #8c6e1f;
  --text-primary: #221e17;
  --text-secondary: #5f584c;
  --text-muted: #978f80;
  --text-disabled: #c3bcae;
  --border-color: #ece5d8;
  --border-light: #ddd4c3;
  --border-focus: #bd9434;
  --shadow-sm: 0 1px 2px rgba(58, 48, 26, 0.06);
  --shadow-md: 0 4px 14px rgba(58, 48, 26, 0.08);
  --shadow-lg: 0 12px 32px rgba(58, 48, 26, 0.10);
  --shadow-xl: 0 24px 50px rgba(58, 48, 26, 0.14);
  --shadow-glow: none;
  --shadow-glow-lg: none;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --radius-sm: 6px;
  --radius-md: 9px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --transition-fast: 130ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 320ms ease;
  --sidebar-width: 250px;
  --sidebar-collapsed: 70px;
  --navbar-height: 64px;
  --content-max-width: 1600px;
  --store-ink: #1a130d;
  --store-brown: #382719;
  --store-gold: #aa812d;
  --store-gold-light: #d8b65f;
  --store-ivory: #f6f0e6;
  --store-white: #fffdf9;
  --store-serif:
    Georgia,
    "Times New Roman",
    serif;
  --store-space-section: clamp(4rem, 8vw, 8rem);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--aa-sans);
  font-size: 15px;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}
html[dir=rtl] body {
  text-align: right;
  font-family: "Cairo", var(--aa-sans);
}
html[dir=ltr] body {
  text-align: left;
}
h1,
h2,
h3,
.display-serif {
  font-family: var(--aa-serif);
}
:focus-visible {
  outline: none;
  box-shadow: var(--aa-focus);
}
.aa-skeleton {
  background:
    linear-gradient(
      90deg,
      #f3ecdf,
      #fff,
      #f3ecdf);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.aa-empty-state,
.aa-error-state {
  min-height: 280px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--text-muted);
  gap: 0.75rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}
p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}
a {
  color: var(--accent-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--accent-primary);
}
:focus-visible {
  outline: 2px solid var(--store-gold);
  outline-offset: 3px;
}
::selection {
  background: var(--store-gold);
  color: #fff;
}
img {
  max-width: 100%;
}
.state-skeleton {
  min-height: 1rem;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(
      90deg,
      #eee6d8 25%,
      #fffdf9 50%,
      #eee6d8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.empty-state,
.error-state {
  min-height: 260px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}
.error-state {
  color: var(--error);
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}
input:hover,
select:hover,
textarea:hover {
  border-color: var(--border-light);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18);
  background: var(--bg-secondary);
}
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23978f80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 48px;
}
html[dir=rtl] select {
  background-position: left 14px center;
  padding-right: 18px;
  padding-left: 48px;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}
.form-group {
  margin-bottom: var(--spacing-lg);
}
button,
.btn {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}
button:disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(189, 148, 52, 0.25);
}
.btn-primary:hover:not(:disabled) {
  background: var(--accent-gradient-hover);
  box-shadow: 0 4px 12px rgba(189, 148, 52, 0.32);
}
.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--bg-hover);
  border-color: var(--border-light);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover:not(:disabled) {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.btn-outline {
  background: transparent;
  color: var(--accent-primary-light);
  border: 1px solid var(--accent-primary);
}
.btn-outline:hover:not(:disabled) {
  background: rgba(201, 162, 74, 0.12);
  color: var(--accent-primary-light);
}
.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover:not(:disabled) {
  background: var(--success-light);
}
.btn-danger {
  background: var(--error);
  color: #fff;
}
.btn-danger:hover:not(:disabled) {
  background: var(--error-light);
}
.btn-icon {
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.card:hover {
  border-color: var(--border-light);
}
.card.card-interactive:hover {
  box-shadow: var(--shadow-md);
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--border-color);
}
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: left;
}
th {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}
td {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: var(--bg-hover);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge-success {
  background: rgba(92, 184, 92, 0.15);
  color: var(--success-light);
}
.badge-warning {
  background: rgba(217, 164, 65, 0.15);
  color: var(--warning-light);
}
.badge-error {
  background: rgba(217, 83, 79, 0.15);
  color: var(--error-light);
}
.badge-info {
  background: rgba(201, 162, 74, 0.15);
  color: var(--accent-primary-light);
}
.badge-primary {
  background: rgba(201, 162, 74, 0.15);
  color: var(--accent-primary-light);
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-muted {
  color: var(--text-muted);
}
.text-success {
  color: var(--success-light);
}
.text-warning {
  color: var(--warning-light);
}
.text-error {
  color: var(--error-light);
}
.text-primary {
  color: var(--accent-primary-light);
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-sm {
  gap: var(--spacing-sm);
}
.gap-md {
  gap: var(--spacing-md);
}
.gap-lg {
  gap: var(--spacing-lg);
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.mt-sm {
  margin-top: var(--spacing-sm);
}
.mt-md {
  margin-top: var(--spacing-md);
}
.mt-lg {
  margin-top: var(--spacing-lg);
}
.mb-sm {
  margin-bottom: var(--spacing-sm);
}
.mb-md {
  margin-bottom: var(--spacing-md);
}
.mb-lg {
  margin-bottom: var(--spacing-lg);
}
.hidden {
  display: none;
}
.invisible {
  visibility: hidden;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}
.animate-slide-up {
  animation: slideUp 0.4s ease-out;
}
.animate-slide-in-left {
  animation: slideInLeft 0.3s ease-out;
}
.animate-pulse {
  animation: pulse 2s infinite;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.stagger-1 {
  animation-delay: 50ms;
}
.stagger-2 {
  animation-delay: 100ms;
}
.stagger-3 {
  animation-delay: 150ms;
}
.stagger-4 {
  animation-delay: 200ms;
}
.stagger-5 {
  animation-delay: 250ms;
}
.stagger-6 {
  animation-delay: 300ms;
}
.stagger-7 {
  animation-delay: 350ms;
}
.stagger-8 {
  animation-delay: 400ms;
}
.stagger-9 {
  animation-delay: 450ms;
}
.stagger-10 {
  animation-delay: 500ms;
}
.stagger-11 {
  animation-delay: 550ms;
}
.stagger-12 {
  animation-delay: 600ms;
}
.stagger-13 {
  animation-delay: 650ms;
}
.stagger-14 {
  animation-delay: 700ms;
}
.stagger-15 {
  animation-delay: 750ms;
}
.stagger-16 {
  animation-delay: 800ms;
}
.stagger-17 {
  animation-delay: 850ms;
}
.stagger-18 {
  animation-delay: 900ms;
}
.stagger-19 {
  animation-delay: 950ms;
}
.stagger-20 {
  animation-delay: 1000ms;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(40, 33, 18, 0.38);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
  box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xl);
  border-bottom: 1px solid var(--border-color);
}
.modal-body {
  padding: var(--spacing-xl);
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  border-top: 1px solid var(--border-color);
}
.toast-container {
  position: fixed;
  top: var(--spacing-xl);
  right: var(--spacing-xl);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  min-width: 300px;
  box-shadow: var(--shadow-lg);
  animation: slideInLeft 0.3s ease-out;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.toast.toast-success {
  border-left: 3px solid var(--success);
}
.toast.toast-error {
  border-left: 3px solid var(--error);
}
.toast.toast-warning {
  border-left: 3px solid var(--warning);
}
.toast.toast-info {
  border-left: 3px solid var(--info);
}
.loader {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
@media (max-width: 1024px) {
  :root {
    --sidebar-width: 240px;
  }
}
@media (max-width: 768px) {
  :root {
    --sidebar-width: 100%;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .card {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
  }
  .table-container {
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .table-container table {
    min-width: 620px;
  }
  th,
  td {
    padding: 0.65rem 0.75rem;
  }
  .modal-backdrop {
    align-items: flex-end;
    padding-top: env(safe-area-inset-top);
  }
  .modal {
    max-width: none;
    max-height: 92dvh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: var(--spacing-md);
  }
  .modal-footer {
    padding-bottom: calc(var(--spacing-md) + env(safe-area-inset-bottom));
    flex-wrap: wrap;
  }
  .toast-container {
    inset-inline: 0.75rem;
    top: calc(0.75rem + env(safe-area-inset-top));
  }
  .toast {
    min-width: 0;
    width: 100%;
  }
}
@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;
  }
}
app-mobile-staff-layout {
  display: block;
  min-height: 100dvh;
  background: #f7f3eb;
}
app-mobile-staff-layout h1 {
  font-size: 1.75rem !important;
}
app-mobile-staff-layout h2 {
  font-size: 1.1rem !important;
}
app-mobile-staff-layout h3 {
  font-size: 1rem !important;
}
app-mobile-staff-layout p {
  margin-bottom: 0 !important;
}
app-mobile-staff-layout a:hover {
  color: inherit;
}
app-mobile-staff-layout .card,
app-mobile-staff-layout .table-container,
app-mobile-staff-layout .panel {
  max-width: 100%;
}
app-layout {
  --bg-primary: #f7f3eb;
  --bg-secondary: #fffdf9;
  --bg-tertiary: #f4eee4;
  --bg-card: #fffdf9;
  --bg-hover: #f1e9dc;
  --bg-active: #f3e8d2;
  --accent-primary: #bd9434;
  --accent-primary-light: #8c6e1f;
  --accent-primary-dark: #a07d22;
  --accent-secondary: #bd9434;
  --accent-gradient:
    linear-gradient(
      135deg,
      #d3ac4d 0%,
      #bd9434 55%,
      #a87f29 100%);
  --accent-gradient-hover:
    linear-gradient(
      135deg,
      #ddba63 0%,
      #c9a043 55%,
      #b58a31 100%);
  --border-color: #e4d9c8;
  --border-light: #d5c9b5;
  --border-focus: #bd9434;
  --text-primary: #221910;
  --text-secondary: #5f5346;
  --text-muted: #8a7b68;
  --shadow-sm: 0 1px 2px rgba(58, 48, 26, 0.04);
  --shadow-md: none;
  --shadow-lg: none;
  --radius-sm: 6px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --aa-serif:
    "Source Sans 3",
    "Segoe UI",
    system-ui,
    sans-serif;
  --aa-sans:
    "Source Sans 3",
    "Segoe UI",
    system-ui,
    sans-serif;
}
app-layout .btn,
app-layout button.btn {
  border-radius: 6px;
  transition:
    background-color 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}
app-layout .btn-primary {
  background: var(--accent-gradient);
  box-shadow: none;
  color: #fff;
}
app-layout .btn-primary:hover:not(:disabled) {
  background: var(--accent-gradient-hover);
  box-shadow: none;
}
app-layout .btn-outline {
  color: var(--accent-primary-light);
  border-color: #d4b56a;
}
app-layout .btn-outline:hover:not(:disabled) {
  background: rgba(189, 148, 52, 0.1);
  color: var(--accent-primary-light);
}
app-layout .card {
  border-radius: 8px;
  box-shadow: none;
  padding: 1rem;
  border-color: var(--border-color);
}
app-layout .card-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
}
app-layout .card-title {
  font-size: 1rem;
  font-weight: 700;
}
app-layout .table-container {
  border-radius: 8px;
  background: #fffdf9;
}
app-layout table {
  font-size: 0.86rem;
}
app-layout th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f4eee4;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.7rem;
}
app-layout td {
  padding: 0.55rem 0.7rem;
}
app-layout input,
app-layout select,
app-layout textarea {
  border-radius: 6px;
  min-height: 36px;
  background: #fffdf9;
}
app-layout .badge-success {
  background: #e8f8ee;
  color: #1f7a3f;
}
app-layout .badge-warning {
  background: #fff0ca;
  color: #8a6420;
}
app-layout .badge-danger,
app-layout .badge-error {
  background: #fdeceb;
  color: #b42318;
}
app-layout .badge-info {
  background: #f3e8d2;
  color: #8c6e1f;
}
app-layout .modal {
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(34, 25, 16, 0.14);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
