:root {

    /* shipment panel colors */
    --bg:#ffffff;
    --panel:#efe7e2;      /* pale beige panel */
    --accent:#f6c021;     /* yellow accent */
    --brown:#4b2b17;      /* dark brown for logo */
    --teal:#0fa29b;       /* teal for active dot */
    --muted:#9a8f8a;      /* muted text */
    --track:#bfbdbb;      /* track line and inactive dots */
    --black:#111;
}


  /* Page */
  html,body{
    height:100%;
    margin:0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background:var(--bg);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }

  /* center the card like in the screenshot */
  .wrap{
    max-width:720px;
    margin:34px auto;
    padding:24px;
  }

  /* top rounded beige panel that contains the content */
  .panel{
    background:var(--panel);
    border-radius:28px;
    padding:32px 36px 48px 36px;
    position:relative;
    overflow:visible;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  }

  /* top bar: logo left, profile icon right */
  .topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
  }

  /* approximate UPS shield badge (inline SVG) */
  .logo{
    width:68px;
    height:44px;
    display:block;
  }

  /* profile circle with silhouette */
  .profile{
    width:44px;
    height:44px;
    border-radius:50%;
    background:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
  }
  .profile svg{ width:22px; height:22px; display:block; }

  /* Title */
  .title{
    font-size:48px;
    font-weight:600;
    color:var(--black);
    margin:8px 0 12px 0;
    line-height:1;
  }

  /* thin yellow short underline element under title */
  .title-underline{
    width:64px;
    height:6px;
    background:var(--accent);
    border-radius:4px;
    margin-bottom:14px;
  }

  .req{
    color:var(--black);
    font-size:15px;
    margin-bottom:22px;
  }

.progress-wrap {
  margin-top: 20px;
  margin-bottom: 10px;
}

.progress {
  position: relative;
  display: flex;
  align-items: center;
  gap: 42px;
  padding-left: 22px;
  height: 36px;
}

/* Line under the dots */
.progress::before {
  content: "";
  position: absolute;
  left: 54px;
  right: 34px;
  top: 18px;
  height: 6px;
  background: #dcdcdc;
  border-radius: 6px;
  z-index: 0;
}

/* Dot wrapper */
.dot,



.step-dot {
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 50%;
  background: #eee;          /* light grey dot so it becomes visible */
  border: 2px solid #ccc;    /* grey outline */
}

.step-dot .inner {
  width: 12px;
  height: 12px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

.step-dot .ring {
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ACTIVE STEP */
.step-dot.active {
  background: transparent;   /* remove the grey fill */
  border-color: transparent; /* remove the border */
}

.step-dot.active .ring {
  border-color: #00857A;     /* green ring */
}

.step-dot.active .inner {
  background: #00857A;       /* green fill */
}


/* Empty dots */

  /* step text & label */
  .step{
    text-align:center;
    color:var(--muted);
    font-size:16px;
    margin-bottom:10px;
  }

  .section-label{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:6px;
  }

  .section-label h3{
    font-size:22px;
    font-weight:700;
    margin:0;
    color:var(--black);
  }

  /* right chevron */
  .chev{
    width:22px;
    height:22px;
    display:inline-block;
    transform:translateX(4px);
  }

  /* responsive small screens */
  @media (max-width:420px){
    .title{ font-size:34px; }
    .wrap{ padding:12px; }
  }





  /* Form card */ 
  .form-card {
  background: #f8f5f3;
  padding: 24px;
  border-radius: 14px;
  max-width: 650px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.form-sub {
  margin: 6px 0 18px;
  color: #777;
  font-size: 15px;
  line-height: 1.4;
}

.form-label-title {
  margin: 28px 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.form-group {
  margin-bottom: 18px;
}

.form-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #d4d0cd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}

.form-input:focus {
  border-color: #009688;
}

.currency-box {
  position: relative;
}

.currency {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-weight: bold;
  font-size: 15px;
}

.info-row {
  margin-top: 6px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  cursor: default;
}

.info-icon {
  width: 18px;
  height: 18px;
  background: #e2e2e2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}




/* shipment option */
/* Shipment Options Style */
.shipment-options .option-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 2px solid #e6e1df;
  margin-top: 18px;
  display: block;
  cursor: pointer;
  transition: 0.2s;
}

.shipment-options .option-box.selected {
  border-color: #0c8b85;
  box-shadow: 0 0 0 2px rgba(0,150,136,0.15);
}

.option-left {
  display: flex;
  align-items:flex-start;
  gap: 10px;
}

.option-check {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.option-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: -2px;
  color: #111;
}

.option-price {
  float: right;
  font-weight: 600;
  font-size: 16px;
  margin-top: -30px;
  color: #222;
}

.option-desc {
  margin: 14px 0 0;
  color: #666;
  font-size: 14.5px;
  line-height: 1.4;
}





/* BUTTONS */
/* button wrap */
.buttons-wrap {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.btn-primary {
    width: 90%;
    background: #ffcc00;
    border: none;
    padding: 16px 0;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 14px;
}

.btn-back {
    width: 90%;
    background: #fff;
    border: 2px solid #0173c7;
    padding: 14px 0;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    color: #0173c7;
    cursor: pointer;
}

.btn-back .arrow {
    margin-right: 6px;
}

/* SUMMARY SECTION */
.summary-section {
    margin-top: 25px;
    padding: 10px 20px;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-link {
    color: #0067c3;
    font-size: 16px;
    text-decoration: underline;
}

.summary-total {
    margin-top: 6px;
    font-size: 17px;
}

.summary-total span {
    font-weight: bold;
}

/* LEGAL SECTION */
.legal-section {
    margin-top: 25px;
    background: #3b241a;
    color: #fff;
    padding: 18px 20px;
}

.legal-header {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-arrow {
    font-size: 18px;
}

.legal-footer {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 12px;
}




