/* ============================================================
   PalengKey App — Design-System Override
   Loaded after style.css to fix vendor-theme inconsistencies
   and establish reusable component classes.
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS Variable Fixes
      - Correct rgba-primary to match teal brand (#0097a7)
      - Fix primary-hover contrast
   ---------------------------------------------------------- */
:root,
[data-theme-color="color-primary"] {
  --primary:            #0097a7;
  --primary-hover:      #007b8a;
  --primary-dark:       #005f6b;
  --primary-light:      rgba(0, 151, 167, 0.08);
  --primary-light-2:    rgba(0, 151, 167, 0.15);
  --bg-gradient:        linear-gradient(135deg, #0097a7 0%, #00b4c8 100%);

  --rgba-primary-1:     rgba(0, 151, 167, 0.1);
  --rgba-primary-2:     rgba(0, 151, 167, 0.2);
  --rgba-primary-3:     rgba(0, 151, 167, 0.3);
  --rgba-primary-4:     rgba(0, 151, 167, 0.4);
  --rgba-primary-5:     rgba(0, 151, 167, 0.5);
  --rgba-primary-6:     rgba(0, 151, 167, 0.6);
  --rgba-primary-7:     rgba(0, 151, 167, 0.7);
  --rgba-primary-8:     rgba(0, 151, 167, 0.8);
  --rgba-primary-9:     rgba(0, 151, 167, 0.9);

  /* Semantic colours */
  --color-success:      #16a34a;
  --color-warning:      #d97706;
  --color-danger:       #dc2626;
  --color-info:         #0284c7;

  /* Surface */
  --surface-bg:         #f4f7f9;
  --card-shadow:        0 2px 12px rgba(0,0,0,0.07);
  --card-shadow-lg:     0 4px 24px rgba(0,0,0,0.10);
}

/* ----------------------------------------------------------
   2. Base Tweaks
   ---------------------------------------------------------- */
body {
  background-color: var(--surface-bg);
  -webkit-font-smoothing: antialiased;
}

/* Remove duplicate Bootstrap-Icons load (second link in index.html) */
/* (handled by removing the duplicate <link> element)              */

/* ----------------------------------------------------------
   3. Button System — ensure white text on all hover states
   ---------------------------------------------------------- */
.btn-primary {
  --bs-btn-bg:                 var(--primary);
  --bs-btn-border-color:       var(--primary);
  --bs-btn-hover-bg:           var(--primary-hover);
  --bs-btn-hover-border-color: var(--primary-hover);
  --bs-btn-hover-color:        #fff;
  --bs-btn-active-bg:          var(--primary-dark);
  --bs-btn-active-border-color:var(--primary-dark);
  --bs-btn-focus-shadow-rgb:   0,151,167;
}

.btn-outline-primary {
  --bs-btn-color:              var(--primary);
  --bs-btn-border-color:       var(--primary);
  --bs-btn-hover-color:        #fff;
  --bs-btn-hover-bg:           var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-active-color:       #fff;
  --bs-btn-active-bg:          var(--primary-hover);
}

.btn-outline-secondary {
  --bs-btn-hover-color:        #fff;
}

.btn-outline-warning {
  --bs-btn-hover-color:        #fff;
}

.btn-warning {
  color: #fff;
}
.btn-warning:hover {
  color: #fff;
}

/* ----------------------------------------------------------
   4. Toast Notification System
   ---------------------------------------------------------- */
#pk-toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: min(92vw, 380px);
  pointer-events: none;
}

.pk-toast {
  pointer-events: all;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  width: 100%;
  animation: pk-toast-in 0.3s cubic-bezier(.21,1.02,.73,1) both;
  transition: opacity 0.3s, transform 0.3s;
}

.pk-toast.hiding {
  animation: pk-toast-out 0.25s ease forwards;
}

.pk-toast-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 1px;
}

.pk-toast-body {
  flex: 1;
}

.pk-toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  margin-top: 1px;
  transition: color 0.15s;
}
.pk-toast-close:hover { color: #fff; }

.pk-toast--success { background: #059669; }
.pk-toast--danger  { background: #dc2626; }
.pk-toast--warning { background: #d97706; }
.pk-toast--info    { background: #0284c7; }

@keyframes pk-toast-in {
  from { opacity: 0; transform: translateY(-12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    }
}
@keyframes pk-toast-out {
  from { opacity: 1; transform: translateY(0)     scale(1);    }
  to   { opacity: 0; transform: translateY(-8px)  scale(0.96); }
}

/* ----------------------------------------------------------
   5. Page Header Component  (.pk-page-header)
      Replaces the copy-pasted 50-line inline header on
      cart, checkout, orders, tracking, verify-id, etc.
   ---------------------------------------------------------- */
/* Global app header (PalengKey logo bar) stays pinned above page headers */
#layout-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white, #fff);
}

.pk-page-header {
  background: var(--primary);
  box-shadow: 0 2px 10px rgba(0,151,167,0.15);
  position: sticky;
  /* On layout:false pages #layout-header is hidden (0 height), so the
     sticky offset must be 0 too — otherwise this header gets pushed
     down by --headheight, leaving a blank gap above it. */
  top: var(--pk-headheight, var(--headheight, 55px));
  z-index: 100;
}

.pk-page-header .main-bar {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
}

.pk-page-header .header-back-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.pk-page-header .header-back-btn:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.pk-page-header .header-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pk-page-header .header-action {
  flex-shrink: 0;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.pk-page-header .header-action:hover { opacity: 1; color: #fff; }

/* ----------------------------------------------------------
   6. Profile Hero Banner  (.pk-profile-hero)
   ---------------------------------------------------------- */
.pk-profile-hero {
  background: linear-gradient(135deg, #0097a7 0%, #00b4c8 100%);
  padding: 28px 20px 52px;
  position: relative;
  overflow: hidden;
}

.pk-profile-hero::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -70px;
  right: -50px;
}

.pk-profile-hero::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -30px;
  left: -40px;
}

.pk-profile-hero .hero-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   7. Profile Card & Menu List  (.pk-profile-card, .pk-menu-list)
   ---------------------------------------------------------- */
.pk-content-lift {
  margin-top: -36px;
  position: relative;
  z-index: 5;
  padding: 0 16px;
}

.pk-profile-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px 20px;
  border: 1px solid #d6eef0;
  box-shadow: 0 4px 20px rgba(0,151,167,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.pk-profile-card .avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #e0f5f7;
  flex-shrink: 0;
}

.pk-profile-card .user-info {
  flex: 1;
  min-width: 0;
}

.pk-profile-card .user-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pk-profile-card .user-email {
  font-size: 0.775rem;
  color: #7a8fa0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pk-profile-card .edit-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e0f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.pk-profile-card .edit-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

/* Menu card container */
.pk-menu-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8f4f5;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin-bottom: 16px;
}

/* Individual menu row */
.pk-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  text-decoration: none;
  color: #1a1a2e;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f7f8;
}
.pk-menu-item:last-child { border-bottom: none; }
.pk-menu-item:hover { background: var(--primary-light); text-decoration: none; }
.pk-menu-item:hover .menu-label { color: var(--primary); }

.pk-menu-item .menu-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pk-menu-item .menu-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.pk-menu-item .menu-label {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.pk-menu-item .menu-chevron {
  font-size: 0.7rem;
  color: #c0cdd8;
}

.pk-menu-item--danger { color: #cc0000; }
.pk-menu-item--danger:hover { background: #fff5f5; }
.pk-menu-item--danger:hover .menu-label { color: #cc0000; }

/* Icon colour presets — brand teal tints for decorative menu icons */
.icon-teal   { background: #e0f5f7; color: #0097a7; }
.icon-teal-2 { background: #d2eef2; color: #007b8a; }
.icon-teal-3 { background: #c5e8ec; color: #005f6b; }
.icon-teal-4 { background: #eaf0f1; color: #4a7c82; }

/* Semantic status presets — reserved for real success/warning/danger states */
.icon-amber  { background: #fff7e0; color: #b07800; }
.icon-green  { background: #e6f7f0; color: #1a8a5a; }
.icon-red    { background: #ffebeb; color: #cc0000; }

/* ----------------------------------------------------------
   8. Step Indicator  (.pk-steps)
   ---------------------------------------------------------- */
.pk-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  margin-top: 8px;
}

.pk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.pk-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dee2e6;
  color: #888;
  font-size: 0.825rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.pk-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #aaa;
  transition: color 0.2s;
  white-space: nowrap;
}

.pk-step--active .pk-step-circle {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0,151,167,0.2);
}
.pk-step--active .pk-step-label { color: var(--primary); }

.pk-step--done .pk-step-circle {
  background: var(--primary);
  color: #fff;
}
.pk-step--done .pk-step-label { color: var(--primary); }

.pk-step-connector {
  flex: 1;
  height: 2px;
  background: #dee2e6;
  margin: 0 4px;
  margin-bottom: 22px;
  min-width: 24px;
  max-width: 48px;
  transition: background 0.2s;
}
.pk-step-connector--done { background: var(--primary); }

/* ----------------------------------------------------------
   9. Bottom Menubar — Active State
   ---------------------------------------------------------- */
.menubar-area .toolbar-inner.menubar-nav {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 0;
}

.menubar-area .nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px 10px;
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}

.menubar-area .nav-link svg,
.menubar-area .nav-link i {
  transition: fill 0.2s, color 0.2s;
  width: 22px;
  height: 22px;
  fill: #94a3b8;
}

.menubar-area .nav-link .nav-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.menubar-area .nav-link.active,
.menubar-area .nav-link.active svg,
.menubar-area .nav-link.active i {
  color: var(--primary);
  fill: var(--primary);
}

.menubar-area .nav-link.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 0 0 4px 4px;
}

/* Cart badge */
.pk-cart-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 20px);
  background: var(--primary);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  padding: 0 4px;
  line-height: 16px;
  text-align: center;
  border: 2px solid #fff;
}

/* ----------------------------------------------------------
   10. Confirm Modal — Modern Style
   ---------------------------------------------------------- */
.pk-confirm-modal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.pk-confirm-modal .modal-header {
  border-bottom: none;
  padding: 20px 24px 8px;
}

.pk-confirm-modal .modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
}

.pk-confirm-modal .modal-body {
  padding: 4px 24px 16px;
  color: #6b7280;
  font-size: 0.9rem;
}

.pk-confirm-modal .modal-footer {
  border-top: none;
  padding: 0 24px 20px;
  gap: 8px;
}

.pk-confirm-modal .btn-cancel {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  font-weight: 600;
}
.pk-confirm-modal .btn-cancel:hover {
  background: #e2e8f0;
  color: #475569;
}

/* ----------------------------------------------------------
   10b. Privacy / Terms Modal — Language Toggle Row
   ---------------------------------------------------------- */
.pk-modal-lang-toggle {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.pk-modal-lang-toggle .btn {
  flex: 1;
}

/* ----------------------------------------------------------
   11. Chat Widget — Extracted from index.html inline styles
   ---------------------------------------------------------- */
#chatWidgetContainer {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 9999;
}

#chatWindow {
  display: none;
  width: 320px;
  height: 480px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 12px;
}

#chatWindow .chat-header {
  background: var(--primary);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-agent-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-agent-name {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.chat-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  display: inline-block;
  margin-right: 4px;
}

.chat-online-text {
  color: rgba(255,255,255,0.85);
  font-size: 11px;
}

.chat-toggle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  box-shadow: 0 4px 16px rgba(0,151,167,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.chat-toggle-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(0,151,167,0.5);
}

.chat-unread-badge {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  padding: 0 3px;
  line-height: 16px;
  text-align: center;
  border: 2px solid #fff;
}

/* ----------------------------------------------------------
   12. Verification / Pending-Approval Page
   ---------------------------------------------------------- */
.pk-status-card {
  text-align: center;
  padding: 40px 24px;
}

.pk-status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.pk-status-icon--pending  { background: #fffbeb; color: #d97706; }
.pk-status-icon--approved { background: #f0fdf4; color: #16a34a; }
.pk-status-icon--rejected { background: #fef2f2; color: #dc2626; }

/* ----------------------------------------------------------
   13. General Page Improvements
   ---------------------------------------------------------- */

/* Remove focus outline for mouse users, keep it for keyboard */
*:focus:not(:focus-visible) { outline: none; box-shadow: none; }

/* Smooth page transitions */
#app { animation: pk-page-in 0.18s ease both; }
@keyframes pk-page-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* Cards */
.card { box-shadow: var(--card-shadow); }

/* Form inputs */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,151,167,0.15);
}

/* Alert left-border accent */
.alert-info    { border-left: 4px solid var(--color-info); }
.alert-warning { border-left: 4px solid var(--color-warning); }
.alert-danger  { border-left: 4px solid var(--color-danger); }
.alert-success { border-left: 4px solid var(--color-success); }

/* Meta title cleanup */
/* (handled in index.html <title> tag) */

/* ----------------------------------------------------------
   14. Orders Page Tabs  (moved from pages/orders.html)
   ---------------------------------------------------------- */
#ordersTab {
  display: flex;
  width: 100%;
  padding: 0;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px;
  overflow: hidden;
  flex-wrap: nowrap;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.nav-tabs { border-bottom: none !important; }

#ordersTab .nav-item {
  flex: 1;
  display: flex;
  border-left: 1px solid #e0e0e0;
}
#ordersTab .nav-item:first-child { border-left: none; }

#ordersTab .nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  border: none !important;
  border-radius: 0 !important;
  background: transparent;
  padding: 4px;
  color: #94a3b8;
  font-size: 0.65rem;
  font-weight: 600;
  gap: 3px;
  transition: background 0.2s;
  letter-spacing: 0.2px;
}

#ordersTab .nav-link i { font-size: 18px; }

#ordersTab .nav-link.active {
  color: #fff !important;
  background-color: var(--primary) !important;
  font-weight: 700;
}
#ordersTab .nav-link.active i { color: #fff; }

.tab-badge:empty,
.tab-badge[data-count="0"] { display: none; }
#ordersTab .nav-link.active .tab-badge { background: #fff; color: var(--primary); }

.tab-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid #fff;
}

/* ----------------------------------------------------------
   15. Tracking Page  (moved from pages/tracking.html)
   ---------------------------------------------------------- */
.tracking-timeline {
  position: relative;
  padding-left: 28px;
}
.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}
.tracking-step {
  position: relative;
  margin-bottom: 20px;
}
.tracking-step::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e0e0e0;
}
.tracking-step.done::before {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

/* ----------------------------------------------------------
   16. Support / Chat  (moved from pages/support-thread.html)
   ---------------------------------------------------------- */
.support-chat-wrap {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 52px);
  overflow: hidden;
}
.support-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.support-msg { max-width: 75%; }
.support-msg--admin { align-self: flex-start; }
.support-msg--customer { align-self: flex-end; }
.support-msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.45;
}
.support-msg--admin .support-msg-bubble {
  background: #f1f5f9;
  color: #1a1a2e;
  border-bottom-left-radius: 4px;
}
.support-msg--customer .support-msg-bubble {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.support-msg-meta {
  font-size: 0.65rem;
  color: #94a3b8;
  margin-top: 4px;
  padding: 0 4px;
}
.support-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 16px 16px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}

/* ----------------------------------------------------------
   17. Verify-ID Page Step Indicator
       (overrides inline styles in register.html / verify-id.html)
   ---------------------------------------------------------- */
.step-indicator-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 20px 0 28px;
}

/* ----------------------------------------------------------
   18. OTP / Forgot-Password shared styles
   ---------------------------------------------------------- */
.verification-card {
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: center;
  border: 1.5px solid rgba(0,151,167,0.2);
}
.otp-input-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 24px 0;
}
.otp-input {
  width: 40px;
  height: 54px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid #e0e8ec;
  border-radius: 12px;
  background: #f8f9fa;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: #1a1a2e;
}
.otp-input:focus {
  border-color: var(--primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,151,167,0.15);
}
@media (max-width: 360px) {
  .otp-input { width: 34px; height: 48px; font-size: 1.2rem; }
  .otp-input-container { gap: 5px; }
}
.resend-text { font-size: 0.85rem; color: #6c757d; }
.resend-link { color: var(--primary); text-decoration: none; font-weight: 600; cursor: pointer; }

/* icon-box used by both otp-verify and forgot-password */
.icon-box {
  width: 64px;
  height: 64px;
  background: rgba(0,151,167,0.1);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

/* ----------------------------------------------------------
   19. Login Page — Floating Logo & Password Toggle
   ---------------------------------------------------------- */
@keyframes pk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.page-login .banner-wrapper img {
  animation: pk-float 6s ease-in-out infinite;
}

.show-pass .bi-eye { display: none; }
.show-pass.active .bi-eye-slash { display: none; }
.show-pass.active .bi-eye { display: inline-block; }

.page-login .account-box {
  border-radius: 28px 28px 0 0;
}

.page-login .signup-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}
.page-login .signup-row a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.page-login .signup-row a:hover { text-decoration: underline; }

/* ----------------------------------------------------------
   20. Cart Page Redesign
   ---------------------------------------------------------- */

/* Circular select checkbox */
.pk-checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s, border-color 0.15s;
}
.pk-checkbox:checked {
  background: var(--primary);
}
.pk-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pk-checkbox:indeterminate {
  background: var(--primary);
  opacity: 0.6;
}

/* Market chip on cart header */
.pk-market-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(0, 151, 167, 0.08);
  font-size: 0.78rem;
}
.pk-market-chip i { color: var(--primary); font-size: 0.9rem; }

/* Cutoff alert card */
.pk-cutoff-alert {
  background: rgba(220, 53, 69, 0.07);
  border: 1px solid rgba(220, 53, 69, 0.15);
  border-radius: 16px;
  padding: 14px;
}

/* Cart item card */
.pk-cart-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.pk-cart-item-cutoff {
  border-left: 4px solid #dc3545;
}
.pk-cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.pk-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pk-cart-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(220, 53, 69, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.pk-cutoff-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 999px;
  padding: 2px 8px;
}

.pk-cart-tag {
  font-size: 0.65rem;
  font-weight: 500;
  background: #f0f0f0;
  color: #555;
  border-radius: 999px;
  padding: 3px 8px;
  display: inline-block;
}

.pk-cutoff-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #075985;
  background: #e0f2fe;
  border-radius: 8px;
  padding: 6px 10px;
}

/* Quantity stepper pill */
.pk-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #f5f5f5;
  border: 0.5px solid #e0e0e0;
  border-radius: 999px;
  padding: 3px;
}
.pk-qty-stepper button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  color: var(--primary);
}
.pk-qty-stepper button:last-child {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}
.pk-qty-stepper button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pk-qty-stepper span {
  width: 26px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.pk-cart-delete {
  border: none;
  background: transparent;
  color: #adb5bd;
  font-size: 1.1rem;
  padding: 6px;
  transition: color 0.15s;
}
.pk-cart-delete:hover { color: #dc3545; }

/* Order summary card */
.pk-order-summary {
  background: #f7f9fa;
  border-radius: 18px;
  padding: 18px;
}
.pk-min-alert {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(220, 53, 69, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.75rem;
  color: #842029;
  margin: 10px 0;
}
.pk-min-alert i { font-size: 1.1rem; color: #dc3545; flex-shrink: 0; }

.pk-delivery-info {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(0, 151, 167, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.7rem;
  color: #355055;
  margin-bottom: 4px;
}
.pk-delivery-info i { font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }

.pk-summary-total {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pk-payment-policy {
  background: #f7f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 14px;
}

#cartCheckoutBtn:disabled {
  opacity: 0.4;
  filter: grayscale(0.6);
}

/* ----------------------------------------------------------
   21. Checkout Page Redesign
   ---------------------------------------------------------- */

/* Generic white card */
.pk-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.pk-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.pk-card-title h6 {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Round icon badge (e.g. address pin) */
.pk-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 151, 167, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Small primary pill tag (e.g. "Later Delivery") */
.pk-tag-primary {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0, 151, 167, 0.1);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* Delivery slot horizontal scroller */
.pk-slot-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.pk-slot-scroll::-webkit-scrollbar {
  display: none;
}
.pk-slot-btn {
  flex-shrink: 0;
  min-width: 84px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #555;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.15s;
}
.pk-slot-btn small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}
.pk-slot-btn.active {
  border-color: var(--primary);
  background: rgba(0, 151, 167, 0.08);
  color: var(--primary);
}

/* Payment method radio cards */
.pk-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pk-payment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 10px;
  border-radius: 14px;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  background: #fff;
}
.pk-payment-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pk-payment-card .payment-icon {
  font-size: 1.8rem;
  color: #999;
}
.pk-payment-card .label {
  font-weight: 700;
  font-size: 0.8rem;
  color: #333;
}
.pk-payment-card .payment-check {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--primary);
  font-size: 1rem;
}
.pk-payment-card.active {
  border-color: var(--primary);
  background: rgba(0, 151, 167, 0.05);
}
.pk-payment-card.active .payment-icon,
.pk-payment-card.active .label {
  color: var(--primary);
}

/* ID verification notice card */
.pk-verify-card {
  background: rgba(220, 53, 69, 0.06);
  border: 1px solid rgba(220, 53, 69, 0.18);
  border-radius: 18px;
  padding: 16px;
}
.pk-verify-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pk-verify-card.pk-verify-clickable {
  cursor: pointer;
}
.pk-verify-card.pk-verify-clickable:active {
  background: rgba(220, 53, 69, 0.12);
}

/* Order summary breakdown rows */
.pk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.8rem;
  color: #6c757d;
}
.pk-summary-row.d-none {
  display: none;
}

/* Slim checkout footer: total + place order */
.pk-checkout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.pk-checkout-footer .total-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a97a0;
  margin-bottom: 2px;
}

/* ----------------------------------------------------------
   22. Home Page Redesign
   ---------------------------------------------------------- */

/* Top App Bar */
.pk-home-header {
  background: #fff;
  position: sticky;
  top: var(--headheight, 55px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.pk-home-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
}
.pk-home-market {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  min-width: 0;
  flex: 1;
}
.pk-home-icon-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  border-radius: 12px;
  background: #f4f7f9;
  color: #5b6770;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: background 0.15s, color 0.15s;
}
.pk-home-icon-btn:hover {
  background: rgba(0, 151, 167, 0.1);
  color: var(--primary);
}
.pk-home-market-icon {
  background: rgba(0, 151, 167, 0.1);
  color: var(--primary);
}
.pk-home-market-info {
  min-width: 0;
}
.pk-home-market-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a97a0;
  margin-bottom: 1px;
}
.pk-home-market-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pk-home-market-value i {
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}
.pk-home-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pk-home-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  border: 2px solid #fff;
}

/* Notification dropdown */
.pk-notif-dropdown {
  width: min(92vw, 340px);
  border-radius: 18px;
  overflow: hidden;
  border: none;
  margin-top: 10px;
}
.pk-notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #fdfdfd 0%, #f0faf9 100%);
  border-bottom: 1px solid #eef2f2;
}
.pk-notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 151, 167, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pk-notif-list {
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  min-height: 100px;
}
.pk-notif-clear {
  background: #f8f9fa;
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 10px;
  transition: all 0.2s ease;
}
.pk-notif-clear:hover {
  background: #fff1f0;
  color: #e53935;
  border-color: #ffcfcc;
}

/* Greeting */
.pk-home-greeting {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 14px 0 12px;
}

/* Search bar */
.pk-home-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e9edf0;
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.pk-home-search i {
  color: var(--primary);
  font-size: 1.05rem;
}
.pk-home-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
  background: transparent;
}

/* Chip scroller (Filter chip + categories) */
.pk-chip-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 14px;
}
.pk-chip-scroll::-webkit-scrollbar {
  display: none;
}
.pk-filter-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #555;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 16px;
  transition: all 0.15s;
}
.pk-filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pk-filter-chip i {
  font-size: 0.95rem;
}

#categoryScroller {
  flex-wrap: wrap;
}
#categoryScroller .btn,
#typeFilterScroller .btn {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  white-space: nowrap;
}
#categoryScroller .btn.btn-primary,
#typeFilterScroller .btn.btn-primary {
  box-shadow: 0 4px 10px rgba(0, 151, 167, 0.25);
}

/* Section heading */
.pk-section-head {
  margin-bottom: 12px;
}
.pk-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Product cards */
.pk-product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pk-product-img {
  position: relative;
  height: 130px;
  background: #f5f5f5;
}
.pk-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pk-product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 151, 167, 0.92);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
}
.pk-product-halal {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
}
.pk-product-halal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pk-product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pk-product-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pk-product-cat {
  font-size: 0.7rem;
  color: #9aa6ad;
  margin: 0 0 8px;
}
.pk-product-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.pk-product-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}
.pk-product-unit {
  font-size: 0.65rem;
  color: #9aa6ad;
}
.pk-product-btn {
  margin-top: auto;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s;
}
.pk-product-btn:hover {
  background: var(--primary-hover);
  color: #fff;
}
.pk-product-btn-later {
  background: var(--primary-dark);
}
.pk-product-btn-later:hover {
  background: var(--primary-hover);
}

/* Filter slide nav (offcanvas) */
.pk-filter-offcanvas {
  width: 85%;
  max-width: 340px;
  border-radius: 18px 0 0 18px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
}
.pk-filter-offcanvas .offcanvas-header {
  border-bottom: 1px solid #f0f0f0;
}
.pk-filter-offcanvas .offcanvas-body {
  padding: 20px;
}
.pk-filter-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #8a97a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

/* Product modal — bottom sheet */
.modal.pk-sheet-modal .modal-dialog {
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.modal.show.pk-sheet-modal .modal-dialog {
  transform: translateY(0);
}
.pk-sheet-content {
  border-radius: 24px 24px 0 0;
  border: none;
  max-height: 92vh;
  overflow-y: auto;
}
.pk-sheet-handle {
  width: 40px;
  height: 4px;
  background: #e0e0e0;
  border-radius: 999px;
  margin: 10px auto 0;
}
.pk-sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
}
.pk-sheet-body {
  padding: 20px;
}
.pk-sheet-img {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.pk-sheet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pk-sheet-halal {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
}
.pk-sheet-halal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pk-sheet-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.pk-sheet-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pk-sheet-price-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.pk-sheet-price-label {
  font-size: 0.7rem;
  color: #9aa6ad;
}
.pk-sheet-price-base {
  font-size: 0.75rem;
  color: #9aa6ad;
  display: flex;
  gap: 4px;
}
.pk-sheet-cat {
  font-size: 0.7rem;
  color: #9aa6ad;
  margin: 2px 0 0;
}
.pk-sheet-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

/* Custom select w/ chevron */
.pk-select-wrap {
  position: relative;
}
.pk-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #f4f7f9;
  border: 1px solid #e6eaed;
  border-radius: 12px;
  padding: 11px 36px 11px 14px;
  font-size: 0.85rem;
  color: #333;
}
.pk-select:focus {
  outline: none;
  border-color: var(--primary);
}
.pk-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #9aa6ad;
}

/* Quantity input variant (used inside product modal) */
.pk-qty-stepper input {
  border: none;
  background: transparent;
  width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0;
}
.pk-qty-stepper input:focus {
  outline: none;
  box-shadow: none;
}

.pk-sheet-textarea {
  width: 100%;
  border: 1px solid #e6eaed;
  background: #f4f7f9;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.85rem;
  resize: none;
}
.pk-sheet-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.pk-sheet-btn {
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}
.pk-sheet-btn:hover {
  background: var(--primary-hover);
  color: #fff;
}
