: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; }
  }




  /* ship mother card specific styles */

  .ship-method-wrap {
  max-width: 620px;   /* EXACT same width as .wrap */
  margin: 0 auto;     /* centers it */
  padding: 0 36px;    /* matches .panel padding */
  margin-top: 50px;
}


  .ship-method-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 28px;
}

.ship-method-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #111;
}

/* Option box */
.ship-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid #e0e0e0;
  background: #fafafa;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  cursor: pointer;
  position: relative;
}

/* Active selection */
.ship-option.active {
  border-color: #00857A;
  background: #e7f7f5;
}

/* Hide native radio */
.ship-option input {
  display: none;
}

/* Custom radio circle */
.ship-option .radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #555;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.ship-option.active .radio {
  border-color: #00857A;
}

.ship-option.active .radio::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #00857A;
  border-radius: 50%;
}

/* Content text */
.opt-content {
  flex: 1;
}

.opt-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.opt-desc {
  margin: 6px 0 0 0;
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}

.opt-price {
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.opt-price.free {
  color: #00857A;
}




/* Drop off info panel */
/* Aligns the entire dropoff section with your main form */
.ship-method-wrap {
    max-width: 720px;         /* SAME width as main form */
    margin: 20px auto 0;      /* centers it */
    padding: 0 36px;          /* matches the inner panel padding */
    margin-top: 50px;
}

/* The white rounded card box */
.dropoff-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Label above date input */
.date-label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Date picker input */
.date-picker {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
}

/* Links */
.location-title a,
.find-location {
    color: #007bff;
    text-decoration: underline;
}

.find-location {
    display: inline-block;
    margin-top: 15px;
}


/* Shipping option section */

/* Section card wrapper */
    .method-options {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 20px 0;
    }

    .option-card {
        border: 2px solid #ccc;
        padding: 12px 22px;
        border-radius: 14px;
        font-size: 17px;
        cursor: pointer;
        transition: 0.2s ease;
        background: #fff;
        font-weight: 600;
    }

    .option-card.active {
        border-color: #007bff;
        background: #eaf2ff;
        box-shadow: 0 0 10px rgba(0,0,0,0.12);
    }




    /* Your original styles (KEEP THEM) */


    .ship-method-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .shipping-options-card {
        width: 480px;
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .shipping-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .shipping-subtext {
        color: #444;
        margin-bottom: 20px;
    }


        .shipping-tabs {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .tab {
        padding: 8px 18px;
        border: none;
        border-radius: 20px;
        background: #eee;
        cursor: pointer;
        font-weight: 600;
    }

    .tab.active {
        background: #008080;
        color: #fff;
    }

    .shipping-option-box {
        display: flex;
        justify-content: space-between;
        border: 2px solid #eee;
        padding: 18px;
        border-radius: 14px;
        margin-bottom: 18px;
        background: #fff;
        cursor: pointer;
        transition: 0.2s;
    }

    .shipping-option-box.selected {
        border-color: #008080;
        background: #f0fbfa;
    }

    .radio-circle {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid #333;
        display: inline-block;
        margin-right: 12px;
        transition: 0.2s;
    }

    .radio-circle.filled {
        background: #008080;
        border-color: #008080;
    }


    .shipping-option-box.selected {
       border-color: #008080;
       background: #f0fbfa;
}


    .service-details .label {
        font-weight: bold;
    }

    .price {
        margin-top: 5px;
        font-size: 20px;
        font-weight: bold;
    }


    /* Balance and fastest badge */
    /* Card container (same as others) */
.shipping-options-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
    font-family: Arial, sans-serif;
}

/* Shipping option box */
.shipping-option-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: 0.25s ease;
}

.shipping-option-box:hover {
    border-color: #0b7f7a;
}

/* Selected state */
.shipping-option-box.selected {
    border-color: #0b7f7a;
    background: #f0fbfa;
}

/* Left content */
.shipping-option-box .left {
    display: flex;
    align-items: flex-start;
}

/* Dot */
.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #555;
    display: inline-block;
    margin-right: 15px;
    margin-top: 6px;
    transition: 0.25s;
}

.radio-circle.filled {
    background: #0b7f7a;
    border-color: #0b7f7a;
}

/* Labels + dates */
.label {
    font-weight: bold;
    letter-spacing: 2px;
}

.date span {
    color: #555;
    font-size: 14px;
}

/* Right content */
.right {
    text-align: right;
}

.price {
    margin-top: 5px;
    font-size: 22px;
    font-weight: bold;
}

/* Notes */
.note-text {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 16px;
}




/* Footer action buttons */

.step-wrap {
    width: 100%;
    max-width: 560px; /* same as earlier screens */
    margin: auto;
}

/* FOOTER BUTTONS */
.action-footer {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

/* COMPLETE DETAILS BUTTON */
.complete-details-btn {
    width: 100%;
    padding: 18px;
    background: #FFC600;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* BACK BUTTON */
.back-btn {
    width: 100%;
    padding: 18px;
    background: white;
    border: 3px solid #0070C9;
    color: #0070C9;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* SUMMARY AREA */
.shipping-summary {
    padding: 20px;
    font-size: 17px;
    border-top: 1px solid #ddd;
}

.summary-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.summary-toggle a {
    color: #0066CC;
    text-decoration: underline;
}

.total-charges {
    margin-top: 5px;
    font-size: 18px;
}

/* LEGAL */
.legal-section {
    background: #3A1F12;
    color: white;
    padding: 25px;
    margin-top: 20px;
}

.legal-section h3 {
    margin: 0 0 10px 0;
}

.legal-section p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

.arrow {
    font-size: 20px;
}


