<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main {
  max-width: 850px;
  margin-top: 90px;
  margin-bottom: 100px;
  padding-left: 20px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'Times New Roman', Times, serif;
  color: rgb(0, 0, 0);
  margin: 0;
  background: linear-gradient(135deg, rgb(255, 231, 231) 0%, rgb(251, 220, 220) 100%);
  overflow-x: hidden;
}


.page-title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 25px;
}


.orders-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 50px;
}

.order-header {
  background-color: rgb(255, 187, 187);
  border: 1px solid rgb(255, 171, 171);

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

  padding: 20px 25px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.order-header-left-section {
  display: flex;
  flex-shrink: 0;
}


.order-header-label {
  font-weight: 500;
}

.order-date,
.order-total {
  margin-right: 45px;
}

.order-header-right-section {
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .order-header {
    flex-direction: column;
    align-items: start;
    line-height: 23px;
    padding: 15px;
  }

  .order-header-left-section {
    flex-direction: column;
  }

  .order-header-label {
    margin-right: 5px;
  }

  .order-date,
  .order-total {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-right: 0;
  }

  .order-header-right-section {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}

.order-details-grid {
  padding: 40px 25px;
  border: 1px solid rgb(255, 146, 146);
  background-color: rgb(253, 238, 238);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;

  display: grid;
  grid-template-columns: 110px 1fr 220px;
  column-gap: 35px;
  row-gap: 60px;
  align-items: center;
}

@media (max-width: 800px) {
  .order-details-grid {
    grid-template-columns: 110px 1fr;
    row-gap: 0;
    padding-bottom: 8px;
  }
}

@media (max-width: 450px) {
  .order-details-grid {
    grid-template-columns: 1fr;
  }
}

.product-image-container {
  text-align: center;
}

.product-image-container img {
  max-width: 110px;
  max-height: 110px;
}

.product-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.product-delivery-date {
  margin-bottom: 3px;
}


.buy-again-button {
  font-size: 15px;
  width: 140px;
  height: 36px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-again-icon {
  width: 25px;
  margin-right: 15px;
}

.product-actions {
  align-self: start;
}

.track-package-button {
  width: 100%;
  font-size: 15px;
  padding: 8px;
  padding: 12px 8px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgb(255, 131, 131), rgb(180, 40, 40));
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  align-self: center;
}

.track-package-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.3s ease;
}

.track-package-button:hover::before {
  left: 100%;
}

.track-package-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(142, 24, 24, 0.4);
  background: linear-gradient(135deg, rgb(160, 30, 30), rgb(200, 50, 50));
}

.track-package-button:active {
  transform: translateY(0) scale(0.98);
}

@media (max-width: 800px) {
  .buy-again-button {
    margin-bottom: 10px;
  }

  .product-actions {
    /* grid-column: 2 means this element will be placed
       in column 2 in the grid. (Normally, the column that
       an element is placed in is determined by the order
       of the elements in the HTML. grid-column overrides
       this default ordering). */
    grid-column: 2;
    margin-bottom: 30px;
  }

  .track-package-button {
    width: 140px;
  }
}

@media (max-width: 450px) {
  .product-image-container {
    text-align: center;
    margin-bottom: 25px;
  }

  .product-image-container img {
    max-width: 150px;
    max-height: 150px;
  }

  .product-name {
    margin-bottom: 10px;
  }

  .product-quantity {
    margin-bottom: 15px;
  }

  .buy-again-button {
    width: 100%;
    margin-bottom: 15px;
  }

  .product-actions {
    /* grid-column: auto; undos grid-column: 2; from above.
       This element will now be placed in its normal column
       in the grid. */
    grid-column: auto;
    margin-bottom: 70px;
  }

  .track-package-button {
    width: 100%;
    padding: 12px;
  }
}

.main {
  margin-top: 80px;
  padding: 20px;
}

.empty-cart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.empty-cart-icon {
  margin-bottom: 30px;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.empty-cart-container:hover .empty-cart-icon {
  opacity: 1;
  transform: translateY(-5px);
}

.empty-cart-image {
  width: 400px;
  height: 400px;
  object-fit: contain;
  transition: all 0.3s ease;
  will-change: transform;
}

.empty-cart-container:hover .empty-cart-image {
  transform: scale(1.05) rotate(2deg);
}

.empty-cart-title {
  font-size: 28px;
  font-weight: 700;
  color: #1d1c1c;
  margin-bottom: 40px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.empty-cart-container:hover .empty-cart-title {
  color: rgb(142, 24, 24);
  transform: scale(1.02);
}

.empty-cart-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.continue-shopping-btn {
  margin-top: 10px;
  background-color: transparent;
  border: 2px solid #a31c1c;
  color: #cb3030;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.continue-shopping-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.3s ease;
}

.continue-shopping-btn:hover::before {
  left: 100%;
}

.continue-shopping-btn:hover {
  background-color: #a31c1c;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(107, 105, 104, 0.3);
}

.continue-shopping-btn:active {
  transform: translateY(-2px) scale(0.98);
}
</pre></body></html>