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

body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  color: #1f2937;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.card h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.card p {
  color: #6b7280;
  margin-bottom: 24px;
}

.status-box {
  padding: 16px;
  border-radius: 10px;
  background: #eef2ff;
  color: #3730a3;
  font-weight: 600;
}

.status-box.success {
  background: #dcfce7;
  color: #166534;
}

.status-box.error {
  background: #fee2e2;
  color: #991b1b;
}
.auth-card {
  max-width: 620px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.form-group input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
}

.form-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.primary-button {
  border: none;
  border-radius: 10px;
  padding: 13px 18px;
  background: #111827;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.primary-button:hover {
  background: #1f2937;
}

.auth-message {
  margin-top: 18px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
}

.auth-message.success {
  background: #dcfce7;
  color: #166534;
}

.auth-message.error {
  background: #fee2e2;
  color: #991b1b;
}

.auth-message.info {
  background: #dbeafe;
  color: #1e40af;
}

.auth-message.hidden {
  display: none;
}

.auth-link {
  margin-top: 22px;
}

.auth-link a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.topbar {
  min-height: 72px;
  background: #111827;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
}

.topbar h2 {
  margin-bottom: 2px;
}

.topbar span {
  color: #9ca3af;
  font-size: 14px;
}

.secondary-button {
  border: 1px solid #374151;
  background: transparent;
  color: white;
  border-radius: 9px;
  padding: 10px 16px;
  cursor: pointer;
}

.secondary-button:hover {
  background: #1f2937;
}

.dashboard-shell {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 40px 0 70px;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.dashboard-hero h1 {
  font-size: 38px;
  margin-bottom: 8px;
}

.eyebrow {
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.locker-card {
  min-width: 230px;
  background: #111827;
  color: white;
  padding: 22px 26px;
  border-radius: 16px;
}

.locker-card span {
  display: block;
  color: #9ca3af;
  margin-bottom: 6px;
}

.locker-card strong {
  font-size: 29px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  margin-bottom: 34px;
}

.dashboard-card {
  background: white;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.dashboard-card h3 {
  margin-bottom: 20px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #e5e7eb;
}

.profile-row:last-child {
  border-bottom: 0;
}

.profile-row span {
  color: #6b7280;
}

.summary-number {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
}

.packages-section {
  margin-top: 15px;
}

.section-heading {
  margin-bottom: 20px;
}

.packages-container {
  display: grid;
  gap: 20px;
}

.package-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.package-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.package-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 24px;
  margin-top: 4px;
}

.status-pill {
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.package-details {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.package-details div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.package-details span {
  color: #6b7280;
  font-size: 13px;
}

.package-photo {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.empty-state {
  background: white;
  border-radius: 16px;
  padding: 45px;
  text-align: center;
  color: #6b7280;
}

.empty-state h3 {
  color: #111827;
  margin-bottom: 7px;
}

@media (max-width: 800px) {
  .dashboard-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .package-details {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .package-details {
    grid-template-columns: 1fr;
  }
}
.admin-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
  margin-bottom: 35px;
}

.admin-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.admin-search {
  width: 280px;
  max-width: 100%;
  padding: 11px 13px;
  border: 1px solid #d1d5db;
  border-radius: 9px;
  outline: none;
}

.admin-search:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  background: white;
}

.admin-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 13px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-table th {
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
}

.admin-package-actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-package-actions label {
  font-weight: 700;
}

.package-status-select {
  border: 1px solid #d1d5db;
  border-radius: 9px;
  padding: 9px 12px;
  background: white;
}

@media (max-width: 900px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-card-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-search {
    width: 100%;
  }

  .admin-package-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.status-history {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.status-history h4 {
  margin-bottom: 16px;
  font-size: 16px;
}

.history-item {
  display: flex;
  gap: 12px;
  position: relative;
  padding-bottom: 18px;
}

.history-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2563eb;
  margin-top: 5px;
  flex-shrink: 0;
}

.history-item strong {
  display: block;
  color: #111827;
}

.history-item span {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  font-size: 13px;
}

.history-item p {
  margin-top: 5px;
  color: #4b5563;
}

.history-empty {
  color: #6b7280;
}
.customer-picker-group {
  position: relative;
}

.customer-search-results {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  z-index: 50;

  background: white;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  max-height: 280px;
  overflow-y: auto;
}

.customer-search-results.hidden {
  display: none;
}

.customer-search-option {
  width: 100%;
  border: none;
  background: white;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.customer-search-option:hover {
  background: #f3f4f6;
}

.customer-search-option strong {
  color: #111827;
  font-size: 14px;
}

.customer-search-option span {
  color: #6b7280;
  font-size: 12px;
}

.customer-search-empty {
  padding: 14px;
  color: #6b7280;
}

.selected-customer {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #f3f4f6;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.selected-customer.hidden {
  display: none;
}

.selected-customer span {
  color: #6b7280;
  font-size: 12px;
}
.collapsible-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hidden-section {
  display: none;
}
.past-toggle-button {
  border: 1px solid #2563eb;
  background: white;
  color: #2563eb;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.past-toggle-button:hover {
  background: #2563eb;
  color: white;
}

.past-toggle-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.admin-packages-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.package-filter {
  min-width: 190px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  background: white;
  font-weight: 600;
}

@media (max-width: 700px) {
  .admin-packages-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .package-filter {
    width: 100%;
  }
}
.profile-edit-card {
  max-width: 820px;
  margin: 0 auto;
}

.profile-back-link {
  text-decoration: none;
  display: inline-block;
}

.form-group input[readonly] {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}
.profile-completion-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.profile-completion-notice.hidden {
  display: none;
}

.profile-completion-notice strong {
  display: block;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.profile-completion-notice p {
  color: #4b5563;
}

.profile-action-button {
  flex-shrink: 0;
  background: #2563eb;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.profile-action-button:hover {
  background: #1d4ed8;
}

.profile-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.profile-card-heading h3 {
  margin-bottom: 0;
}

.profile-edit-link {
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.profile-edit-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .profile-completion-notice {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-action-button {
    text-align: center;
  }
}
.warehouse-section {
  margin-bottom: 34px;
}

.warehouse-card {
  padding: 28px;
}

.warehouse-address-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.warehouse-address-header h3 {
  margin-top: 5px;
  margin-bottom: 0;
}

.warehouse-locker-badge {
  background: #111827;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
}

.warehouse-address-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.warehouse-address-grid div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.warehouse-address-grid span {
  color: #6b7280;
  font-size: 13px;
}

.warehouse-address-grid small {
  color: #4b5563;
}

.warehouse-instructions {
  margin-top: 24px;
  padding: 16px;
  background: #f3f4f6;
  border-radius: 12px;
}

.warehouse-instructions p {
  margin-top: 6px;
  color: #4b5563;
}

.warehouse-empty {
  text-align: center;
  padding: 20px;
  color: #6b7280;
}

.warehouse-empty strong {
  display: block;
  color: #111827;
  margin-bottom: 6px;
}

@media (max-width: 650px) {
  .warehouse-address-header {
    flex-direction: column;
  }

  .warehouse-address-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   MOVAG PUBLIC HOMEPAGE
========================================================= */

.home-page {
  background: #f7f8fa;
  color: #111827;
}


/* HEADER */

.home-header {
  min-height: 76px;
  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #ffffff;

  border-bottom: 1px solid #e5e7eb;
}


.home-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;

  text-decoration: none;
  color: #111827;
}


.home-brand-main {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 2px;
}


.home-brand-sub {
  font-size: 14px;
  color: #a88a63;
  letter-spacing: 3px;
}


.home-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}


.home-login-link {
  color: #111827;
  text-decoration: none;
  font-weight: 700;
}


.home-login-link:hover {
  color: #2563eb;
}


.home-nav-button {
  background: #111827;
  color: white;

  padding: 11px 18px;

  border-radius: 10px;

  text-decoration: none;
  font-weight: 700;
}


.home-nav-button:hover {
  background: #1f2937;
}


/* HERO */

.home-hero {
  width: min(1180px, 90%);
  margin: 0 auto;

  min-height: 580px;

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;

  gap: 70px;

  align-items: center;

  padding: 70px 0;
}


.home-hero h1 {
  font-size: clamp(
    46px,
    6vw,
    76px
  );

  line-height: 1.02;

  letter-spacing: -3px;

  margin-bottom: 24px;
}


.home-hero-text {
  max-width: 640px;

  font-size: 19px;
  line-height: 1.65;

  color: #6b7280;
}


.home-hero-actions {
  display: flex;
  gap: 14px;

  margin-top: 32px;
}


.home-primary-button,
.home-secondary-button,
.home-light-button,
.home-outline-light-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 10px;

  font-weight: 800;

  text-decoration: none;

  transition: 0.2s ease;
}


.home-primary-button {
  background: #111827;
  color: white;
}


.home-primary-button:hover {
  background: #1f2937;
}


.home-secondary-button {
  background: white;
  color: #111827;

  border: 1px solid #d1d5db;
}


.home-secondary-button:hover {
  border-color: #111827;
}


/* HERO CASILLERO CARD */

.home-hero-card {
  background: #111827;
  color: white;

  border-radius: 24px;

  padding: 38px;

  box-shadow:
    0 24px 60px
    rgba(17, 24, 39, 0.20);
}


.home-card-label {
  color: #9ca3af;

  font-size: 12px;

  letter-spacing: 1.5px;

  font-weight: 700;
}


.home-locker-example {
  display: block;

  font-size: 46px;

  margin: 12px 0 18px;
}


.home-hero-card > p {
  color: #d1d5db;

  line-height: 1.6;
}


.home-mini-status {
  margin-top: 30px;

  padding-top: 22px;

  border-top:
    1px solid #374151;

  display: flex;

  align-items: flex-start;

  gap: 12px;
}


.home-status-dot {
  width: 11px;
  height: 11px;

  margin-top: 5px;

  border-radius: 50%;

  background: #22c55e;

  flex-shrink: 0;
}


.home-mini-status strong {
  display: block;
}


.home-mini-status small {
  display: block;

  margin-top: 4px;

  line-height: 1.45;

  color: #9ca3af;
}


/* GENERAL SECTIONS */

.home-section {
  width: min(1180px, 90%);

  margin: 0 auto;

  padding: 85px 0;
}


.home-section-heading {
  max-width: 700px;

  margin-bottom: 42px;
}


.home-section-heading h2 {
  font-size: 38px;

  margin-bottom: 12px;
}


.home-section-heading > p:last-child {
  color: #6b7280;

  font-size: 17px;

  line-height: 1.6;
}


/* HOW IT WORKS */

.home-steps {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 20px;
}


.home-step-card {
  background: white;

  padding: 28px;

  border-radius: 18px;

  border: 1px solid #e5e7eb;

  box-shadow:
    0 8px 25px
    rgba(0, 0, 0, 0.04);
}


.home-step-number {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: #111827;

  color: white;

  font-weight: 800;

  margin-bottom: 22px;
}


.home-step-card h3 {
  margin-bottom: 10px;
}


.home-step-card p {
  color: #6b7280;

  line-height: 1.6;
}


/* FEATURES */

.home-features-section {
  border-top:
    1px solid #e5e7eb;
}


.home-features {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px;
}


.home-feature-card {
  background: white;

  border-radius: 18px;

  padding: 30px;

  display: grid;

  grid-template-columns:
    auto 1fr;

  column-gap: 20px;
}


.home-feature-icon {
  grid-row: span 2;

  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #eff6ff;

  color: #2563eb;

  border-radius: 12px;

  font-weight: 900;
}


.home-feature-card h3 {
  margin-bottom: 8px;
}


.home-feature-card p {
  color: #6b7280;

  line-height: 1.6;
}


/* CTA */

.home-cta {
  width: min(1180px, 90%);

  margin: 70px auto;

  background: #111827;

  color: white;

  border-radius: 26px;

  padding: 52px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;
}


.home-cta h2 {
  font-size: 36px;

  margin-bottom: 10px;
}


.home-cta p {
  color: #d1d5db;
}


.home-cta-eyebrow {
  color: #93c5fd !important;
}


.home-cta-actions {
  display: flex;

  gap: 12px;

  flex-shrink: 0;
}


.home-light-button {
  background: white;

  color: #111827;
}


.home-light-button:hover {
  background: #f3f4f6;
}


.home-outline-light-button {
  border: 1px solid #6b7280;

  color: white;
}


.home-outline-light-button:hover {
  background: #1f2937;
}


/* FOOTER */

.home-footer {
  border-top: 1px solid #e5e7eb;

  background: white;

  padding: 32px 6%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;
}


.home-footer p {
  color: #6b7280;

  font-size: 14px;
}


/* TABLET */

@media (max-width: 900px) {

  .home-hero {
    grid-template-columns: 1fr;

    gap: 40px;

    padding: 55px 0;
  }


  .home-hero-card {
    max-width: 600px;
  }


  .home-steps {
    grid-template-columns:
      1fr 1fr;
  }


  .home-cta {
    flex-direction: column;

    align-items: flex-start;
  }

}


/* PHONE */

@media (max-width: 600px) {

  .home-header {
    padding: 14px 5%;
  }


  .home-brand-sub {
    display: none;
  }


  .home-nav {
    gap: 12px;
  }


  .home-login-link {
    font-size: 14px;
  }


  .home-nav-button {
    padding: 9px 12px;

    font-size: 14px;
  }


  .home-hero {
    width: 90%;

    min-height: auto;
  }


  .home-hero h1 {
    letter-spacing: -2px;
  }


  .home-hero-actions {
    flex-direction: column;
  }


  .home-primary-button,
  .home-secondary-button {
    width: 100%;
  }


  .home-hero-card {
    padding: 28px;
  }


  .home-locker-example {
    font-size: 36px;
  }


  .home-section {
    padding: 60px 0;
  }


  .home-section-heading h2 {
    font-size: 30px;
  }


  .home-steps {
    grid-template-columns: 1fr;
  }


  .home-features {
    grid-template-columns: 1fr;
  }


  .home-feature-card {
    grid-template-columns: 1fr;
  }


  .home-feature-icon {
    grid-row: auto;

    margin-bottom: 16px;
  }


  .home-cta {
    padding: 32px 24px;

    margin: 40px auto;
  }


  .home-cta h2 {
    font-size: 30px;
  }


  .home-cta-actions {
    width: 100%;

    flex-direction: column;
  }


  .home-light-button,
  .home-outline-light-button {
    width: 100%;
  }


  .home-footer {
    flex-direction: column;

    align-items: flex-start;
  }

}