* {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

body {
  background: #f4f7fc;
  padding: 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-wrapper {
  max-width: 1440px;
  width: 100%;
}

 .callusnow {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1d4c78;
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(29, 76, 120, 0.35);
  transition: 0.2s;
  z-index: 999;
  border: none;
  animation: scrollDownAnimation 0.5s ease infinite alternate;
  -webkit-animation: scrollDownAnimation 0.5s ease infinite alternate;
}

.callusnow:hover {
  background: #0f3a5e;
  color: white;
  transform: scale(1.05);
}

.callusnow.chat {
  bottom: 92px;
  background: #1f7840;
  box-shadow: 0 6px 20px rgba(31, 120, 64, 0.35);
}

.callusnow.chat:hover {
  background: #145d30;
}

@keyframes scrollDownAnimation {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes scrollDownAnimation {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* ----- premium header ----- */
.portal-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 40px;
  padding: 0.6rem 1.8rem;
  margin-bottom: 0rem;
  box-shadow:
    0 12px 40px -8px rgba(0, 20, 40, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.portal-header:hover {
  box-shadow: 0 20px 48px -12px rgba(0, 20, 40, 0.12);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, #1d2b4b, #2c3f64);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 12px rgba(27, 45, 75, 0.15);
  transition: transform 0.2s ease;
}

.logo-icon:hover {
  transform: scale(1.02);
}

.portal-name {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0b1a33, #2f4570);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portal-name small {
  font-weight: 400;
  font-size: 0.65rem;
  -webkit-text-fill-color: #6f87a8;
  background: none;
  margin-left: 6px;
  letter-spacing: 0.02em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* announcement */
.announcement-wrapper {
    background: rgb(28 82 162);
    backdrop-filter: blur(4px);
    border-radius: 60px;
    padding: 0.25rem 1.2rem 0.25rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
    max-width: 400px;
    min-width: 500px;
}

.announcement-slide {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-slide i {
  color: #3b7cff;
  margin-right: 6px;
}

/* profile dropdown */
.profile-dropdown-toggle {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s ease;
  border-radius: 60px;
  padding: 0.2rem 0.2rem 0.2rem 0.8rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.profile-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-color: #d0dcee;
}

.profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 60px;
  background: linear-gradient(145deg, #e9eff8, #d7e1f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d2b4b;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.profile-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #16273f;
  letter-spacing: -0.01em;
}

.dropdown-menu-modern {
  border: none;
  border-radius: 24px;
  padding: 0.6rem 0;
  min-width: 210px;
  box-shadow:
    0 20px 48px -8px rgba(0, 20, 40, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.02);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.dropdown-menu-modern .dropdown-item {
  padding: 0.6rem 1.6rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: #1e314a;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.1s ease;
}

.dropdown-menu-modern .dropdown-item i {
  font-size: 1.1rem;
  width: 1.4rem;
  color: #5b7291;
}

.dropdown-menu-modern .dropdown-item:hover {
  background: rgba(59, 124, 255, 0.06);
  color: #1d2b4b;
}

.dropdown-menu-modern .dropdown-divider {
  margin: 0.3rem 1.2rem;
  border-color: #e9eff5;
}

.dropdown-menu-modern .dropdown-item.text-danger {
  color: #c74a3a;
}

.dropdown-menu-modern .dropdown-item.text-danger i {
  color: #c74a3a;
}

/* ----- footer (enhanced) ----- */
.portal-footer {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem 1.8rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  color: #2c405d;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: #0f1f36;
}

.footer-brand img {
  max-height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.02));
}

.footer-about {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
  max-width: 280px;
}

.footer-heading {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1d2b4b;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #3d5475;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.15s ease;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: #0b1a33;
  border-bottom-color: #0b1a33;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.4);
  color: #1d2b4b;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  font-size: 1rem;
  margin-right: 6px;
}

.footer-social a:hover {
  background: #1d2b4b;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-legal-links a {
  color: #2c405d;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.15s ease;
}

.footer-legal-links a:hover {
  border-bottom-color: #2c405d;
}

/* Let's Talk card */
.lets-talk-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border-radius: 28px;
  padding: 1.8rem 1.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  text-align: center;
  height: 100%;
}

.lets-talk-card:hover {
  box-shadow: 0 16px 40px -8px rgba(0, 20, 40, 0.08);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.7);
}

.lets-talk-card .btn-talk {
  border-radius: 60px;
  padding: 0.7rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  background: #1d2b4b;
  border: none;
  color: white;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(27, 45, 75, 0.08);
}

.lets-talk-card .btn-talk:hover {
  background: #14213b;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(27, 45, 75, 0.12);
}

.lets-talk-card .btn-talk i {
  margin-right: 8px;
}

@media (max-width: 992px) {
  .portal-footer {
    padding: 1.8rem 1.5rem;
  }
  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .portal-footer {
    padding: 1.5rem 1rem;
    border-radius: 28px;
  }
  .footer-brand {
    font-size: 1rem;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .lets-talk-card {
    padding: 1.5rem 1.2rem;
  }
}

/* responsive header */
@media (max-width: 992px) {
  .portal-header {
    padding: 0.6rem 1.2rem;
    border-radius: 32px;
  }
  .announcement-wrapper {
    max-width: 180px;
    min-width: 120px;
    padding: 0.15rem 0.8rem 0.15rem 0.8rem;
  }
  .portal-name {
    font-size: 1.1rem;
  }
  .profile-name {
    display: none;
  }
}

@media (max-width: 576px) {
  .portal-header {
    padding: 0.4rem 0.8rem;
    border-radius: 28px;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .logo-wrapper {
    gap: 0.3rem;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    border-radius: 14px;
  }
  .portal-name {
    font-size: 0.95rem;
  }
  .portal-name small {
    display: none;
  }
  .announcement-wrapper {
    max-width: 130px;
    min-width: 80px;
    padding: 0.1rem 0.5rem;
  }
  .announcement-slide {
    font-size: 0.65rem;
  }
  .header-right {
    gap: 0.5rem;
  }
  .profile-dropdown-toggle {
    padding: 0.1rem 0.1rem 0.1rem 0.4rem;
  }
  .profile-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  .profile-name {
    display: none;
  }
}

/* existing styles unchanged below */
.card-pro {
  background: #ffffff;
  border: none;
  border-radius: 28px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s ease;
}

.card-pro .card-body {
  padding: 1.5rem 1.8rem;
}

@media (max-width: 576px) {
  .card-pro .card-body {
    padding: 1.2rem 1rem;
  }
}

.form-select,
.form-control {
  border: 1px solid #e2e9f2;
  border-radius: 60px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #ffffff;
  transition: 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
  color: #1c2e44;
}

.form-select:focus,
.form-control:focus {
  border-color: #3b7cff;
  box-shadow:
    0 0 0 4px rgba(59, 124, 255, 0.08),
    inset 0 1px 2px rgba(0, 0, 0, 0.01);
  outline: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right 1.2rem center;
  background-repeat: no-repeat;
  background-size: 12px 8px;
  appearance: none;
}

.form-control::placeholder {
  color: #9aadc6;
  font-weight: 400;
  opacity: 0.7;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-label {
  font-weight: 600;
  color: #1f334a;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  display: block;
}

.pro-badge {
  background: #eef3fe;
  color: #1d3d7a;
  border-radius: 40px;
  padding: 0.2rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-left: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .pro-badge {
    display: none;
  }
}

.search-wrapper {
  position: relative;
}

.search-wrapper .form-control {
  padding-left: 2.8rem;
}

.search-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9cb0c9;
  font-size: 1rem;
  pointer-events: none;
}

.action-group {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .action-group {
    justify-content: flex-start;
    margin-top: 0.4rem;
  }
}

@media (max-width: 576px) {
  .action-group {
    flex-direction: column;
    width: 100%;
  }
  .action-group .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .form-select,
  .form-control {
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
  }
}

.btn-outline-danger {
  border-radius: 60px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #e7edf6;
  color: #4c617d;
  background: transparent;
  transition: all 0.15s ease;
  letter-spacing: -0.01em;
}

.btn-outline-danger:hover {
  background: #fef2f0;
  border-color: #f5cdc8;
  color: #b13f33;
  transform: scale(1.01);
  box-shadow: 0 2px 6px rgba(190, 70, 50, 0.06);
}

.btn-outline-danger i {
  margin-right: 6px;
  font-size: 1rem;
}

.btn-primary {
  border-radius: 60px;
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  font-size: 0.85rem;
  background: #1d2b4b;
  border: none;
  color: white;
  transition: all 0.15s ease;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(27, 45, 75, 0.06);
}

.btn-primary:hover {
  background: #14213b;
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(27, 45, 75, 0.12);
}

.btn-primary i {
  margin-right: 8px;
  font-size: 1rem;
}

.card-shadow {
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.05),
    0 4px 10px rgba(0, 0, 0, 0.02);
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.15s ease;
}

.card-shadow .card-body {
  padding: 0 !important;
}

.table-wrap {
  padding: 0.25rem 0.25rem 0 0.25rem;
}

#prodTable {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}

#prodTable thead th {
  background: #f8faff;
  color: #1a2639;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid #e9edf4;
  border-top: none;
  background: #f9fcff;
  white-space: nowrap;
}

#prodTable thead th:first-child {
  border-top-left-radius: 16px;
}

#prodTable thead th:last-child {
  border-top-right-radius: 16px;
}

#prodTable tbody tr {
  transition:
    background 0.15s ease,
    box-shadow 0.1s ease;
  border-bottom: 1px solid #ecf0f5;
}

#prodTable tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

#prodTable tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

#prodTable tbody tr:hover {
  background: #f5f9ff;
  box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.04);
}

#prodTable td {
  padding: 0.9rem 0.6rem;
  vertical-align: middle;
  background: transparent;
  border-bottom: 1px solid #eef2f8;
}

/* Image container with overlay */
.image-wrapper {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
}

.image-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #eaedf4;
  padding: 4px;
  transition: all 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
  display: block;
}

.image-wrapper .img-overlay {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 0;
  width: 30%;
  height: 30%;
  background: rgba(13, 25, 48, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.image-wrapper .img-overlay i {
  font-size: 1.2rem;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem;
  border-radius: 73px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease;
}

.image-wrapper:hover img {
  border-color: #b0c6e0;
  transform: scale(1.02);
}

.image-wrapper:hover .img-overlay {
  opacity: 1;
}

.image-wrapper:hover .img-overlay i {
  transform: scale(1.1);
}

/* responsive */
@media (max-width: 768px) {
  .image-wrapper,
  .image-wrapper img {
    width: 48px;
    height: 48px;
  }
  .image-wrapper .img-overlay i {
    font-size: 1.2rem;
    padding: 0.4rem;
  }
}

.part-badge {
  font-weight: 600;
  color: #0b1a33;
  background: #f0f4fe;
  padding: 0.2rem 0.7rem;
  border-radius: 40px;
  font-size: 0.75rem;
  display: inline-block;
  letter-spacing: -0.01em;
  border: 1px solid #e3ebf9;
}

.desc-text {
  font-weight: 500;
  color: #1e293b;
}

.badge-map {
  background: #fbe9e7;
  color: #b33c2c;
  font-weight: 600;
  font-size: 0.6rem;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  letter-spacing: 0.02em;
  border: 1px solid #fadbd8;
  margin-left: 8px;
}

.price-dealer {
  font-weight: 600;
  color: #0b2a4a;
}

.price-muted {
  color: #62748e;
  font-weight: 500;
}

.qty-input {
  width: 78px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d7dfe9;
  border-radius: 60px;
  padding: 0.25rem 0.1rem 0.25rem 0.5rem;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
  transition: 0.15s ease;
  height: 38px;
}

.qty-input:focus {
  border-color: #3b7cff;
  box-shadow: 0 0 0 3px rgba(59, 124, 255, 0.08);
  outline: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  opacity: 0.4;
}

.total-price {
  font-weight: 700;
  color: #0f3b2c;
  background: #e9f3ef;
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}

.empty-state {
  padding: 3.5rem 1rem;
}

.empty-state i {
  font-size: 2.8rem;
  color: #b7c6dd;
}

.empty-state h5 {
  font-weight: 500;
  color: #4e627c;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #prodTable thead th,
  #prodTable td {
    padding: 0.6rem 0.3rem;
    font-size: 0.75rem;
  }

  .qty-input {
    width: 60px;
    height: 34px;
    font-size: 0.8rem;
  }
}

.table > :not(caption) > * > * {
  box-shadow: none;
}

.card-shadow .table-responsive {
  border-radius: 20px;
}

.row-hidden {
  display: none !important;
}

/* login css begin */

.login-wrapper {
  max-width: 540px;
  width: 100%;
  margin: 0px auto 30px;
}

.login-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 40px;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 60px -12px rgba(0, 20, 40, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 32px 80px -16px rgba(0, 20, 40, 0.16);
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.login-logo img {
  max-height: 90px;
  width: auto;
}

.login-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #0b1a33;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.login-subtitle {
  color: #6f87a8;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a607d;
  margin-bottom: 0.3rem;
}

.form-control {
  border-radius: 60px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e2e9f2;
  background: #ffffff;
  transition: 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
}

.form-control:focus {
  border-color: #3b7cff;
  box-shadow:
    0 0 0 4px rgba(59, 124, 255, 0.08),
    inset 0 1px 2px rgba(0, 0, 0, 0.01);
  outline: none;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .form-control {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9cb0c9;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}

.password-toggle:hover {
  color: #1d2b4b;
}

.form-check-input {
  border-radius: 4px;
  border-color: #d0dcee;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #1d2b4b;
  border-color: #1d2b4b;
}

.form-check-label {
  font-size: 0.82rem;
  color: #4a607d;
  font-weight: 500;
  cursor: pointer;
}

.forgot-link {
  font-size: 0.82rem;
  color: #4a607d;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
  cursor: pointer;
}

.forgot-link:hover {
  color: #1d2b4b;
  text-decoration: underline;
}

.btn-login {
  border-radius: 60px;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: #1d2b4b;
  border: none;
  color: white;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(27, 45, 75, 0.12);
  width: 100%;
  margin-bottom: 0.75rem;
}

.btn-login:hover {
  background: #14213b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 45, 75, 0.18);
}

.btn-login i {
  margin-right: 8px;
}

.btn-register {
  border-radius: 60px;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  border: 2px solid #1d2b4b;
  color: #1d2b4b;
  transition: all 0.2s ease;
  width: 100%;
  margin-bottom: 1.25rem;
}

.btn-register:hover {
  background: #1d2b4b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 45, 75, 0.12);
}

.btn-register i {
  margin-right: 8px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.25rem 0;
  color: #9aadc6;
  font-size: 0.8rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e9f2;
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

.social-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #4a607d;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem;
  border-radius: 60px;
  border: 1px solid #e2e9f2;
  transition: all 0.2s ease;
  background: #ffffff;
  cursor: pointer;
}

.social-login:hover {
  border-color: #1d2b4b;
  background: #f8faff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.social-login img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
}

@media (max-width: 576px) {
  .login-card {
    padding: 2rem 1.5rem;
    border-radius: 32px;
  }

  .login-title {
    font-size: 1.4rem;
  }

  .login-logo img {
    max-height: 44px;
  }

  .btn-login,
  .btn-register {
    font-size: 0.85rem;
    padding: 0.65rem;
  }

  .social-login {
    font-size: 0.82rem;
    padding: 0.5rem;
  }

  .social-login img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 400px) {
  .login-card {
    padding: 1.5rem 1rem;
  }

  .form-check-label,
  .forgot-link {
    font-size: 0.75rem;
  }
}

/* login css begin */

/* registraion css  */

.register-wrapper {
  max-width: 520px;
  width: 100%;
  margin: 30px auto 30px;
}
.register-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 40px;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 60px -12px rgba(0, 20, 40, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.register-card:hover {
  box-shadow: 0 32px 80px -16px rgba(0, 20, 40, 0.16);
}
.register-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.register-logo img {
  max-height: 90px;
  width: auto;
}
.register-logo span {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0b1a33, #2f4570);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  color: #6f87a8;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.form-control {
  border-radius: 60px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e2e9f2;
  background: #ffffff;
  transition: 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
}
.form-control:focus {
  border-color: #3b7cff;
  box-shadow:
    0 0 0 4px rgba(59, 124, 255, 0.08),
    inset 0 1px 2px rgba(0, 0, 0, 0.01);
  outline: none;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a607d;
  margin-bottom: 0.3rem;
}
.password-wrapper {
  position: relative;
}
.password-wrapper .form-control {
  padding-right: 3rem;
}
.password-toggle {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9cb0c9;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}
.password-toggle:hover {
  color: #1d2b4b;
}
.btn-register {
  border-radius: 60px;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: #1d2b4b;
  border: none;
  color: white;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(27, 45, 75, 0.12);
  width: 100%;
  margin-top: 0.5rem;
}
.btn-register:hover {
  background: #14213b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 45, 75, 0.18);
}
.btn-register i {
  margin-right: 8px;
}
.invalid-feedback {
  font-size: 0.75rem;
  margin-top: 0.3rem;
}
@media (max-width: 576px) {
  .register-card {
    padding: 2rem 1.5rem;
    border-radius: 32px;
  }
  .register-title {
    font-size: 1.2rem;
  }
}

/* registraion css  */

/* change password page css  */

.cp-wrapper {
  max-width: 480px;
  width: 100%;
  margin: 0px auto 30px;
}
.cp-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 40px;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 60px -12px rgba(0, 20, 40, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.cp-card:hover {
  box-shadow: 0 32px 80px -16px rgba(0, 20, 40, 0.16);
}
.cp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.cp-logo img {
  max-height: 90px;
  width: auto;
}
.cp-logo span {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0b1a33, #2f4570);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cp-title {
  font-weight: 600;
  font-size: 1.4rem;
  color: #0b1a33;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.cp-subtitle {
  color: #6f87a8;
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
  font-weight: 400;
}
.form-control {
  border-radius: 60px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e2e9f2;
  background: #ffffff;
  transition: 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
}
.form-control:focus {
  border-color: #3b7cff;
  box-shadow:
    0 0 0 4px rgba(59, 124, 255, 0.08),
    inset 0 1px 2px rgba(0, 0, 0, 0.01);
  outline: none;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a607d;
  margin-bottom: 0.3rem;
}
.password-wrapper {
  position: relative;
}
.password-wrapper .form-control {
  padding-right: 3rem;
}
.password-toggle {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9cb0c9;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}
.password-toggle:hover {
  color: #1d2b4b;
}
.btn-update {
  border-radius: 60px;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: #1d2b4b;
  border: none;
  color: white;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(27, 45, 75, 0.12);
  width: 100%;
  margin-top: 0.5rem;
}
.btn-update:hover {
  background: #14213b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 45, 75, 0.18);
}
.btn-update i {
  margin-right: 8px;
}
.invalid-feedback {
  font-size: 0.75rem;
  margin-top: 0.3rem;
}
.strength-bar {
  height: 4px;
  border-radius: 4px;
  background: #e9edf4;
  margin-top: 6px;
  overflow: hidden;
}
.strength-bar .fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
@media (max-width: 576px) {
  .cp-card {
    padding: 2rem 1.5rem;
    border-radius: 32px;
  }
  .cp-title {
    font-size: 1.2rem;
  }
}



/* ----- ORDER CARD ----- */
.order-card {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12), 0 8px 24px -6px rgba(0, 0, 0, 0.04);
  padding: 2rem 2rem 1.5rem;
  border: 1px solid #e9eef6;
  margin-bottom: 1.5rem;
  margin-top: 50px;
}

/* ----- ORDER SECTION ----- */
.order-section {
  display: block;
}

.order-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #e9edf2;
  padding-bottom: 1.25rem;
}

.order-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0b0b0a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-title i {
  color: #1d4c78;
  font-size: 1.5rem;
}


.table-wrap {
  padding: 0.5rem 0.5rem 0 0.5rem;
}


/* ----- SUMMARY CARD (right side) ----- */
.summary-card {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e6eef8;
  padding: 1.5rem 1.5rem 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.summary-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #eef3fa;
  margin-bottom: 1rem;
}

.summary-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a1f33;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.summary-card .card-title i {
  color: #1d4c78;
  font-size: 1.3rem;
}

.summary-card .badge-count {
  background: #eaf0f8;
  color: #1d4c78;
  padding: 0.25rem 0.8rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid #d5e0ec;
}

/* ----- ITEM LIST (inside summary) ----- */
.item-list {
  max-height: 140px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
  padding-right: 0.2rem;
}

.item-list::-webkit-scrollbar {
  width: 4px;
}

.item-list::-webkit-scrollbar-thumb {
  background: #ccd8e6;
  border-radius: 10px;
}

.item-list .item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  color: #2a3d54;
  border-bottom: 1px dashed #edf2f9;
}

.item-list .item-row:last-child {
  border-bottom: none;
}

.item-list .item-row .item-qty {
  font-weight: 500;
  color: #1d4c78;
}

.item-list .item-row .item-total {
  font-weight: 600;
}

.empty-items {
  color: #9aadc2;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.4rem 0;
}

/* ----- SUMMARY ROWS ----- */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f4fa;
  font-size: 0.9rem;
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-row .label {
  color: #4b5d70;
  font-weight: 450;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.summary-row .label i {
  color: #6a7f94;
  font-size: 0.9rem;
  width: 1.2rem;
}

.summary-row .value {
  font-weight: 600;
  color: #0f263b;
}

.summary-row.total-row {
  border-top: 2px solid #dde5f0;
  border-bottom: none;
  padding-top: 0.8rem;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.summary-row.total-row .value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1f33;
}

/* ----- COUPON SECTION ----- */
.coupon-section {
  background: #f7faff;
  border-radius: 16px;
  padding: 0.8rem 1rem;
  margin: 0.6rem 0 0.4rem;
  border: 1px solid #e6eef8;
}

.coupon-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.coupon-input-group input {
  flex: 1;
  border-radius: 60px;
  border: 1px solid #d6e0ec;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  background: white;
  transition: 0.15s;
  min-width: 0;
  outline: none;
}

.coupon-input-group input:focus {
  border-color: #1d4c78;
  box-shadow: 0 0 0 3px rgba(29, 76, 120, 0.08);
}

.coupon-input-group .btn-apply {
  background: #1e3b5c;
  border: none;
  color: white;
  border-radius: 60px;
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
  white-space: nowrap;
}

.coupon-input-group .btn-apply:hover {
  background: #0f2c47;
}

.coupon-status {
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.4rem;
  color: #2b6b44;
}

.coupon-status.error {
  color: #b13e3e;
}

.coupon-status i {
  font-size: 0.8rem;
}

/* ----- FREIGHT NOTE ----- */
.freight-note {
  font-size: 0.7rem;
  color: #5d6f82;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0 0.2rem;
  border-top: 1px dashed #e4ebf4;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.freight-note i {
  color: #2d6a8f;
}

.freight-note strong {
  color: #0f263b;
}

/* ----- CARD ACTIONS (Order button) ----- */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eef3fa;
}

.card-actions .btn {
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    padding: 0.4rem 3.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: none;
    cursor: pointer;
    transition: 0.15s;
    text-decoration: none;
}

.card-actions .btn-success {
  background: #1f7840;
  color: white;
}

.card-actions .btn-success:hover {
  background: #145d30;
}

/* ----- CONTACT BOX ----- */
.contact-box {
  background: #f5f8fc;
  border-radius: 18px;
  padding: 1rem 1.4rem;
  font-size: 0.8rem;
  color: #2c2c28;
  border: 1px solid #e2eaf2;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.contact-box a {
  color: #1d4c78;
  text-decoration: none;
  font-weight: 500;
}

.contact-box a:hover {
  text-decoration: underline;
}

.contact-box strong {
  color: #0f2a40;
}


.summary-bar {
    background: #fff;
    border: 1px solid #e0dfd8;
    border-radius: 10px;
    padding: .875rem 1.25rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}



/* --- Thank You Main --- */
 



.thankyou-main {
    text-align: center;
    padding: 40px 0 20px;
    
    background-image: linear-gradient(to right, rgb(6 6 6 / 49%), rgb(0 0 0 / 43%)), url(https://static.vecteezy.com/system/resources/thumbnails/071/852/768/small/a-vibrant-underwater-scene-with-small-orange-fish-swimming-amidst-lush-aquatic-plants-photo.jpeg);
    border-radius: 38px;
    margin: 57px 0px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
  .thankyou-icon {
    font-size: 56px;
    margin-bottom: 10px;
    display: inline-block;
    background: #e6f0f5;
    width: 88px;
    height: 88px;
    line-height: 88px;
    border-radius: 50%;
    color: #1b5a73;
  }

  .thankyou-main h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffff  ;
    letter-spacing: -0.5px;
    margin-top: 4px;
  }

  .sub-thanks {
    font-size: 17px;
       color: #ffff  ;
    max-width: 500px;
    margin: 10px auto 4px;
    line-height: 1.5;
  }

  /* --- Agent Contact Box --- */
  .agent-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0f6fa;
    border-left: 4px solid #1b5a73;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 24px auto 16px;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(27, 90, 115, 0.06);
  }

  .agent-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #1b5a73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 2px;
  }

  .agent-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 15px;
    color: #1e3340;
    line-height: 1.5;
  }

  .agent-content strong {
    font-size: 16px;
    color: #0f2a37;
  }

  .agent-content strong:first-child {
    font-weight: 700;
  }

  .agent-content strong:last-child {
    color: #1b5a73;
  }

  .agent-content span {
    font-weight: 400;
    color: #3b5563;
  }

  /* --- Contact Urgency --- */
  .contact-urgency {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 10px;
    margin-top: 18px;
    font-size: 14px;
    color: #4e656f;
    background: #f9f8f5;
    padding: 10px 20px;
    border-radius: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-urgency a {
    color: #1b5a73;
    text-decoration: none;
    font-weight: 500;
  }

  .contact-urgency a:hover {
    text-decoration: underline;
  }

  .dot {
    color: #bcc9d0;
    font-weight: 300;
  }

  /* --- Responsive --- */
  @media (max-width: 600px) {
    .agent-contact-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 16px 18px;
    }

    .agent-icon {
      margin-top: 0;
    }

    .contact-urgency {
      flex-direction: column;
      gap: 4px;
      border-radius: 20px;
      padding: 12px 16px;
    }

    .dot {
      display: none;
    }

    .thankyou-main h2 {
      font-size: 26px;
    }

    .thankyou-icon {
      width: 72px;
      height: 72px;
      line-height: 72px;
      font-size: 44px;
    }
  }

  @media (max-width: 400px) {
    .agent-content {
      font-size: 14px;
    }

    .agent-content strong {
      font-size: 15px;
    }

    .contact-urgency {
      font-size: 13px;
    }
  }