.checkout-footer {
  border-top: 1px solid #f5f5f5; /* border-neutral-100 */
  padding: 4rem 1rem; /* py-16 */
  background-color: var(--color-primary, #003366); /* bg-primary */
  margin-top: 100px;
}

.checkout-footer .footer-container {
  display: grid;
  gap: 1.5rem; /* gap-6 */
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .checkout-footer .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.checkout-footer .logo {
  height: 4rem; /* h-16 */
  /*! width: 8rem; */ /* w-32 */
  /*! border-radius: 1rem; */ /* rounded-2xl */
  /*! overflow: hidden; */
  height: 100px;
}

.checkout-footer .logo img{
height:60px
}

.checkout-footer h3 {
  font-size: 0.875rem; /* text-sm */
  color: var(--brand-orange, #ff6600);
  margin-bottom: 0.5rem;
}

.checkout-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-footer ul li a {
  font-size: 0.875rem; /* text-sm */
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.checkout-footer ul li a:hover {
  color: var(--brand-orange, #ff6600);
}

.checkout-footer p {
  font-size: 0.875rem;
}

.checkout-footer .social-icons {
  display: flex;
  align-items: center;
  gap: 1rem; /* gap-4 */
}

.checkout-footer .store-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
}

.checkout-footer .copyright {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 2.5rem; /* mt-10 */
  color: rgba(255, 255, 255, 0.5);
}
















/* checkout thank you html styles */
.checkout-section {
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem; /* py-10 */
  padding-bottom: 2.5rem; /* py-10 */
  min-height: 60dvh;
 
  max-width: 1280px; 
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem; /* px-4 */
}

/* Stepper header styles */
.stepper-header-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space-y-6 */
  margin-bottom: 1rem; /* mb-4 */
}

/* Stepper step (circle + label) */
.stepper-step {
  display: flex;
  align-items: center;
  position: relative;
}

/* Vertical connector line (mobile only) */
.mobile-line-connector {
  position: absolute;
  top: 2.5rem;
  left: 1.25rem;
  width: 0.125rem;
  height: 100%;
  background-color: #cfd6dc;
}

.mobile-line-connector-filled {
  position: absolute;
  top: 2.5rem;
  left: 1.25rem;
  width: 0.125rem;
  height: 100%;
  background-color: #fd983e;
}

/* Stepper circle (filled/active) */
.stepper-circle-filled {
  height: 2.5rem; /* h-10 */
  width: 2.5rem; /* w-10 */
  background-color: #fd983e;
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.stepper-check-icon {
  width: 0.875rem; /* w-[14px] */
}

/* Stepper label */
.stepper-label {
  font-size: 0.6875rem; /* text-[11px] */
  margin-left: 0.5rem; /* mx-2 */
  margin-right: 0.5rem;
}

/* Stepper progress bar (large screens) */
.stepper-progress-lg {
  display: none;
  align-items: center;
}

/* Filled progress circle */
.stepper-progress-bar-filled {
  height: 1rem; /* h-4 */
  width: 1rem; /* w-4 */
  background-color: #fd983e;
  border-radius: 9999px; /* rounded-full */
}

/* Filled progress line */
.stepper-progress-bar-filled-line {
  flex: 1;
  height: 0.1875rem; /* h-[3px] */
  background-color: #fd983e;
  width: 4.4375rem; /* w-[71px] */
}

/* Pending progress circle */
.stepper-progress-bar-pending {
  height: 1rem; /* h-4 */
  width: 1rem; /* w-4 */
  background-color: #cfd6dc;
  border-radius: 9999px; /* rounded-full */
}

/* Pending progress line */
.stepper-progress-bar-pending-line {
  flex: 1;
  height: 0.1875rem; /* h-[3px] */
  background-color: #cfd6dc;
  width: 4.4375rem; /* w-[71px] */
}

/* Current step circle */
.stepper-circle-current {
  height: 2.5rem; /* h-10 */
  width: 2.5rem; /* w-10 */
  border: 0.125rem solid #fd983e;
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 10;
}

.stepper-circle-inner-filled {
  height: 1rem; /* h-4 */
  width: 1rem; /* w-4 */
  background-color: #fd983e;
  border-radius: 9999px; /* rounded-full */
}

/* Pending step circle */
.stepper-circle-pending {
  height: 2.5rem; /* h-10 */
  width: 2.5rem; /* w-10 */
  border: 0.125rem solid #cfd6dc;
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 10;
}

/* Preview information container */
.preview-info-container {
  margin-bottom: 2rem; /* mb-8 */
}

/* Preview header */
.preview-header {
  margin-bottom: 1.5rem; /* mb-6 */
}

.preview-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600;
  color: #101928;
  margin-bottom: 0.625rem; /* mb-2.5 */
}

.preview-subtitle {
  font-size: 0.875rem; /* text-sm */
}

/* Preview cards grid */
.preview-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem; /* gap-6 */
}

/* Preview card */
.preview-card {
  padding: 2rem; /* p-8 */
  background-color: #fcf6f0;
  border-radius: 0.625rem; /* rounded-[10px] */
}

/* Preview card header */
.preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-card-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600;
  color: #47170D; /* text-primary */
}

/* Edit button */
.edit-button {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

.preview-card-subtitle-bold {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  margin-top: 1.5rem; /* mt-6 */
  margin-bottom: 0.5rem; /* mb-2 */
}

.preview-card-text {
  font-size: 0.875rem; /* text-sm */
  color: #667185;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  margin-bottom: 0.5rem; /* mb-2 */
}

/* Order contents section */
.order-contents-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600;
}

.order-contents-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 6rem; /* md:gap-24 */
  margin-top: 1rem; /* mt-4 */
  margin-bottom: 3rem; /* mb-12 */
  padding: 0.625rem; /* p-2.5 */
}

/* Order contents items container */
.order-contents-items {
  grid-column: span 1 / span 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* gap-6 */
}

/* Order item */
.order-item {
  border-bottom: 1px solid #f5f5f5; /* border-neutral-100 */
  padding-top: 0.75rem; /* py-3 */
  padding-bottom: 0.75rem; /* py-3 */
}

.order-item-details {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
}

.order-item-image-wrapper {
  flex: 1;
  width: 18.75rem; /* w-[300px] */
}

.order-item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-item-info {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* gap-2 */
}

.order-item-name {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-item-name a {
  font-size: 1.25rem;
  color: #47170D;
  text-transform: capitalize
}

.order-item-variant,
.order-item-quantity {
  color: #0d0b0e;
  font-size: 0.875rem; /* text-sm */
  font-weight: 300;
}

.order-item-actions {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-item-price {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.order-item-remove-button {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  margin-bottom: 1.5rem; /* mb-6 */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.order-item-remove-text {
  color: #ef4444; /* text-red-600 */
  font-size: 0.875rem; /* text-sm */
}

/* Order summary card */
.order-summary-card {
  border: 1px solid #e0d8d6;
  border-radius: 0.75rem; /* rounded-xl */
  margin-bottom: 2rem; /* mb-8 */
}

.order-summary-header {
  padding: 1rem; /* px-4 */
  padding-top: 1.25rem; /* py-5 */
  padding-bottom: 1.25rem; /* py-5 */
  border-bottom: 1px solid #e0d8d6;
}

.order-summary-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600;
}

.order-summary-details {
  padding: 1rem; /* p-4 */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
}


/* Responsive styles */
@media (min-width: 768px) { /* md breakpoint */
  .stepper-header-container {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
  }

  .mobile-line-connector,
  .mobile-line-connector-filled {
    display: none;
  }

  .preview-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-item-details {
    flex-direction: row;
    gap: 3rem; /* md:gap-12 */
    height: 11.25rem; /* md:h-[180px] */
  }

  .order-item-image-wrapper {
    width: auto;
    height: auto;
  }

  .order-item-price {
    text-align: right;
  }

  .order-item-remove-button {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) { /* lg breakpoint */
  .stepper-progress-lg {
    display: flex;
  }

  .order-contents-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-contents-items {
    grid-column: span 2 / span 2;
  }
}
