/* ============================================================
   TM-Dash Global Stylesheet
   Primary: #FF9900 | Font: Syne + DM Sans
   ============================================================ */

/*@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --orange: #FF9900;
  --orange-dark: #E08800;
  --orange-light: #FFF3DC;
  --orange-muted: rgba(255,153,0,0.12);
  --black: #0F0F0F;
  --dark: #1A1A1A;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #BBBBBB;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --green: #22C55E;
  --red: #EF4444;
  --blue: #3B82F6;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-orange: 0 8px 32px rgba(255,153,0,0.25);
  --transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--gray-500); font-size: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-secondary { background: var(--gray-100); color: var(--dark); }
.btn-secondary:hover { background: #E8E8E8; color: var(--dark); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--gray-900); color: var(--white); }
.btn-danger { background: var(--red); color: var(--white); }
.btn-success { background: var(--green); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 13px; color: var(--gray-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-muted); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; }
.input-icon { position: relative; }
.input-icon .form-control { padding-left: 44px; }
.input-icon .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-500); font-size: 16px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--gray-100); }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--gray-100); background: var(--gray-100); }

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-green { background: #DCFCE7; color: #15803D; }
.badge-red { background: #FEE2E2; color: #B91C1C; }
.badge-blue { background: #DBEAFE; color: #1D4ED8; }
.badge-gray { background: var(--gray-100); color: var(--gray-700); }
.badge-dark { background: var(--dark); color: var(--white); }
.badge-pending { background: #FEF9C3; color: #92400E; }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flash-success { background: #DCFCE7; color: #15803D; border-left: 4px solid var(--green); }
.flash-error { background: #FEE2E2; color: #B91C1C; border-left: 4px solid var(--red); }
.flash-info { background: #DBEAFE; color: #1D4ED8; border-left: 4px solid var(--blue); }
.flash-warning { background: #FEF9C3; color: #92400E; border-left: 4px solid #EAB308; }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
thead th {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid #E8E8E8;
}
tbody td { padding: 14px 16px; border-bottom: 1px solid #F0F0F0; font-size: 14px; vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FAFAFA; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.22s;
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal-header { padding: 24px 28px 0; display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 1.2rem; }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--gray-500); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.modal-close:hover { background: var(--gray-100); }
.modal-body { padding: 24px 28px; }
.modal-footer { padding: 0 28px 24px; display: flex; gap: 12px; justify-content: flex-end; }

/* ============================================================
   RESTAURANT CARD
   ============================================================ */
.restaurant-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; text-decoration: none; display: block; color: inherit; }
.restaurant-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); color: inherit; }
.restaurant-card .banner { width: 100%; height: 160px; object-fit: cover; display: block; background: var(--gray-100); }
.restaurant-card .info { padding: 16px; }
.restaurant-card .logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.restaurant-card .logo { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; border: 2px solid var(--white); box-shadow: var(--shadow); }
.restaurant-card .r-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.restaurant-card .meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray-500); flex-wrap: wrap; }
.restaurant-card .meta span { display: flex; align-items: center; gap: 4px; }
.restaurant-card .open-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.restaurant-card .open-tag.open { background: #DCFCE7; color: #15803D; }
.restaurant-card .open-tag.closed { background: #FEE2E2; color: #B91C1C; }

/* ============================================================
   FOOD ITEM CARD
   ============================================================ */
.food-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: var(--transition); }
.food-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.food-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.food-card .food-info { padding: 14px; }
.food-card .food-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.food-card .food-desc { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.food-card .food-footer { display: flex; align-items: center; justify-content: space-between; }
.food-card .food-price { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: 1.05rem; }
.food-card .add-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--white); border: none; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.food-card .add-btn:hover { background: var(--orange-dark); transform: scale(1.1); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  box-shadow: -8px 0 48px rgba(0,0,0,0.12);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 1.1rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.cart-item img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-item .item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item .item-price { color: var(--orange); font-weight: 700; font-size: 14px; }
.cart-item .qty-ctrl { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item .qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--gray-300); background: none; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-item .qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.cart-item .qty-num { font-weight: 700; min-width: 20px; text-align: center; }
.cart-footer { padding: 20px 24px; border-top: 2px solid var(--gray-100); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; color: var(--gray-700); }
.cart-total-row.grand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--gray-300); }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; display: none; }
.cart-overlay.open { display: block; }

/* ============================================================
   DASHBOARD SIDEBAR
   ============================================================ */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.dash-sidebar {
  background: var(--dark);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.dash-sidebar .sidebar-logo { padding: 28px 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dash-sidebar .sidebar-logo a { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--orange); text-decoration: none; }
.dash-sidebar nav { padding: 16px 0; flex: 1; }
.dash-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dash-sidebar nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.dash-sidebar nav a.active { color: var(--orange); background: rgba(255,153,0,0.1); border-left-color: var(--orange); }
.dash-sidebar nav a .icon { font-size: 18px; flex-shrink: 0; }
.dash-sidebar nav .nav-group { padding: 12px 24px 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.dash-sidebar .sidebar-bottom { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.dash-sidebar .sidebar-user { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); font-size: 13px; }
.dash-sidebar .sidebar-user strong { color: var(--white); font-size: 14px; display: block; }
.dash-main { background: #F8F8F8; overflow-x: hidden; }
.dash-topbar { background: var(--white); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 0 #E8E8E8; position: sticky; top: 0; z-index: 100; }
.dash-topbar h1 { font-size: 1.2rem; }
.dash-content { padding: 32px; }

/* ============================================================
   STAT CARDS
   ============================================================ */
.stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 16px; }
.stat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-icon.orange { background: var(--orange-light); }
.stat-icon.green { background: #DCFCE7; }
.stat-icon.blue { background: #DBEAFE; }
.stat-icon.red { background: #FEE2E2; }
.stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.stat-change { font-size: 12px; margin-top: 4px; }
.stat-change.up { color: var(--green); }
.stat-change.down { color: var(--red); }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.empty-state .icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: 8px; align-items: center; justify-content: center; padding: 24px 0; }
.pagination a, .pagination span {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--gray-100);
  color: var(--dark);
  transition: var(--transition);
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ============================================================
   RATING STARS
   ============================================================ */
.stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.stars .empty { color: var(--gray-300); }

/* ============================================================
   ORDER STATUS TIMELINE
   ============================================================ */
.order-timeline { list-style: none; position: relative; padding-left: 28px; }
.order-timeline::before { content:''; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background: var(--gray-100); }
.order-timeline li { position: relative; padding: 0 0 24px 20px; }
.order-timeline li::before { content:''; position:absolute; left:-19px; top:4px; width:12px; height:12px; border-radius:50%; background: var(--gray-300); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--gray-300); }
.order-timeline li.done::before { background: var(--green); box-shadow: 0 0 0 2px var(--green); }
.order-timeline li.active::before { background: var(--orange); box-shadow: 0 0 0 2px var(--orange); animation: pulse-dot 1.5s infinite; }
.order-timeline li .tl-title { font-weight: 700; font-size: 14px; }
.order-timeline li .tl-time { font-size: 12px; color: var(--gray-500); }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 2px var(--orange); } 50% { box-shadow: 0 0 0 6px rgba(255,153,0,0.2); } }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  max-width: 380px;
  animation: toast-in 0.3s ease;
  border-left: 4px solid var(--orange);
}
.toast.success { border-left-color: var(--green); }
.toast.error { border-left-color: var(--red); }
@keyframes toast-in { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spinner { width: 24px; height: 24px; border: 3px solid var(--gray-100); border-top-color: var(--orange); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.85); z-index: 9998; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }

/* ============================================================
   ORDER STATUS COLORS
   ============================================================ */
.status-pending   { color: #92400E; background: #FEF9C3; }
.status-confirmed { color: #1D4ED8; background: #DBEAFE; }
.status-preparing { color: #7C3AED; background: #EDE9FE; }
.status-dispatched{ color: #0F766E; background: #CCFBF1; }
.status-delivered { color: #15803D; background: #DCFCE7; }
.status-cancelled { color: #B91C1C; background: #FEE2E2; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-layout.sidebar-open .dash-sidebar { display: flex; position: fixed; inset: 0; width: 260px; z-index: 500; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .cart-sidebar { width: 100vw; max-width: 100vw; }
  .dash-content { padding: 20px; }
  .dash-topbar { padding: 14px 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 28px; }
  .modal { border-radius: var(--radius) var(--radius) 0 0; align-self: flex-end; max-width: 100%; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-orange { color: var(--orange); }
.text-gray { color: var(--gray-500); }
.text-small { font-size: 13px; }
.text-xs { font-size: 11px; }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 800; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-3 { padding: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.hidden { display: none; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-100 { width: 100%; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.bg-orange { background: var(--orange); }
.bg-light { background: var(--gray-100); }
.border { border: 1px solid var(--gray-100); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.avatar { border-radius: 50%; object-fit: cover; }
.divider { border: none; border-top: 1px solid var(--gray-100); margin: 20px 0; }

/* ============================================================
   GLOBAL OVERFLOW FIX
   ============================================================ */
html {
  overflow-x: hidden !important;
}
body {
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
}
.container,
.section,
section,
header,
footer {
  max-width: 100%;
  overflow-x: hidden;
}
img, video, iframe, canvas {
  max-width: 100%;
  height: auto;
}