html, body { margin: 0; padding: 0; background: #FFFFFF; }

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

  :root {
    --color-bg:             #FFFFFF;
    --color-white:          #FFFFFF;
    --color-border:         #E1E2E4;
    --color-text-primary:   #0B101E;
    --color-text-secondary: #4E5976;
    --color-text-tertiary:  #4E5976;
    --color-muted:          #6C7590;
    --color-blue:           #0050FF;
    --color-green:          #03875F;
    --color-orange:         #FF691A;
    --color-donut-1:        #2D62FE;
    --color-donut-2:        #FF6912;
    --color-donut-3:        #03874E;
    --color-donut-4:        #D9D9D9;
    --color-hover-bg:       #F5F6F7;
    --shadow: 0px 3px 13.5px 1px rgba(91, 98, 117, 0.21);
    --font: 'Inter', sans-serif;
  }

  /* ────────────────────────────────────────
     LAYOUT
  ──────────────────────────────────────── */
  .layout {
    display: flex;
    min-height: 100vh;
  }

  /* ────────────────────────────────────────
     SIDENAV (From Source 2)
  ──────────────────────────────────────── */
  .sidenav {
    width: 240px;
    background: #F9F9FA;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    border-right: 1px solid var(--color-border);
  }
  .logo-area {
    width: 240px;
    height: 83px;
    background: #F9F9FA;
    flex-shrink: 0;
    position: relative;
    border-bottom: 1px solid #E1E2E4;
  }
  .logo-lockup {
    position: absolute;
    left: 24px;
    top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo-icon { width: 20px; height: 20px; flex-shrink: 0; }
  .logo-wordmark { width: 102px; height: 20px; flex-shrink: 0; }
  .content-area {
    width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    overflow-y: auto;
  }
  .nav-group {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-item {
    width: 208px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
    color: #6C768F; /* default inactive color (light) */
  }
  .nav-item:hover { 
    background: #EBECED; 
    color: #6C768F; /* hovered: icon light, text light */
  }
  .nav-item.active {
    background: transparent;
    color: #0B101E; /* selected: icon dark, text dark */
  }
  .nav-item.active:hover {
    background: #EBECED;
    color: #0B101E; /* keep dark on hover if selected */
  }
  .nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-label { font-size: 14px; line-height: 1; font-weight: 400; color: inherit; }
  .nav-item.active .nav-label { font-weight: 500; }
  .budget-panel {
    width: 240px;
    background: #ffffff;
    padding: 16px 24px 36px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
    border-top: 1px solid #E1E2E4;
  }
  .budget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
  }
  .budget-title { font-size: 14px; font-weight: 500; color: #0B101E; }
  .arrow-icon { width: 20px; height: 20px; flex-shrink: 0; }
  .budget-body { display: flex; flex-direction: column; gap: 32px; }
  .amount-row { display: flex; align-items: flex-end; gap: 12px; }
  .amount-main { display: flex; align-items: center; gap: 3px; }
  .rupee-large { font-size: 22px; font-weight: 500; color: #0B101E; line-height: 1.2; }
  .amount-value { font-size: 24px; font-weight: 500; color: #0B101E; line-height: 1; }
  .amount-total { display: flex; align-items: center; gap: 4px; padding-bottom: 2px; }
  .slash { font-size: 18px; font-weight: 500; color: #6C768F; line-height: 1; }
  .total-wrap { display: flex; align-items: center; gap: 2px; }
  .rupee-small { font-size: 12px; font-weight: 500; color: #6C768F; line-height: 1.2; }
  .total-value { font-size: 14px; font-weight: 500; color: #6C768F; line-height: 1; }
  .progress-section { display: flex; flex-direction: column; gap: 8px; }
  .progress-track {
    width: 100%;
    height: 9px;
    background: #E1E2E4;
    position: relative;
    border-radius: 5px;
  }
  .progress-fill {
    width: 22%;
    height: 9px;
    background: #0050FF;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.3s ease;
  }
  .progress-label { font-size: 12px; font-weight: 400; color: #0050FF; }

  /* ────────────────────────────────────────
     MAIN CONTENT
  ──────────────────────────────────────── */
  .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  /* Top bar */
  .topbar {
    height: 91px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px 40px;
    flex-shrink: 0;
  }
  .topbar-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.28px;
    color: var(--color-text-primary);
  }
  .topbar-actions { display: flex; align-items: center; gap: 12px; }

  /* Custom date picker pair */
  .custom-picker {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Compact trigger for calendar header pickers */
  .cal-picker-trigger {
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.16px;
    border-color: transparent;
    background: transparent;
  }
  .cal-picker-trigger:hover { border-color: var(--color-border); background: var(--color-hover-bg); }

  /* Reset (×) button beside custom pickers */
  .custom-picker-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
  }
  .custom-picker-reset:hover { background: var(--color-hover-bg); border-color: #c5c7cc; }

  /* ────────────────────────────────────────
     DROPDOWN (From Source 3)
  ──────────────────────────────────────── */
  .dropdown-wrapper {
    position: relative;
    display: inline-block;
  }
  .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: -0.13px;
    user-select: none;
    transition: border-color 0.15s;
  }
  .dropdown-trigger:hover, .dropdown-trigger.open { border-color: #c5c7cc; }
  .trigger-chevron { display: block; transition: transform 0.2s ease; }
  .dropdown-trigger.open .trigger-chevron { transform: rotate(180deg); }
  .dropdown-panel {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    width: 135px;
    background: var(--color-white);
    border-radius: 4px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    transform-origin: top right;
    z-index: 100;
  }
  .dropdown-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
  }
  .dropdown-item {
    min-width: 0;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px;
    border-radius: 2px;
    cursor: pointer;
    gap: 8px;
    transition: background 0.1s ease;
    position: relative;
    white-space: nowrap;
  }
  .dropdown-item:hover { background: var(--color-hover-bg); }
  .dropdown-item:active { background: #ecedf0; }
  .dropdown-item.has-divider::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0.6px;
    background: var(--color-border);
  }
  .item-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-secondary);
    letter-spacing: -0.13px;
    line-height: 1;
    white-space: nowrap;
  }
  .dropdown-item.selected .item-label {
    font-weight: 500;
    color: var(--color-text-primary);
  }
  .item-check {
    flex-shrink: 0;
    width: 12px;
    height: 11px;
    opacity: 0;
    transition: opacity 0.1s ease;
  }
  .dropdown-item.selected .item-check { opacity: 1; }

  /* Sync CTA */
  .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn-save {
    background: #F2F2F2;
    color: #0B101E;
    border: 1px solid var(--color-border);
    transition: background 0.2s, color 0.2s;
  }
  .btn-save:hover {
    background: #1F222D;
    color: #FFFFFF;
  }

  /* Content area */
  .content {
    flex: 1;
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
  }

  /* ────────────────────────────────────────
     STAT CARDS
  ──────────────────────────────────────── */
  .stats-row { display: flex; gap: 12px; }
  .stat-card {
    flex: 1;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .stat-label { font-size: 16px; font-weight: 600; color: var(--color-text-primary); letter-spacing: -0.16px; }
  .stat-sublabel { font-size: 12px; color: var(--color-text-secondary); margin-top: 6px; letter-spacing: -0.12px; }
  .stat-value-row { display: flex; align-items: center; gap: 8px; }
  .stat-rupee { font-size: 32px; font-weight: 500; color: var(--color-text-primary); letter-spacing: -0.32px; line-height: 1; }
  .stat-currency { font-size: 30px; font-weight: 500; color: var(--color-text-primary); line-height: 1; align-self: flex-end; margin-bottom: 1px; }
  .stat-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
  
  .stat-delta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500; /* 12px medium */
  }
  .delta-down { color: var(--color-green); }
  .delta-up   { color: #E53935; }
  .stat-vs { font-size: 12px; color: var(--color-muted); letter-spacing: -0.12px; }

  /* ────────────────────────────────────────
     MIDDLE ROW  (Calendar + Donut)
  ──────────────────────────────────────── */
  .middle-row { display: flex; gap: 12px; align-items: stretch; }

  /* Calendar card */
  .calendar-card {
    width: 672px;
    flex-shrink: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
  }
  .calendar-nav { display: flex; align-items: center; gap: 16px; }
  .cal-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: var(--color-text-secondary);
  }
  .cal-month { font-size: 16px; font-weight: 600; color: var(--color-text-primary); letter-spacing: -0.16px; min-width: 100px; text-align: center; }
  .cal-view-btns { display: flex; gap: 4px; }
  .cal-view-btn {
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background: var(--color-white);
    padding: 6px 8px;
    font-family: var(--font);
    font-size: 12px;
    color: var(--color-text-secondary);
    cursor: pointer;
  }
  .cal-view-btn.active { background: var(--color-blue); color: #fff; border-color: var(--color-blue); }
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    flex: 1;
  }
  .cal-day {
    border: 0.5px solid var(--color-border);
    padding: 8px;
    min-height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative; /* Context for absolute amount */
  }
  .cal-day.ordered { background: #F2F2F2; }
  .cal-day-num {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary); /* Always secondary */
  }
  .cal-day-amount { 
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 16px; 
    color: var(--color-text-primary); 
    font-weight: 500; 
  }
  .cal-day.today .cal-day-num {
    color: var(--color-blue);
    font-weight: 600;
  }

  /* Donut card */
  .donut-card {
    flex: 1;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .donut-title { font-size: 16px; font-weight: 600; color: var(--color-text-primary); letter-spacing: -0.16px; }
  .donut-sublabel { font-size: 12px; color: var(--color-text-secondary); margin-top: 6px; }
  .donut-chart-wrap { display: flex; justify-content: center; align-items: center; }
  
  .donut-svg { width: 200px; height: 200px; transform: rotate(-90deg); }
  .donut-legend { display: flex; flex-direction: column; gap: 8px; }
  .legend-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-primary); }
  .legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .legend-name { flex: 1; color: var(--color-text-secondary); font-size: 12px; }
  .legend-pct  { font-size: 12px; font-weight: 500; color: var(--color-text-primary); }

  /* ────────────────────────────────────────
     RECENT ORDERS TABLE
  ──────────────────────────────────────── */
  .orders-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    overflow: visible;
  }
  /* Budget overview card: larger amount numbers, independent of sidebar */
  .budget-overview-panel .amount-value {
    font-size: 32px;
  }
  .budget-overview-panel .rupee-large {
    font-size: 28px;
  }
  .budget-overview-panel .budget-insight {
    font-size: 14px;
    white-space: nowrap;
  }
  .orders-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
  }
  .orders-title { font-size: 16px; font-weight: 600; color: var(--color-text-primary); letter-spacing: -0.16px; }
  .view-all {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: -0.14px;
    background: none;
    border: none;
    font-family: var(--font);
  }
  .orders-table { width: 100%; border-collapse: collapse; }
  .orders-table th {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: left;
    padding: 12px 12px;
    letter-spacing: 0;
  }
  .orders-table td {
    font-size: 14px;
    padding: 12px 12px;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
  }
  .orders-table tr:last-child td { border-bottom: none; }
  .orders-table tbody tr {
    transition: background-color 0.15s ease;
    cursor: pointer;
  }
  .orders-table tbody tr:hover {
    background-color: #F9FAFB;
  }
  .restaurant-cell { display: flex; align-items: center; gap: 12px; }
  .rest-avatar {
    width: 36px; height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
  }
  .rest-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .rest-name { font-size: 14px; font-weight: 500; color: var(--color-text-primary); }
  .amount-cell { display: flex; align-items: center; gap: 4px; font-weight: 500; }
  .amount-cell .symbol { font-size: 13px; }
  .date-cell { color: var(--color-text-tertiary); font-size: 14px; font-weight: 400; }

  /* Donut Tooltip */
  .donut-tooltip {
    position: absolute;
    background: var(--color-white);
    color: var(--color-text-primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    z-index: 1000;
    transform: translate(-50%, -100%);
    margin-top: -12px;
  }
  
  /* ────────────────────────────────────────
     BUDGET SETTINGS REDESIGN
  ──────────────────────────────────────── */
  .budget-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .budget-overview-panel {
    display: flex;
    flex-direction: column;
  }
  .budget-settings-panel {
    display: flex;
    flex-direction: column;
  }
  .chart-toggle-pills {
    display: flex;
    background: #E4E5E8;
    border-radius: 20px;
    padding: 4px;
    gap: 4px;
  }
  .pill-btn {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #57534E;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .pill-btn.active {
    background: #FFFFFF;
    color: #0050FF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .pill-btn:hover:not(.active) {
    background: #D4D5D8;
    color: #1C1917;
  }
  .budget-insight {
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-muted);
    letter-spacing: -0.12px;
    line-height: 1.4;
  }

  /* Sync Modal */
  .sync-modal {
    padding: 0;
    max-width: 480px;
    background: #fff;
    overflow: hidden;
  }
  
  /* --- Figma Exact Sync Modal Styles --- */
  .sync-content-panel {
    width: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    margin: 0 auto;
    padding: 32px 0;
  }
  .sync-top-section {
    width: 375px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .sync-logo-row {
    width: 375px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sync-swiggy-logo {
    flex-shrink: 0;
    width: 25px;
    height: 37px;
    display: block;
  }
  .sync-title-status {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .sync-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.24px;
    line-height: 1.2;
    margin: 0;
  }
  .sync-status-row {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .sync-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #c0c5d0;
    animation: blink-dot 1.6s ease-in-out infinite;
  }
  @keyframes blink-dot {
    0%, 49.9% { background: #c0c5d0; }
    50%, 100%  { background: #fe5200; }
  }
  .sync-status-text {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-secondary);
    letter-spacing: -0.12px;
  }
  .sync-steps-list {
    width: 375px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .sync-step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .sync-step-num {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f0f1f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-top: 2px;
  }
  .sync-step-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-secondary);
    letter-spacing: -0.16px;
    line-height: 1.4;
    margin: 0;
  }
  .sync-step-text kbd {
    font-family: 'Inter', monospace;
    font-size: 12px;
    background: #f0f1f4;
    border-radius: 3px;
    padding: 1px 5px;
    color: var(--color-text-primary);
    font-weight: 500;
  }
  .sync-btn-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 153px;
    height: 36px;
    padding: 0 12px;
    background: #fe5200;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .sync-btn-open:hover { opacity: 0.88; }
  .sync-btn-open span {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.16px;
    white-space: nowrap;
  }
  .sync-btn-open svg { flex-shrink: 0; display: block; }

  /* Past Orders Banner */
  .past-orders-banner {
    width: 100%;
    height: 74px;
    background: #FDEDE5;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 12px 0;
    flex-shrink: 0;
  }
  .past-orders-banner.hidden {
    display: none !important;
  }
  .banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 40px;
  }
  .banner-text-light {
    color: rgba(8, 12, 23, 0.64);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
  }
  .banner-text-bold {
    color: #080C17;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
  }
  .banner-img {
    width: 381px;
    height: 74px;
    box-shadow: 0px 4px 6px rgba(169, 89, 40, 0.18);
    object-fit: cover;
    transform: translateY(-12px);
  }
  .banner-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  .banner-close:hover {
    opacity: 1;
  }

  /* Order Details Modal */
  .order-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }
  .order-modal-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #F2F2F2;
  }
  .order-modal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .order-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #0B101E;
    margin: 0;
    line-height: 1.2;
  }
  .order-modal-meta {
    font-size: 13px;
    color: #4E5976;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .order-modal-meta strong {
    color: #0B101E;
    font-weight: 600;
    font-size: 14px;
  }
  .order-modal-body {
    padding-top: 16px;
    border-top: 1px dashed #d4d4d4;
  }
  .order-modal-items-title {
    font-size: 13px;
    font-weight: 600;
    color: #4E5976;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .order-modal-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .order-modal-item {
    font-size: 14px;
    color: #0B101E;
    line-height: 1.5;
    padding-bottom: 12px;
    border-bottom: 1px dashed #E5E7EB;
  }
  .order-modal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
