.tracking-lookup-panel {
  display: flex;
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 10px rgba(12,48,88,0.4);
  padding: 32px 40px;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}
.tracking-lookup-panel .summary-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #143463;
}
.tracking-lookup-panel .summary-search {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(223,234,243,0.15);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
}
.tracking-lookup-panel .summary-search .search-hint {
  font-size: 0.95rem;
  color: #143463;
}
.tracking-lookup-panel .summary-search .summary-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tracking-lookup-panel .summary-search .summary-form .form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 992px) {
  .tracking-lookup-panel .summary-search .summary-form .form-row {
    grid-template-columns: 1fr;
  }
}
.tracking-lookup-panel .summary-search .summary-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tracking-lookup-panel .summary-search .summary-form .input-group .input-label {
  font-size: 1rem;
  font-weight: 600;
  color: #143463;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tracking-lookup-panel .summary-search .summary-form .input-group input {
  padding: 12px 14px;
  border: 1px solid #143463;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.tracking-lookup-panel .summary-search .summary-form .input-group input::placeholder {
  color: #ccc;
}
.tracking-lookup-panel .summary-search .summary-form .input-group input:focus {
  border-color: #143463;
  box-shadow: 0 0 0 3px rgba(20,52,99,0.18);
  outline: none;
}
.tracking-lookup-panel .summary-search .summary-form .form-helper {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}
.tracking-lookup-panel .summary-search .summary-form .form-helper .contact-phone {
  color: #143463;
  font-weight: 600;
}
.tracking-lookup-panel .summary-search .summary-form button.btn--primary {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  border: none;
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .tracking-lookup-panel {
    width: 100%;
    padding: 28px 24px;
  }
  .tracking-lookup-panel .summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #143463;
    letter-spacing: -0.9px;
  }
  .tracking-lookup-panel .summary-search {
    padding: 0;
    background: none;
    border: none;
  }
  .tracking-lookup-panel .summary-search .search-hint {
    display: none;
  }
  .tracking-lookup-panel .summary-search .summary-form .form-row {
    grid-template-columns: 1fr;
  }
  .tracking-lookup-panel .summary-search .summary-form .input-group input {
    width: 100%;
  }
  .tracking-lookup-panel .summary-search .summary-form button.btn--primary {
    width: 100%;
    padding: 14px 0;
  }
  .tracking-lookup-panel .summary-search .summary-form .form-helper {
    display: none;
  }
}
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon .node-circle,
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--order-final .node-icon .node-circle {
  width: 58px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon .node-circle::before,
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--order-final .node-icon .node-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(20deg);
  animation: orderCompletionShine 4s infinite ease-out;
  pointer-events: none;
  z-index: 1;
  border-radius: 3px;
}
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon .node-circle::after,
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--order-final .node-icon .node-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 18px;
  background-image: url("../images/tailormed-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: none;
}
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon .node-circle::after pointer-events none .separator,
.results-panel.results-panel--static.is-active .timeline-content .timeline-nodes-container .timeline-node--order-final .node-icon .node-circle::after pointer-events none .separator {
  font-size: 1.1rem;
  font-weight: 700;
  color: #143463;
  white-space: nowrap;
}
.results-panel {
  display: flex;
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 10px rgba(12,48,88,0.4);
  padding: 28px 36px;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.results-panel .results-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #143463;
}
.results-panel .results-description {
  font-size: 0.95rem;
  color: #666;
}
.results-panel .results-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  width: 100%;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #143463;
  text-align: center;
  line-height: 1.6;
}
.results-panel .results-message .results-message__illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.results-panel .results-message .results-message__illustration--loading {
  position: relative;
}
.results-panel .results-message .results-message__illustration--loading::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 2px;
  background: #143463;
  border-radius: 999px;
  opacity: 0.25;
  z-index: 0;
}
@media (max-width: 768px) {
  .results-panel .results-message .results-message__illustration--loading::after {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .results-panel .results-message .results-message__illustration--loading::after {
    width: 70%;
  }
}
.results-panel .results-message .results-message__illustration--loading img {
  position: relative;
  z-index: 1;
  animation: truckRoadBounce 2s ease-in-out infinite;
}
.results-panel .results-message .results-message__illustration img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.results-panel .results-message .results-message__text {
  margin: 0 auto;
  width: 50%;
  max-width: 520px;
}
.results-panel.is-loading .results-container,
.results-panel.is-error .results-container {
  display: none;
}
.results-panel.is-loading .results-message {
  display: flex;
}
.results-panel.is-error .results-message {
  display: flex;
  color: #bb2749;
}
.results-panel.is-hidden {
  display: none;
}
.results-panel.is-empty .results-highlight {
  display: none;
}
.results-panel.is-empty .status-info {
  display: none;
}
.results-panel.is-empty .timeline-content {
  display: none;
}
.results-panel .results-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.results-panel .summary-placeholder {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 12px;
  border: 1px dashed rgba(20,52,99,0.18);
  border-radius: 12px;
  background: rgba(223,234,243,0.35);
  text-align: left;
}
.results-panel .summary-placeholder__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #143463;
}
.results-panel .summary-placeholder__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #415a7a;
}
.results-panel .summary-placeholder__accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  margin: 0 4px;
  border-radius: 6px;
  background: rgba(20,52,99,0.12);
  color: #143463;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.results-panel .summary-placeholder__list {
  margin: 8px 0 0;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5f7a;
  list-style: disc;
}
.results-panel .summary-placeholder__list li {
  margin-bottom: 6px;
}
.results-panel .summary-placeholder__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.results-panel .summary-placeholder__visual .results-message__illustration {
  margin-bottom: 0;
}
.results-panel .summary-placeholder--visual-only {
  align-items: center;
  padding: 40px 12px;
  background: none;
  border: none;
  text-align: center;
}
.results-panel .summary-placeholder--visual-only .summary-placeholder__note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(12,48,88,0.6);
}
.results-panel .results-highlight {
  flex: 6;
  padding: 20px 24px;
  background: rgba(223,234,243,0.15);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
}
.results-panel .results-highlight .summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.results-panel .results-highlight .summary-grid .summary-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.results-panel .results-highlight .summary-grid .summary-field .field-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.results-panel .results-highlight .summary-grid .summary-field .field-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: #143463;
}
.results-panel .status-info {
  flex: 4;
  background: #143463;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.results-panel .status-info .status-placeholder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  color: #fff;
}
.results-panel .status-info .status-placeholder__title {
  font-size: 1.2rem;
  font-weight: 600;
}
.results-panel .status-info .status-placeholder__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.results-panel .status-info::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50%;
  height: 80%;
  background-image: url("../images/tailormed-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.15;
  pointer-events: none;
}
.results-panel .status-info .summary-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.results-panel .status-info .summary-field align-items flex-start:nth-child(1) .field-value {
  font-size: 1.4rem;
}
.results-panel .status-info .summary-field .field-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.results-panel .status-info .summary-field .field-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.results-panel .status-info .summary-field .status-value-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.results-panel .status-info .summary-field .status-inline {
  color: #143463;
  padding: 5px 10px;
  background: #97d3df;
  border-radius: 5px;
}
.results-panel .status-info .summary-field .status-icon-wrapper {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}
.results-panel .status-info .summary-field .status-icon-wrapper::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.results-panel .status-info .summary-field .status-icon-wrapper::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0,0,0,0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.results-panel .status-info .summary-field .status-icon-wrapper:hover::after,
.results-panel .status-info .summary-field .status-icon-wrapper:hover::before {
  opacity: 1;
}
.results-panel .status-info .summary-field .status-icon {
  width: 40px;
  height: 40px;
  display: block;
}
.results-panel .status-info .summary-field:nth-child(1) .field-value {
  font-size: 2.4rem;
}
.results-panel .status-info .summary-field:nth-child(3) .field-value {
  font-size: 0.8rem;
  font-weight: 400;
}
.results-panel .status-info .summary-field:nth-child(3) .status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(37,99,235,0.1);
  color: #bb2749;
}
.results-panel .status-info .summary-field:nth-child(3) .status-badge.status-in-transit {
  background: rgba(37,99,235,0.12);
  color: #bb2749;
}
.results-panel .status-info .summary-field:nth-child(3) .status-badge.status-customs {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
}
.results-panel .status-info .summary-field:nth-child(3) .status-badge.status-departed {
  background: rgba(187,39,73,0.12);
  color: #bb2749;
}
.results-panel .status-info .summary-field:nth-child(3) .status-badge.status-delivered {
  background: rgba(187,39,73,0.18);
  color: #9a1f3a;
}
.results-panel .status-info .summary-field:nth-child(3) .status-badge.status-exception {
  background: rgba(225,29,72,0.12);
  color: #e11d48;
}
.results-panel .results-note {
  font-size: 0.9rem;
  color: #666;
  padding: 12px 16px;
  background: rgba(248,250,252,0.9);
  border: 1px dashed rgba(12,48,88,0.15);
  border-radius: 12px;
  text-align: center;
  margin: 50px 0 0 0;
}
.results-panel .results-note.is-hidden {
  display: none;
}
@media (min-width: 769px) {
  .results-panel .results-note {
    margin: 50px 0 0 0;
  }
}
.results-panel .feedback-section {
  margin-top: 24px;
  padding: 30px 0;
  display: block;
  width: 100%;
}
.results-panel .feedback-section.is-hidden {
  display: none;
}
@media (min-width: 769px) {
  .results-panel .feedback-section {
    background: none;
    border: none;
    border-radius: 0;
    text-align: left;
  }
  .results-panel .feedback-section .feedback-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .results-panel .feedback-section .feedback-content .feedback-text {
    flex: 1 1 70%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
  }
  .results-panel .feedback-section .feedback-content .feedback-text h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    line-height: 1.4;
    text-align: left;
  }
  .results-panel .feedback-section .feedback-content .feedback-text p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
  }
  .results-panel .feedback-section .feedback-content .feedback-link {
    flex: 0 0 auto;
    max-width: 30%;
    display: inline-block;
    padding: 12px 24px;
    background: #bb2749;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(187,39,73,0.2);
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .results-panel .feedback-section .feedback-content .feedback-link:hover {
    background: #a82342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187,39,73,0.3);
  }
  .results-panel .feedback-section .feedback-content .feedback-link:active {
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .results-panel .feedback-section {
    background: none;
    border: none;
    border-radius: 0;
    text-align: center;
  }
  .results-panel .feedback-section .feedback-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .results-panel .feedback-section .feedback-content .feedback-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0;
  }
  .results-panel .feedback-section .feedback-content .feedback-text h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    line-height: 1.4;
    text-align: center;
  }
  .results-panel .feedback-section .feedback-content .feedback-text p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
  }
  .results-panel .feedback-section .feedback-content .feedback-link {
    display: inline-block;
    padding: 12px 24px;
    background: #bb2749;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(187,39,73,0.2);
  }
  .results-panel .feedback-section .feedback-content .feedback-link:hover {
    background: #a82342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187,39,73,0.3);
  }
  .results-panel .feedback-section .feedback-content .feedback-link:active {
    transform: translateY(0);
  }
}
.results-panel .ad-banner {
  margin-top: 24px;
  display: none;
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0.4;
}
.results-panel .ad-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.results-panel .ad-banner.is-hidden {
  display: none;
}
@media (min-width: 769px) {
  .results-panel .ad-banner {
    display: block;
  }
}
.results-panel .api-debug-panel {
  margin-top: 16px;
  padding: 16px;
  background: rgba(223,234,243,0.18);
  border: 1px solid rgba(20,52,99,0.12);
  border-radius: 12px;
  display: none;
  overflow: hidden;
}
.results-panel .api-debug-panel.is-hidden {
  display: none;
}
.results-panel .api-debug-panel .api-debug-panel__title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #143463;
}
.results-panel .api-debug-panel .api-debug-panel__body {
  margin: 0;
  padding: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  border: 1px solid rgba(20,52,99,0.08);
  font-family: 'Fira Code', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #334155;
  max-height: 260px;
  overflow: auto;
}
.results-panel .results-mobile-cta {
  display: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0 22px;
  height: 55px;
  border: none;
  border-radius: 10px;
  background: #143463;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.results-panel .results-mobile-cta .btn-text {
  font-size: inherit;
  line-height: 1;
}
.results-panel .results-mobile-cta:hover {
  transform: translateY(-3px);
  background: #122f59;
}
.results-panel .results-mobile-cta:active {
  transform: translateY(0);
}
.results-panel .results-summary,
.results-panel .results-list,
.results-panel .results-empty {
  display: none;
}
.results-panel .timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 20px;
}
.results-panel .timeline-content .timeline-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #143463;
  margin: 0;
}
.results-panel .timeline-content .timeline-description {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.results-panel .timeline-content .timeline-placeholder {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px dashed rgba(20,52,99,0.18);
  background: rgba(223,234,243,0.3);
}
.results-panel .timeline-content .timeline-placeholder__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3f5872;
}
.results-panel .timeline-content .timeline-placeholder.is-hidden {
  display: none;
}
.results-panel .timeline-content .timeline-visual {
  position: relative;
  padding: 20px;
  margin: 0;
  width: 100%;
}
.results-panel .timeline-content .timeline-nodes-container {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-date .day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #143463;
  white-space: nowrap;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-date .separator {
  font-size: 1.1rem;
  font-weight: 700;
  color: #143463;
  white-space: nowrap;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle {
  width: 40px;
  height: 40px;
  background: #143463;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  z-index: 6;
  transition: all 0.3s ease;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-image: url("../images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: brightness(0) saturate(100%) invert(20%) sepia(21%) saturate(1500%) hue-rotate(190deg) brightness(95%) contrast(100%);
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20,52,99,0.3) !important;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle:hover::before {
  background: #143463;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle:hover::after {
  filter: brightness(0) invert(1);
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-circle--order-final {
  width: 58px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-circle--order-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(20deg);
  animation: orderCompletionShine 4s infinite ease-out;
  pointer-events: none;
  z-index: 1;
  border-radius: 3px;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-circle--order-final::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 18px;
  background-image: url("../images/tailormed-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: none;
  pointer-events: none;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-info .node-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: #143463;
  max-width: 120px;
  word-wrap: break-word;
  text-align: center;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node .node-info .node-time {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  margin: 0;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-1 .node-info .node-status,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--executed .node-info .node-status {
  color: #143463;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date .day,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-date .day {
  color: #bb2749;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-icon .node-circle,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-icon .node-circle {
  background: #bb2749;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-icon .node-circle::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-icon .node-circle::before {
  background: #fff;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-icon .node-circle::after,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-icon .node-circle::after {
  width: 16px;
  height: 13px;
  background-image: url("../images/icon-truck.svg");
  filter: none;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-icon .node-circle:hover::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-icon .node-circle:hover::before {
  background: #bb2749;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-info .node-status,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-info .node-status {
  color: #bb2749;
  position: relative;
  overflow: hidden;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-info .node-status::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--processing .node-info .node-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: gradientShine 2s infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: 2px;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date .day,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-date .day {
  color: #bb2749;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-icon .node-circle,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-icon .node-circle {
  background: #bb2749;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-icon .node-circle::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-icon .node-circle::before {
  background: #fff;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-icon .node-circle::after,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-icon .node-circle::after {
  width: 16px;
  height: 13px;
  background-image: url("../images/icon-inTransit.svg");
  filter: none;
  animation: floatY 2.2s ease-in-out infinite;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-icon .node-circle:hover::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-icon .node-circle:hover::before {
  background: #bb2749;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-info .node-status,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-info .node-status {
  color: #bb2749;
  position: relative;
  overflow: hidden;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-info .node-status::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--international-transit .node-info .node-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: gradientShine 2s infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: 2px;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--scheduled .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date .day,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--scheduled .node-date .day {
  color: #dfeaf3;
  font-style: italic;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-icon .node-circle,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--scheduled .node-icon .node-circle {
  background: #dfeaf3;
  border: 2px dashed #dfeaf3;
  transition: none;
  pointer-events: none;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-icon .node-circle::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--scheduled .node-icon .node-circle::before {
  width: 28px;
  height: 28px;
  background: #fff;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-icon .node-circle::after,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--scheduled .node-icon .node-circle::after {
  display: none;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-info .node-status,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--scheduled .node-info .node-status,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-info .node-time,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--scheduled .node-info .node-time {
  color: #dfeaf3;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-5 .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-completed .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-5 .node-date .day,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-completed .node-date .day {
  color: #143463;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-5 .node-info .node-status,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-completed .node-info .node-status {
  color: #222;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-5 .node-icon .node-circle,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-completed .node-icon .node-circle {
  transition: none;
  pointer-events: none;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-5 .node-icon .node-circle::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-completed .node-icon .node-circle::before {
  background: #143463;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-5 .node-icon .node-circle::after,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-completed .node-icon .node-circle::after {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-final .node-date .month,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-date .day,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-final .node-date .day {
  color: #143463;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-info .node-status,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-final .node-info .node-status {
  color: #222;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-info .node-time,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-final .node-info .node-time {
  color: #666;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon .node-circle,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-final .node-icon .node-circle {
  width: 58px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
  pointer-events: none;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon .node-circle::before,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-final .node-icon .node-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(20deg);
  animation: orderCompletionShine 4s infinite ease-out;
  pointer-events: none;
  z-index: 1;
  border-radius: 3px;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon .node-circle::after,
.results-panel .timeline-content .timeline-nodes-container .timeline-node--order-final .node-icon .node-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 18px;
  background-image: url("../images/tailormed-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: none;
}
.results-panel .timeline-content .timeline-nodes-container .timeline-events {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.results-panel .timeline-content.timeline-preview--international:not(.timeline-preview--international-completed) .timeline-events {
  height: 99%;
}
.event-dryice-refilled {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  top: var(--dryice-event1-top, 39%);
  left: var(--dryice-event1-left, 52.5%);
}
.event-dryice-refilled:nth-child(2) {
  top: 39%;
  left: 67%;
}
.event-dryice-refilled .event-circle {
  position: relative;
  width: 16px;
  height: 16px;
  background: #97d3df;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 3;
  transform: translateY(-50%);
}
.event-dryice-refilled .event-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.event-dryice-refilled .event-circle::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: #97d3df;
  z-index: 2;
}
.event-dryice-refilled .event-tag {
  position: relative;
  background: #97d3df;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: normal;
  white-space: normal;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-top: 70px;
  z-index: 1;
  line-height: 1.2;
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-dryice-refilled .event-tag .event-tag-text {
  display: block;
}
.event-dryice-refilled .event-tag .event-tag-icon {
  display: none;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .results-panel .timeline-content {
    gap: 1.5rem;
  }
  .results-panel .timeline-content .timeline-title {
    font-size: 1.75rem;
  }
  .results-panel .timeline-content .timeline-description {
    font-size: 0.9rem;
  }
  .results-panel .timeline-content .timeline-nodes-container {
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node:last-child {
    margin-bottom: 0;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-date {
    flex-direction: column;
    gap: 2px;
    padding-bottom: 12px;
    justify-content: center;
    align-items: center;
    width: 12%;
    margin-right: 2%;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-date .month {
    font-size: 0.8rem;
    font-weight: normal;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-date .day {
    font-size: 1.4rem;
    line-height: 8px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon {
    width: 17%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle:not(.node-circle--order-final) {
    width: 38px;
    height: 38px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle:not(.node-circle--order-final)::before {
    width: 24px;
    height: 24px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-icon .node-circle--completed::before {
    height: 36px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-info {
    flex: 1;
    align-items: flex-start;
    margin-top: 4px;
    margin-left: 3%;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-info .node-status {
    font-size: 0.9rem;
    max-width: 100%;
    text-align: left;
    letter-spacing: -0.1px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node .node-info .node-time {
    font-size: 0.8rem;
    margin-top: -4px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date .day,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date .day {
    color: #bb2749;
    font-size: 1rem;
    letter-spacing: -1.8px;
    margin-top: 11px;
    font-style: normal;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date {
    position: relative;
    padding-bottom: 12px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date::after,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date::after,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date::after {
    content: attr(data-month);
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date .month,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date .month,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date .month {
    display: none;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date .day,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date .day,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date .day {
    display: none;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-2 .node-date::after,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-3 .node-date::after {
    color: #bb2749;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date::after {
    color: #dfeaf3;
    font-style: italic;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date .month,
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-4 .node-date .day {
    color: #dfeaf3;
    font-size: 1rem;
    letter-spacing: -1.8px;
    margin-top: 6px;
    font-style: italic;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-icon {
    width: 58px;
  }
  .results-panel .timeline-content .timeline-nodes-container .timeline-node--status-6 .node-circle {
    width: 58px;
    height: 40px;
  }
  .results-panel .timeline-content .timeline-node .node-icon .node-circle--order-final {
    width: 58px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
  }
  .results-panel .timeline-content .timeline-node .node-icon .node-circle--order-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(20deg);
    animation: orderCompletionShine 4s infinite ease-out;
    pointer-events: none;
    z-index: 1;
    border-radius: 3px;
  }
  .results-panel .timeline-content .timeline-node .node-icon .node-circle--order-final::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 18px;
    background-image: url("../images/tailormed-mark.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    filter: none;
    pointer-events: none;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
  }
  .results-panel .timeline-content .timeline-node .node-icon .node-circle--order-final::after::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(20deg);
    animation: orderCompletionShine 4s infinite ease-out;
    pointer-events: none;
    z-index: 1;
    border-radius: 3px;
  }
  .results-panel .timeline-content .timeline-node .node-icon .node-circle--order-final::after::after {
    width: 38px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .timeline-preview--international .timeline-visual,
  .results-panel .timeline-content .timeline-visual.timeline-visual--imex {
    --dryice-event1-top: 55%;
    --dryice-event1-left: 20%;
  }
  .timeline-preview--international .timeline-visual.timeline-visual--order-final .timeline-events,
  .results-panel .timeline-content .timeline-visual.timeline-visual--imex.timeline-visual--order-final .timeline-events {
    height: 100%;
  }
  .timeline-preview--international .timeline-visual:not(.timeline-visual--order-final) .timeline-events,
  .results-panel .timeline-content .timeline-visual.timeline-visual--imex:not(.timeline-visual--order-final) .timeline-events {
    height: 99%;
  }
  .event-dryice-refilled {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: fit-content;
  }
  .event-dryice-refilled:nth-child(1) {
    top: 55%;
    left: 20%;
  }
  .event-dryice-refilled:nth-child(2) {
    top: 70.5%;
    left: 67%;
  }
  .event-dryice-refilled .event-circle {
    transform: none;
    flex-shrink: 0;
    z-index: 3;
  }
  .event-dryice-refilled .event-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background: #97d3df;
    z-index: 2;
  }
  .event-dryice-refilled .event-tag {
    margin-top: 0;
    margin-left: 58px;
    white-space: nowrap;
    z-index: 1;
    max-width: none;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .event-dryice-refilled .event-tag .event-tag-text {
    display: none;
  }
  .event-dryice-refilled .event-tag .event-tag-icon {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: relative;
  }
  .event-dryice-refilled .event-tag .event-tag-icon::after {
    content: 'Dry ice refilled';
    position: absolute;
    top: auto;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    background: rgba(0,0,0,0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  .event-dryice-refilled .event-tag .event-tag-icon::before {
    content: '';
    position: absolute;
    top: auto;
    bottom: 127%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(0,0,0,0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .event-dryice-refilled .event-tag .event-tag-icon:hover::after,
  .event-dryice-refilled .event-tag .event-tag-icon:hover::before {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .timeline-preview .timeline-node--status-2 .node-date::after,
  .timeline-preview .timeline-node--status-3 .node-date::after,
  .timeline-preview .timeline-node--status-4 .node-date::after {
    content: attr(data-month);
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 15px;
  }
  .timeline-preview .timeline-node--status-2 .node-date .month,
  .timeline-preview .timeline-node--status-3 .node-date .month,
  .timeline-preview .timeline-node--status-4 .node-date .month {
    display: none;
  }
  .timeline-preview .timeline-node--status-2 .node-date .day,
  .timeline-preview .timeline-node--status-3 .node-date .day,
  .timeline-preview .timeline-node--status-4 .node-date .day {
    display: none;
  }
  .timeline-preview .timeline-node--status-2 .node-date::after,
  .timeline-preview .timeline-node--status-3 .node-date::after {
    color: #bb2749;
  }
  .timeline-preview .timeline-node--status-4 .node-date::after {
    color: #dfeaf3;
    font-style: italic;
  }
}
@media (max-width: 768px) {
  .results-panel .results-highlight .summary-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .results-panel .results-container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .results-panel {
    padding: 28px 24px;
  }
  .event-dryice-refilled[data-step='4'] {
    top: 55.5%;
    left: 20%;
  }
  .event-dryice-refilled[data-step='5'] {
    top: 70.5%;
    left: 20%;
  }
}
.timeline-preview .timeline-nodes-container {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.timeline-preview .timeline-nodes-container .timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.timeline-preview .timeline-nodes-container .timeline-node .node-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.timeline-preview .timeline-nodes-container .timeline-node .node-date .month,
.timeline-preview .timeline-nodes-container .timeline-node .node-date .day {
  font-size: 1.1rem;
  font-weight: bold;
  color: #143463;
  white-space: nowrap;
}
.timeline-preview .timeline-nodes-container .timeline-node .node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-preview .timeline-nodes-container .timeline-node .node-icon .node-circle {
  width: 40px;
  height: 40px;
  background: #143463;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  z-index: 6;
  transition: all 0.3s ease;
}
.timeline-preview .timeline-nodes-container .timeline-node .node-icon .node-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.timeline-preview .timeline-nodes-container .timeline-node .node-icon .node-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-image: url("../images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: brightness(0) saturate(100%) invert(20%) sepia(21%) saturate(1500%) hue-rotate(190deg) brightness(95%) contrast(100%);
}
.timeline-preview .timeline-nodes-container .timeline-node.timeline-node--status-6 .node-icon .node-circle {
  width: 58px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: none;
  pointer-events: none;
}
.timeline-preview .timeline-nodes-container .timeline-node.timeline-node--status-6 .node-icon .node-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(20deg);
  animation: orderCompletionShine 4s infinite ease-out;
  pointer-events: none;
  z-index: 1;
  border-radius: 3px;
}
.timeline-preview .timeline-nodes-container .timeline-node.timeline-node--status-6 .node-icon .node-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 18px;
  background-image: url("../images/tailormed-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: none;
}
@-moz-keyframes gradientShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes gradientShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-o-keyframes gradientShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes gradientShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-moz-keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-4px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}
@-webkit-keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-4px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}
@-o-keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-4px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}
@keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-4px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}
@-moz-keyframes truckRoadBounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(-6px) rotate(-0.4deg);
  }
  30% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-4px) rotate(0.4deg);
  }
  60% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@-webkit-keyframes truckRoadBounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(-6px) rotate(-0.4deg);
  }
  30% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-4px) rotate(0.4deg);
  }
  60% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@-o-keyframes truckRoadBounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(-6px) rotate(-0.4deg);
  }
  30% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-4px) rotate(0.4deg);
  }
  60% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes truckRoadBounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(-6px) rotate(-0.4deg);
  }
  30% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-4px) rotate(0.4deg);
  }
  60% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@-moz-keyframes orderCompletionShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes orderCompletionShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-o-keyframes orderCompletionShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes orderCompletionShine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.results-panel .timeline-content .timeline-visual {
  position: relative;
  padding: 20px;
  margin: 0;
  width: 100%;
}
.results-panel .timeline-content .timeline-visual.timeline-visual--order-final .timeline-connector::after {
  background: #143463;
}
.results-panel .timeline-content .timeline-visual.timeline-visual--order-final .timeline-track::after {
  background: #143463;
}
.results-panel .timeline-content .timeline-visual .timeline-track {
  display: none;
}
.results-panel .timeline-content .timeline-visual .timeline-connector {
  position: absolute;
  left: 0;
  right: 0;
  width: 88%;
  top: 0;
  height: 100%;
  z-index: 0;
  margin: 0 auto;
}
.results-panel .timeline-content .timeline-visual .timeline-connector::before {
  content: '';
  position: absolute;
  left: 0;
  top: 39%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #dfeaf3 70%);
  z-index: 1;
}
.results-panel .timeline-content .timeline-visual .timeline-connector::after {
  content: '';
  position: absolute;
  left: 0;
  top: 39%;
  transform: translateY(-50%);
  width: var(--timeline-progress-width, 0%);
  height: 4px;
  background: linear-gradient(90deg, #143463 70%, #bb2749 100%);
  border-radius: 25px;
  z-index: 2;
}
.results-panel .timeline-content .timeline-visual .timeline-events {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.results-panel .timeline-content .timeline-visual .timeline-event-icon {
  display: none;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node {
  pointer-events: none;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-date .month,
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-date .day {
  color: #143463;
  font-style: normal;
  margin-top: 0;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-circle {
  background: #143463;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: none;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-circle::before {
  background: #fff;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-circle::after {
  width: 10px;
  height: 10px;
  background-image: url("../images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  animation: none;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-info .node-status {
  color: #143463;
  position: static;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-info .node-status::before {
  display: none;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node .node-info .node-time {
  color: #666;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node:nth-child(2) .node-circle,
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node:nth-child(3) .node-circle,
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node:nth-child(4) .node-circle {
  border-style: solid;
}
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node:nth-child(2) .node-circle::after,
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node:nth-child(3) .node-circle::after,
.timeline-preview--domestic-completed .timeline-nodes-container .timeline-node:nth-child(4) .node-circle::after {
  background-image: url("../images/icon-check.svg");
  filter: brightness(0) invert(1);
}
.timeline-preview--domestic-completed .timeline-connector::after {
  background: #143463;
}
@media (max-width: 768px) {
  .results-panel .timeline-content .summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #143463;
  }
  .results-panel .timeline-content .timeline-visual {
    padding: 15px 0;
    position: relative;
    width: 100%;
  }
  .results-panel .timeline-content .timeline-visual .timeline-track {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .results-panel .timeline-content .timeline-visual .timeline-track::before {
    content: '';
    position: absolute;
    left: 21.3%;
    top: 6%;
    width: 8px;
    height: 87%;
    background: linear-gradient(to bottom, #dfeaf3 60%);
    z-index: 0;
    border-radius: 15px;
  }
  .results-panel .timeline-content .timeline-visual .timeline-track::after {
    content: '';
    position: absolute;
    left: 21.3%;
    top: 6%;
    width: 8px;
    height: var(--timeline-progress-height, 0%);
    max-height: 88%;
    background: linear-gradient(to bottom, #143463 70%, #bb2749 100%);
    border-radius: 15px;
    z-index: 1;
  }
  .results-panel .timeline-content .timeline-visual.timeline-visual--order-final .timeline-track::after {
    background: #143463;
  }
  .results-panel .timeline-content .timeline-visual .timeline-connector {
    display: none;
  }
}
.timeline-preview .timeline-visual.timeline-visual--order-final .timeline-track::after {
  background: #143463;
}
@media (max-width: 768px) {
  .timeline-preview .timeline-visual .timeline-connector {
    display: none;
  }
  .timeline-preview .timeline-visual .timeline-event-icon {
    display: none;
  }
}
.results-panel .timeline-content .timeline-icon-legend {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.results-panel .timeline-content .timeline-icon-legend .legend-items-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  row-gap: 1rem;
}
.results-panel .timeline-content .timeline-icon-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.results-panel .timeline-content .timeline-icon-legend .legend-item .legend-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.results-panel .timeline-content .timeline-icon-legend .legend-item .legend-icon img {
  width: 80%;
  height: 100%;
  object-fit: contain;
}
.results-panel .timeline-content .timeline-icon-legend .legend-item .legend-text {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .results-panel .timeline-content .timeline-icon-legend {
    margin-top: 1.5rem;
    padding: 1rem;
  }
  .results-panel .timeline-content .timeline-icon-legend .summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #143463;
  }
  .results-panel .timeline-content .timeline-icon-legend .legend-items-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .results-panel .timeline-content .timeline-icon-legend .legend-item {
    max-width: none;
    justify-content: flex-start;
  }
  .results-panel .timeline-content .timeline-icon-legend .legend-item .legend-text {
    font-size: 0.85rem;
  }
}
.hero-banner--under-construction {
  background: linear-gradient(135deg, #1d4c82 0%, #0d2442 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 100vh;
}
.hero-banner--under-construction .hero-overlay {
  background: rgba(15,23,42,0.68);
}
.hero-banner--under-construction .container {
  width: 100%;
  max-width: 980px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-banner--under-construction .hero-panel {
  width: 100%;
  background: #fff;
  background-image: url("../images/underConstruction.svg");
  background-repeat: no-repeat;
  background-position: 96% 67%;
  background-size: 50% 60%;
  border-radius: 16px;
  box-shadow: 0 5px 10px rgba(12,48,88,0.4);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.hero-banner--under-construction .hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,52,99,0.08) 0%, rgba(20,52,99,0) 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-banner--under-construction .hero-brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.hero-banner--under-construction .hero-brand .hero-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}
.hero-banner--under-construction .hero-panel__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  align-items: center;
}
.hero-banner--under-construction .hero-panel__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  position: relative;
}
.hero-banner--under-construction .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 10% 0;
}
.hero-banner--under-construction .hero-text {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-banner--under-construction .hero-text .hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Inter', 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #143463;
  font-weight: 800;
  line-height: 1;
}
.hero-banner--under-construction .hero-text .hero-title .hero-title__line {
  display: block;
}
.hero-banner--under-construction .hero-text .hero-title .hero-title__line--under {
  font-size: 2rem;
  letter-spacing: -1px;
}
.hero-banner--under-construction .hero-text .hero-title .hero-title__line--construction {
  font-size: 4rem;
  letter-spacing: -1px;
}
.hero-banner--under-construction .hero-text .hero-subtitle {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}
.hero-banner--under-construction .hero-illustration {
  display: none;
  width: 100%;
  margin: 24px 0 0;
  position: relative;
  z-index: 1;
}
.hero-banner--under-construction .hero-illustration__img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2%;
}
.hero-banner--under-construction .hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  z-index: 1;
}
.hero-banner--under-construction .btn--outline {
  color: #143463;
  border: 2px solid rgba(20,52,99,0.16);
  background: transparent;
}
.hero-banner--under-construction .btn--outline:hover {
  background: rgba(20,52,99,0.08);
  color: #143463;
}
.hero-banner--under-construction .hero-panel__copyright {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .hero-banner--under-construction {
    height: auto;
    padding: 80px 0;
  }
  .hero-banner--under-construction .hero-panel {
    padding: 40px 36px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .hero-banner--under-construction {
    padding: 48px 0;
    min-height: 100vh;
  }
  .hero-banner--under-construction .container {
    padding: 0 16px;
  }
  .hero-banner--under-construction .hero-panel {
    padding: 28px 20px;
    border-radius: 24px;
    gap: 28px;
    background-position: 90% 72%;
    background-size: 70% auto;
    background-image: none;
  }
  .hero-banner--under-construction .hero-panel__left {
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }
  .hero-banner--under-construction .hero-brand {
    justify-content: center;
  }
  .hero-banner--under-construction .hero-text {
    padding: 0;
  }
  .hero-banner--under-construction .hero-text .hero-title {
    font-size: 2.2rem;
  }
  .hero-banner--under-construction .hero-text .hero-subtitle--desktop {
    display: block;
    font-size: 1rem;
    margin-bottom: 0;
  }
  .hero-banner--under-construction .hero-text .hero-title {
    gap: 6px;
  }
  .hero-banner--under-construction .hero-text .hero-title .hero-title__line--under {
    font-size: 1.6rem;
    letter-spacing: -0.6px;
  }
  .hero-banner--under-construction .hero-text .hero-title .hero-title__line--construction {
    font-size: 2.9rem;
    letter-spacing: -0.6px;
  }
  .hero-banner--under-construction .hero-content {
    width: 100%;
    min-height: 100%;
    padding: 0;
  }
  .hero-banner--under-construction .hero-panel__right {
    display: none;
  }
  .hero-banner--under-construction .hero-illustration {
    display: block;
  }
  .hero-banner--under-construction .hero-actions {
    width: 100%;
    margin-top: auto;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .hero-banner--under-construction {
    padding: 36px 0;
  }
  .hero-banner--under-construction .hero-panel {
    padding: 8% 18px;
    border-radius: 20px;
    background-position: 54% 75%;
    background-size: 75% auto;
    height: 90vh;
    background-image: none;
  }
  .hero-banner--under-construction .hero-text {
    padding: 0;
  }
  .hero-banner--under-construction .hero-text .hero-title .hero-title__line--under {
    font-size: 1.4rem;
    letter-spacing: -0.4px;
  }
  .hero-banner--under-construction .hero-text .hero-title .hero-title__line--construction {
    font-size: 2.4rem;
    letter-spacing: -0.4px;
  }
  .hero-panel__right {
    display: none;
  }
  .hero-illustration {
    display: block;
  }
}
.under-construction-info {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(241,245,249,0.65) 0%, rgba(248,250,252,0.95) 100%);
}
.under-construction-info .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.under-construction-info .status-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(20,52,99,0.08);
  box-shadow: 0 24px 48px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.under-construction-info .status-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.under-construction-info .status-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(20,52,99,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.under-construction-info .status-icon img {
  width: 28px;
  height: 28px;
}
.under-construction-info .status-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #143463;
}
.under-construction-info .status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.under-construction-info .status-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}
.under-construction-info .status-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: rgba(20,52,99,0.65);
}
.under-construction-info .status-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}
.under-construction-info .status-highlight {
  background: linear-gradient(135deg, rgba(20,52,99,0.95) 0%, rgba(20,52,99,0.92) 100%);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 28px 60px rgba(20,52,99,0.28);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.under-construction-info .status-highlight__title {
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.under-construction-info .status-highlight__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}
.under-construction-info .status-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.under-construction-info .status-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.6;
}
.under-construction-info .status-contact .contact-item .contact-label {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.under-construction-info .status-contact .contact-item .contact-value {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .under-construction-info {
    padding: 64px 0;
  }
  .under-construction-info .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-banner--under-construction .hero-text {
    padding: 0 5%;
  }
  .hero-banner--under-construction .hero-text .hero-title {
    font-size: 2.2rem;
  }
  .under-construction-info {
    padding: 56px 0;
  }
  .under-construction-info .status-card {
    padding: 32px;
  }
  .under-construction-info .status-highlight {
    padding: 36px;
  }
}
@media (max-width: 480px) {
  .hero-banner--under-construction .hero-text .hero-title {
    font-size: 1.85rem;
  }
  .under-construction-info .status-card {
    padding: 28px;
  }
  .under-construction-info .status-highlight {
    padding: 30px;
  }
}
.dashboard-section {
  padding: 40px 0;
  min-height: 100vh;
  background: #f8f9fa;
}
.dashboard-section .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}
.dashboard-title {
  font-size: 2rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 2rem;
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #143463, #97d3df);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.stat-card__icon svg {
  width: 24px;
  height: 24px;
}
.stat-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: #143463;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.stat-card__chart-container {
  width: 120px;
  height: 120px;
  margin-bottom: 0.5rem;
  position: relative;
}
.stat-card--wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .stat-card--wide {
    grid-column: span 1;
  }
}
.stat-card__bar-container {
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.stat-card__bar-container canvas {
  height: 20px !important;
  border-radius: 10px;
}
.stat-card__bar-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  position: relative;
}
.stat-card__bar-label--left {
  text-align: left;
}
.stat-card__bar-label--right {
  text-align: right;
}
.stat-card__label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-align: center;
}
.dashboard-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}
.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #fff;
  color: #222;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-select:hover {
  border-color: #143463;
}
.filter-select:focus {
  outline: none;
  border-color: #143463;
  box-shadow: 0 0 0 3px rgba(20,52,99,0.1);
}
.dashboard-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.dashboard-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.dashboard-panel__header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-panel__header .header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.dashboard-panel__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #143463;
  margin: 0;
}
.dashboard-panel__body {
  padding: 1.5rem;
}
.dashboard-table-container {
  overflow-x: auto;
}
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.dashboard-table thead {
  background: #f8f9fa;
}
.dashboard-table th {
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  color: #666;
  border-bottom: 2px solid #eee;
  white-space: nowrap;
}
.dashboard-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}
.dashboard-table tbody tr:hover {
  background-color: #f8f9fa;
}
.dashboard-table tbody td {
  padding: 0.75rem;
  color: #222;
}
.dashboard-table__empty td {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}
.endpoint-cell {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.method-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.method-badge.method-get {
  background: #e3f2fd;
  color: #1976d2;
}
.method-badge.method-post {
  background: #f3e5f5;
  color: #7b1fa2;
}
.method-badge.method-put {
  background: #fff3e0;
  color: #f57c00;
}
.method-badge.method-delete {
  background: #ffebee;
  color: #c62828;
}
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge.status-success {
  background: #e8f5e9;
  color: #2e7d32;
}
.status-badge.status-error {
  background: #ffebee;
  color: #c62828;
}
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn--secondary {
  background: #e0e0e0;
  color: #333;
}
.btn--secondary:hover {
  background: #d0d0d0;
}
.btn--danger {
  background: #f44336;
  color: #fff;
}
.btn--danger:hover {
  background: #d32f2f;
}
.btn-detail {
  padding: 0.25rem 0.75rem;
  background: #143463;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn-detail:hover {
  background: #122f59;
}
.dashboard-charts {
  margin-top: 2rem;
}
.chart-container {
  padding: 1rem;
  min-height: 300px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.pagination-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 40px;
}
.pagination-btn:hover:not(:disabled):not(.active) {
  background: #f5f5f5;
  border-color: #143463;
}
.pagination-btn.active {
  background: #143463;
  color: #fff;
  border-color: #143463;
  font-weight: 600;
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-ellipsis {
  padding: 0.5rem;
  color: #666;
}
#requestLogsPagination,
#errorLogsPagination {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .dashboard-filters {
    flex-direction: column;
  }
  .filter-group {
    width: 100%;
  }
  .filter-group .filter-select {
    flex: 1;
  }
  .dashboard-content {
    grid-template-columns: 1fr;
  }
  .dashboard-table-container {
    font-size: 0.8rem;
  }
  .dashboard-table-container th,
  .dashboard-table-container td {
    padding: 0.5rem;
  }
}
:root {
  --primary: #143463;
  --secondary: #97d3df;
  --accent: #bb2749;
  --text-primary: #143463;
  --text-secondary: #666;
  --bg-primary: #fff;
  --bg-secondary: #dfeaf3;
  --border-color: rgba(20,52,99,0.08);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.6;
}
body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background-color: #fff;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.timeline-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.4rem;
}
p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn--primary {
  background: #143463;
  color: #fff;
}
.btn--primary:hover {
  background: #122f59;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn--large {
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  height: 78px;
}
.site-header .header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.site-header .header-btn {
  width: 100px;
  height: 46px;
  font-size: 1rem;
  color: #fff;
  background-color: #143463;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 18px;
}
.site-header .header-btn:hover {
  background-color: #122f59;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20,52,99,0.3);
}
.site-header .header-btn:active {
  transform: translateY(0);
}
.brand-logo {
  display: block;
  width: 215px;
}
.brand-logo--mobile {
  display: none;
  width: 100px;
  height: 100px;
}
.site-header .brand {
  display: flex;
  align-items: center;
}
.site-nav {
  display: flex;
  gap: 18px;
}
@media (max-width: 768px) {
  .site-nav {
    margin-left: auto;
  }
}
.nav-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}
.nav-link:hover {
  transform: translateY(-3px);
  background: rgba(37,99,235,0.18);
  color: var(--accent);
}
@media (max-width: 768px) {
  .nav-link {
    text-align: right;
    display: inline-block;
  }
}
.site-footer {
  background: #143463;
  color: #fff;
  padding: 28px 0;
}
.site-footer .container {
  display: flex;
  justify-content: center;
}
.site-footer .site-footer__copy {
  font-size: 1rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 20px 0;
  }
  .site-footer .site-footer__copy {
    font-size: 0.8rem;
    color: #fff;
  }
}
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #143463 0%, #102a4f 100%);
  background-image: url("../images/shipmentTracking.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
}
.hero-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 78px 0;
}
.hero-banner .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-banner .hero-text {
  max-width: 520px;
  text-align: left;
}
.hero-banner .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.hero-banner .hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.hero-banner .hero-subtitle--mobile {
  display: none;
}
.hero-banner .hero-actions {
  display: flex;
  gap: 16px;
}
.hero-banner .btn--outline {
  border-color: #fff;
  color: #fff;
}
.hero-banner .btn--outline:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.hero-summary {
  display: flex;
  justify-content: center;
  margin-top: -60px;
  padding: 0 5%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.static-preview {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  text-align: left;
}
.static-preview .static-preview__title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(12,48,88,0.55);
}
.static-preview .static-preview__note {
  font-size: 0.85rem;
  color: rgba(12,48,88,0.45);
  margin-bottom: 12px;
}
.static-preview .timeline-previews-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.static-preview .timeline-previews-gallery .timeline-preview-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #143463;
  margin-bottom: 8px;
}
.static-preview .timeline-previews-gallery .timeline-preview {
  background: rgba(223,234,243,0.12);
  border: 1px solid rgba(20,52,99,0.1);
  border-radius: 12px;
  padding: 16px;
}
.static-preview .timeline-previews-gallery .timeline-preview-item--international .timeline-preview {
  padding: 16px 16px 32px;
}
@media (max-width: 480px) {
  .static-preview .timeline-previews-gallery .timeline-preview-item--international .timeline-preview {
    padding: 16px;
  }
}
@media (max-width: 1024px) {
  .static-preview .timeline-previews-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .static-preview .timeline-previews-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.system-description {
  padding: 40px 0;
}
.system-description .description-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.system-description .description-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(12,48,88,0.6);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.system-description .description-text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.system-description .description-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(12,48,88,0.4);
}
.system-description .description-text strong {
  color: rgba(12,48,88,0.4);
}
@media (max-width: 768px) {
  .system-description {
    padding: 32px 0;
  }
  .system-description .description-content {
    gap: 20px;
  }
  .system-description .description-title {
    font-size: 1.4rem;
  }
  .system-description .description-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    min-height: 320px;
    background-position: 80% center;
  }
  .hero-banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 0;
  }
  .hero-banner .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-banner .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-banner .hero-text {
    width: 100%;
    padding: 0 5%;
  }
  .hero-banner .hero-title {
    font-size: 2.2rem;
  }
  .site-header .container {
    justify-content: center;
  }
  .site-header .brand-logo {
    display: none;
  }
  .site-header .brand-logo--mobile {
    display: block;
  }
  .site-header .header-btn {
    display: none;
  }
  .site-header .header-btn .hero-title {
    font-size: 2.1rem;
  }
  .site-header .header-btn .hero-subtitle--desktop {
    display: none;
  }
  .site-header .header-btn .hero-subtitle--mobile {
    display: block;
    font-size: 1rem;
    margin-top: 8px;
    color: rgba(255,255,255,0.9);
  }
  .site-header .container {
    padding: 18px 5%;
  }
  .hero-summary {
    margin-top: -40px;
    margin-bottom: 48px;
    gap: 24px;
  }
}
