/* Extracted from dashboard.html. Do not edit manually. */

body { box-sizing: border-box; }
    * { font-family: 'DM Sans', sans-serif; }
    
    .glass-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .glass-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.12);
    }
    
    .nav-glass {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #FF3008 0%, #FF5533 100%);
      box-shadow: 0 8px 20px -6px rgba(255, 48, 8, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px -4px rgba(255, 48, 8, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    .gradient-blob {
      filter: blur(100px);
      opacity: 0.5;
      animation: blob-float 10s ease-in-out infinite;
    }

    .gradient-blob-delay-4 {
      animation-delay: -4s;
    }
    @keyframes blob-float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.1); }
      66% { transform: translate(-20px, 20px) scale(0.9); }
    }

    .stat-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s;
    }
    
    .stat-card:hover::before {
      left: 100%;
    }
    
    .action-button {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.2s ease;
    }
    
    .action-button:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateX(4px);
    }
    
    .mobile-menu-btn {
      display: none;
    }
    
    @media (max-width: 640px) {
      .mobile-menu-btn {
        display: block;
      }
      
      .desktop-user-info {
        display: none;
      }
    }
    
    @media (min-width: 1024px) {
      .dashboard-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
      }
    }
    
    @media (max-width: 1023px) {
      .dashboard-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
    }

    [v-cloak] { display: none; }

    .glass-card, .coupon-card, .nav-glass {
      transform: translateZ(0);
    }

    .order-history-scroll {
      max-height: 28rem;
      overflow-y: auto;
      padding-right: 0.25rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
    }

    .order-history-scroll::-webkit-scrollbar {
      width: 8px;
    }

    .order-history-scroll::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.24);
      border-radius: 999px;
    }

    .cart-preview-shell {
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background:
        radial-gradient(circle at 8% 0%, rgba(255, 92, 53, 0.22), transparent 42%),
        linear-gradient(145deg, rgba(255, 72, 31, 0.12), rgba(11, 12, 14, 0.9) 48%, rgba(8, 8, 10, 0.98));
      padding: 0.95rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 40px -28px rgba(0, 0, 0, 0.72);
    }

    .cart-shell-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
      padding-bottom: 0.78rem;
      margin-bottom: 0.78rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .cart-shell-kicker {
      font-size: 0.66rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(226, 232, 240, 0.84);
      font-weight: 700;
    }

    .cart-shell-title {
      margin-top: 0.26rem;
      font-size: 1.26rem;
      line-height: 1.2;
      font-weight: 800;
      color: rgb(255 245 240);
    }

    .cart-item-count-chip {
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
      padding: 0.35rem 0.62rem;
      color: rgba(255, 235, 228, 0.95);
      font-size: 0.72rem;
      line-height: 1;
      font-weight: 700;
      white-space: nowrap;
    }

    .cart-desktop-layout {
      display: none;
    }

    .cart-mobile-layout {
      display: grid;
      gap: 0.75rem;
    }

    .cart-desktop-panel,
    .cart-mobile-card {
      border-radius: 0.9rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: linear-gradient(160deg, rgba(0, 0, 0, 0.26), rgba(16, 16, 16, 0.62));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .cart-desktop-panel {
      padding: 0.9rem;
    }

    .cart-mobile-card {
      padding: 0.72rem;
    }

    .cart-items-scroll {
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 85, 51, 0.85) rgba(255, 255, 255, 0.07);
    }

    .cart-items-scroll::-webkit-scrollbar {
      width: 8px;
    }

    .cart-items-scroll::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.07);
      border-radius: 999px;
    }

    .cart-items-scroll::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, rgba(255, 85, 51, 0.95), rgba(255, 48, 8, 0.9));
      border-radius: 999px;
      border: 2px solid rgba(0, 0, 0, 0.3);
    }

    .touch-scroll {
      -webkit-overflow-scrolling: touch;
    }

    .cart-meta-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      font-size: 0.82rem;
      color: rgba(226, 232, 240, 0.92);
      padding: 0.45rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    }

    .cart-meta-line:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .cart-meta-label {
      color: rgba(203, 213, 225, 0.92);
    }

    .cart-meta-value {
      font-weight: 700;
      color: rgb(255 241 236);
      text-align: right;
    }

    .cart-meta-value.is-promo {
      color: rgb(110 231 183);
    }

    .cart-total-box {
      margin-top: 0.75rem;
      border-radius: 0.82rem;
      border: 1px solid rgba(255, 110, 84, 0.5);
      background: linear-gradient(145deg, rgba(255, 75, 37, 0.18), rgba(255, 114, 82, 0.08) 54%, rgba(8, 8, 9, 0.8));
      padding: 0.7rem;
    }

    .cart-total-kicker {
      font-size: 0.64rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 225, 214, 0.86);
      font-weight: 700;
    }

    .cart-total-value {
      margin-top: 0.32rem;
      font-size: 1.5rem;
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: rgb(255 245 240);
    }

    .cart-subtotal-hint {
      margin-top: 0.4rem;
      font-size: 0.68rem;
      color: rgba(255, 216, 204, 0.82);
      font-weight: 600;
      line-height: 1.3;
    }

    .cart-warning {
      margin-top: 0.45rem;
      font-size: 0.72rem;
      color: rgb(254 240 138);
    }

    .cart-delivery-line {
      margin-top: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.48rem;
      padding: 0.56rem 0.64rem;
      border-radius: 0.72rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.27);
      color: rgba(226, 232, 240, 0.94);
      font-size: 0.8rem;
      line-height: 1.35;
    }

    .cart-items-table {
      display: grid;
      gap: 0.46rem;
      margin-top: 0.74rem;
      max-height: 16rem;
      overflow-y: auto;
      padding-right: 0.2rem;
    }

    .cart-item-row {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.72rem;
      background: rgba(0, 0, 0, 0.24);
      padding: 0.55rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
    }

    .cart-item-media {
      display: flex;
      align-items: center;
      gap: 0.62rem;
      min-width: 0;
      flex: 1;
    }

    .cart-item-thumb {
      width: 2.9rem;
      height: 2.9rem;
      border-radius: 0.58rem;
      object-fit: cover;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.13);
      background: rgba(255, 255, 255, 0.06);
    }

    .cart-item-thumb.placeholder {
      background: linear-gradient(135deg, rgba(255, 48, 8, 0.22), rgba(249, 115, 22, 0.22));
      border-style: dashed;
    }

    .cart-item-name {
      font-size: 0.9rem;
      color: rgb(243 244 246);
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cart-item-qty {
      margin-top: 0.32rem;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(0, 0, 0, 0.35);
      color: rgba(226, 232, 240, 0.92);
      font-size: 0.7rem;
      line-height: 1;
      font-weight: 600;
      padding: 0.2rem 0.52rem;
    }

    .cart-item-price {
      flex-shrink: 0;
      color: rgb(255 235 228);
      font-weight: 700;
      font-size: 0.88rem;
      white-space: nowrap;
      text-align: right;
    }

    .cart-confirm-btn {
      margin-top: 0.78rem;
      border-radius: 0.82rem;
      font-size: 0.94rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      padding-top: 0.78rem;
      padding-bottom: 0.78rem;
    }

    @media (min-width: 1024px) {
      .cart-preview-shell {
        padding: 1.12rem;
      }

      .cart-mobile-layout {
        display: none;
      }

      .cart-desktop-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(15rem, 1fr);
        gap: 0.86rem;
      }

      .cart-shell-title {
        font-size: 1.38rem;
      }

      .cart-total-value {
        font-size: 1.74rem;
      }

      .cart-items-table {
        margin-top: 0;
        max-height: 21rem;
      }
    }

    .order-status-chip {
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.72rem;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      padding: 0.35rem 0.6rem;
      white-space: nowrap;
    }

    .order-status-chip.status-pending {
      background: rgba(251, 191, 36, 0.16);
      border-color: rgba(251, 191, 36, 0.42);
      color: rgb(253 230 138);
    }

    .order-status-chip.status-completed {
      background: rgba(34, 197, 94, 0.14);
      border-color: rgba(34, 197, 94, 0.4);
      color: rgb(187 247 208);
    }

    .order-status-chip.status-cancelled,
    .order-status-chip.status-denied {
      background: rgba(248, 113, 113, 0.14);
      border-color: rgba(248, 113, 113, 0.4);
      color: rgb(254 202 202);
    }

    .order-preview {
      display: -webkit-box;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      word-break: break-word;
    }

    .closed-notice-card {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid rgba(248, 113, 113, 0.45);
      background:
        radial-gradient(circle at 85% 10%, rgba(251, 113, 133, 0.2), transparent 40%),
        linear-gradient(140deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.16));
      box-shadow: 0 18px 40px -24px rgba(255, 72, 48, 0.8);
      padding: 1rem;
      isolation: isolate;
    }

    .closed-notice-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 35%);
      pointer-events: none;
      z-index: -1;
    }

    .closed-notice-layout {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .closed-notice-icon {
      width: 2.75rem;
      height: 2.75rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.85rem;
      border: 1px solid rgba(254, 202, 202, 0.3);
      background: rgba(239, 68, 68, 0.25);
      color: rgb(254, 242, 242);
      flex-shrink: 0;
    }

    .closed-notice-title {
      font-size: 1.06rem;
      line-height: 1.2;
      color: rgb(255, 241, 242);
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .closed-notice-copy {
      margin-top: 0.3rem;
      font-size: 0.83rem;
      line-height: 1.45;
      color: rgba(255, 228, 230, 0.95);
    }

    .closed-notice-chip {
      margin-top: 0.7rem;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      border-radius: 0.75rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(0, 0, 0, 0.24);
      padding: 0.45rem 0.65rem;
      font-size: 0.72rem;
      line-height: 1.35;
      color: rgba(255, 241, 242, 0.96);
      max-width: 100%;
    }

    .closed-notice-chip i {
      font-size: 0.72rem;
      color: rgba(255, 228, 230, 0.95);
      flex-shrink: 0;
    }

    .admin-avatar-button {
      width: 5rem;
      height: 5rem;
      margin-bottom: 1rem;
      padding: 0.15rem;
      border: 0;
      border-radius: 9999px;
      background: transparent;
      position: relative;
      cursor: pointer;
      isolation: isolate;
      transition: transform 0.2s ease;
    }

    .admin-avatar-button:hover {
      transform: scale(1.03);
    }

    .admin-avatar-button::before {
      content: '';
      position: absolute;
      inset: -0.28rem;
      border-radius: inherit;
      background: conic-gradient(from 125deg, #ff3008 0%, #ff5533 36%, #ff7a3d 68%, #ff3008 100%);
      box-shadow: 0 0 12px rgba(255, 48, 8, 0.8), 0 0 24px rgba(255, 85, 51, 0.55);
      animation: admin-ring-spin 3.5s linear infinite;
      z-index: -2;
    }

    .admin-avatar-button::after {
      content: '';
      position: absolute;
      inset: -0.6rem;
      border-radius: inherit;
      background: radial-gradient(circle, rgba(255, 85, 51, 0.5) 0%, rgba(255, 48, 8, 0.18) 52%, rgba(255, 48, 8, 0) 75%);
      filter: blur(8px);
      opacity: 0.9;
      animation: admin-ring-pulse 2s ease-in-out infinite;
      z-index: -3;
    }

    .admin-avatar-image {
      width: 100%;
      height: 100%;
      border-radius: inherit;
      border: 2px solid rgba(255, 255, 255, 0.35);
      object-fit: cover;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    }

    .admin-avatar-button.is-animating {
      pointer-events: none;
      animation: admin-avatar-click 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    }

    .admin-avatar-button.is-animating::before {
      animation: admin-ring-click-orbit 0.95s ease-in-out forwards;
    }

    .admin-avatar-button.is-animating::after {
      animation: admin-ring-click-glow 0.95s ease-in-out forwards;
    }

    @keyframes admin-ring-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes admin-ring-pulse {
      0%, 100% { opacity: 0.65; transform: scale(0.98); }
      50% { opacity: 1; transform: scale(1.06); }
    }

    @keyframes admin-avatar-click {
      0% { transform: scale(1); filter: brightness(1); }
      35% { transform: scale(1.06); filter: brightness(1.16); }
      70% { transform: scale(1.02); filter: brightness(1.08); }
      100% { transform: scale(1); filter: brightness(1); }
    }

    @keyframes admin-ring-click-orbit {
      0% { transform: rotate(0deg) translateX(0); opacity: 1; }
      20% { transform: rotate(140deg) translateX(0.16rem); opacity: 1; }
      50% { transform: rotate(360deg) translateX(-0.14rem); opacity: 1; }
      80% { transform: rotate(600deg) translateX(0.12rem); opacity: 1; }
      100% { transform: rotate(760deg) translateX(0); opacity: 1; }
    }

    @keyframes admin-ring-click-glow {
      0% { opacity: 0.9; transform: scale(1); }
      40% { opacity: 1; transform: scale(1.1); }
      75% { opacity: 0.95; transform: scale(1.03); }
      100% { opacity: 0.9; transform: scale(1); }
    }

    @media (min-width: 640px) {
      .admin-avatar-button {
        width: 6rem;
        height: 6rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .admin-avatar-button::before,
      .admin-avatar-button::after,
      .admin-avatar-button.is-animating,
      .admin-avatar-button.is-animating::before,
      .admin-avatar-button.is-animating::after {
        animation: none;
      }
    }

    @media (max-width: 640px) {
      .order-history-scroll {
        max-height: none;
        padding-right: 0;
      }

      .closed-notice-card {
        padding: 0.9rem;
      }

      .closed-notice-title {
        font-size: 0.98rem;
      }

      .closed-notice-copy {
        font-size: 0.79rem;
      }

      .closed-notice-chip {
        font-size: 0.69rem;
      }
    }

    @media (min-width: 640px) {
      .closed-notice-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.95rem;
      }

      .closed-notice-card {
        padding: 1.1rem 1.2rem;
      }
    }