/* NotWasted Vendor App - Editorial Style */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #A3A3A3;
  --gray-600: #525252;
  --accent: #16A34A;
  --accent-light: #DCFCE7;
  --danger: #DC2626;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ========== LOGIN SCREEN ========== */
#loginScreen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--white);
}

.login-header {
  padding: 60px 32px 40px;
  border-bottom: 1px solid var(--gray-200);
}

.login-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.login-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.login-logo-text span {
  color: var(--accent);
}

.login-subtitle {
  font-size: 14px;
  color: var(--gray-600);
}

.login-form {
  padding: 40px 32px;
  flex: 1;
}

.login-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.input {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  color: var(--black);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}

.input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.input::placeholder {
  color: var(--gray-400);
}

.btn-primary {
  width: 100%;
  padding: 18px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-secondary {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.btn-secondary:hover {
  border-color: var(--black);
}

.login-divider {
  margin: 32px 0;
  border-top: 1px solid var(--gray-200);
}

.login-test-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.btn-test {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-test:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== MAIN APP ========== */
#mainApp {
  min-height: 100vh;
  padding-bottom: 80px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

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

.header-logo {
  height: 36px;
  width: auto;
}

.header-info {
  display: flex;
  flex-direction: column;
}

.header-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.header-role {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logout-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.logout-btn:hover {
  color: var(--accent);
}

/* Screens */
.screen {
  display: none;
  padding: 24px;
}

.screen.active {
  display: block;
}

.screen-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Photo Upload */
.photo-upload {
  margin-bottom: 32px;
}

.upload-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-placeholder:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.upload-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.upload-text {
  font-size: 14px;
  color: var(--gray-600);
}

.photo-preview {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

/* Form */
.form-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.price-row-form {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 16px;
  margin-bottom: 24px;
}

.price-preview {
  background: var(--gray-100);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.price-preview-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.discounted-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.quantity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

/* Quick Presets */
.quick-presets {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.quick-presets h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.preset-btn {
  padding: 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.preset-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Listings Grid */
.listings-grid {
  display: grid;
  gap: 1px;
  background: var(--gray-200);
}

.listing-card {
  background: var(--white);
  padding: 20px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.listing-card:hover {
  background: var(--gray-100);
}

.listing-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.listing-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.listing-info .price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

.listing-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

.listing
.listing-status.active {
  background: var(--accent-light);
  color: var(--accent);
}

.listing-status.sold {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* Orders */
.orders-grid {
  display: grid;
  gap: 1px;
  background: var(--gray-200);
}

.order-card {
  background: var(--white);
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.order-id {
  font-family: Space Grotesk, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
}

.order-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

.order-status.pending {
  background: var(--accent-light);
  color: var(--accent);
}

.order-status.completed {
  background: var(--black);
  color: var(--white);
}

.order-details h4 {
  font-family: Space Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.order-details .customer {
  font-size: 13px;
  color: var(--gray-600);
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.order-total {
  font-family: Space Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.order-time {
  font-size: 12px;
  color: var(--gray-400);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-around;
  padding: 12px 0 16px;
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.nav-item.active,
.nav-item:hover {
  color: var(--black);
}

.nav-icon {
  font-size: 18px;
}

.nav-item span:last-child {
  font-family: Space Grotesk, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.modal-content {
  background: var(--white);
  padding: 32px;
  border-radius: 0;
  max-width: 100%;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.modal-guide-box {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 32px;
  margin: 24px 0;
  text-align: center;
}

.modal-frame {
  width: 180px;
  height: 180px;
  border: 3px dashed var(--accent);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.modal-frame i {
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
}

.modal-guide-text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-600);
}

.modal-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.modal-tip {
  background: var(--gray-100);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.modal-tip i {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

.modal-tip.good i {
  color: var(--accent);
}

.modal-tip.bad i {
  color: var(--danger);
}

.modal-tip span {
  font-size: 12px;
  color: var(--gray-600);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

/* Camera Overlay Guide */
.camera-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.camera-overlay.hidden {
  display: none;
}

.camera-overlay-header {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.camera-overlay-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.camera-overlay-close {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-frame-guide {
  width: 280px;
  height: 280px;
  border: 3px dashed var(--accent);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.camera-frame-guide::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.camera-frame-guide i {
  font-size: 48px;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 16px;
}

.camera-frame-guide span {
  font-size: 14px;
  color: var(--white);
  text-align: center;
}

.camera-overlay-tips {
  position: absolute;
  bottom: 100px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.camera-tip {
  text-align: center;
  color: var(--white);
}

.camera-tip i {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

.camera-tip.good i {
  color: var(--accent);
}

.camera-tip span {
  font-size: 11px;
  opacity: 0.8;
}

.camera-overlay-footer {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.camera-overlay-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Camera Frame (for preview) */
.camera-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
}

.frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

.frame-border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  aspect-ratio: 1;
  border: 3px dashed var(--accent);
  border-radius: 8px;
}

.frame-guide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}

.frame-guide i {
  font-size: 48px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.frame-guide span {
  font-size: 14px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state h3 {
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--gray-600);
}


/* Profile Screen */
.profile-header {
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
}

.profile-name {
  font-family: Space Grotesk, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-phone {
  font-size: 14px;
  color: var(--gray-600);
}

.profile-menu {
  list-style: none;
}

.profile-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: padding 0.3s ease;
}

.profile-menu-item:hover {
  padding-left: 12px;
}

.profile-menu-item span {
  font-size: 15px;
}

.profile-menu-item .arrow {
  color: var(--gray-400);
  transition: transform 0.3s ease, color 0.3s ease;
}

.profile-menu-item:hover .arrow {
  transform: translateX(4px);
  color: var(--accent);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
}

.modal-content h3 {
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

/* Vendor Listings - Editorial style matching customer */
.listings-grid {
  display: grid;
  gap: 1px;
  background: var(--gray-200);
}

/* Override: vendor cards are not clickable */
.listing-card {
  cursor: default;
}
.listing-card:hover {
  background: var(--white);
}

/* Vendor listing status badge */
.listing-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 6px;
}
.listing-status.active {
  background: var(--accent-light);
  color: var(--accent);
}
.listing-status.sold {
  background: var(--gray-100);
  color: var(--gray-400);
}
.listing-status.expired {
  background: var(--gray-100);
  color: var(--danger);
}

/* Vendor listing meta with urgency */
.distance .urgent {
  color: var(--danger);
  font-weight: 500;
}

/* Vendor action buttons */
.listing-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.action-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.action-btn.delete:hover {
  border-color: var(--danger);
  color: var(--danger);
  background: #FEF2F2;
}
.action-btn.end:hover {
  border-color: var(--danger);
  color: var(--danger);
  background: #FEF2F2;
}

/* Vendor listing price area (right-aligned) */
.listing-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.listing-price .current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.listing-price .original {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.listing-price .discount {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
  display: inline-block;
}

/* Vendor listing info - no pointer */
.listing-info {
  cursor: default;
}

.listing-time.urgent {
  background: #FEF3C7;
  color: var(--warning);
}

.listing-status-modern {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.listing-status-modern.active {
  background: var(--accent-light);
  color: var(--accent);
}

.listing-status-modern.sold-out {
  background: var(--gray-100);
  color: var(--gray-600);
}

.listing-status-modern.expired {
  background: #FFEBEE;
  color: var(--danger);
}

.listing-actions-modern {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.btn-modern {
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-edit {
  background: var(--black);
  color: var(--white);
  border: none;
}

.btn-edit:hover {
  background: var(--accent);
}

.btn-end {
  background: var(--gray-100);
  color: var(--gray-600);
  border: none;
}

.btn-end:hover {
  background: var(--danger);
  color: var(--white);
}

.btn-reactivate {
  background: var(--accent-light);
  color: var(--accent);
  border: none;
}

.btn-reactivate:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-delete {
  background: #FFEBEE;
  color: var(--danger);
  border: none;
}

.btn-delete:hover {
  background: var(--danger);
  color: var(--white);
}

/* Orders */
.orders-grid {
  display: grid;
  gap: 1px;
  background: var(--gray-200);
}

.order-card {
  background: var(--white);
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
}

.order-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--gray-100);
  flex-shrink: 0;
}

.order-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.order-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  flex: 1;
}

.order-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.order-customer {
  font-size: 14px;
  color: var(--gray-600);
}

.order-code {
  font-size: 14px;
  color: var(--gray-600);
  margin: 4px 0;
}

.order-code strong {
  font-family: 'Space Grotesk', monospace;
  font-size: 15px;
  color: var(--black);
  letter-spacing: 0.05em;
}

.confirm-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.pickup-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Space Grotesk', monospace;
}

.pickup-input:focus {
  outline: none;
  border-color: var(--accent);
}

.confirm-btn {
  padding: 10px 16px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirm-btn:hover {
  background: var(--accent);
}
