.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    /* margin-bottom: 40px; */
    font-family: 'Raleway';
    font-size: 14px;
    padding: 20px 50px;
}

.breadcrumb a {
    color: #5C5F6A;
    text-decoration: none;
}

.breadcrumb .current {
    color: #0E1422;
    font-weight: 500;
}
.checkout-title {
    margin-left: 90px;
    margin-top: 20px;
    width: 105px;
    position: relative;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 175%;
    display: inline-block;
    font-family: 'Montserrat';
    color: #161616;
    text-align: left;
}
/* Progress Steps Styles */
.bars-nav-bars-large {
    background-color: #fff;
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 20px;
}

.steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* Common Step Styles */
.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-circle {
    position: relative;
    width: 24px;
    height: 24px;
}

.circle-border {
    position: absolute;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.step-number {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Raleway';
    font-weight: 500;
}

.step-text {
    font-family: 'Raleway';
    font-size: 14px;
}

.step-arrow {
    width: 19px;
    height: auto;
}

/* Active Step */
.step-active .circle-border {
    border: 2px solid #000;
    font-weight: 800;
}

.step-active .step-text {
    color: #000;
    font-weight: 600;
}

/* Pending Step */
.step-pending .circle-border {
    border: 2px solid #696969;
    background-color: #fff;
}

.step-pending .step-number {
    color: #696969;
}

.step-pending .step-text {
    color: #696969;
}

/* Inactive Step */
.step-inactive .circle-border {
    border: 2px solid #CCCCCC;
    background-color: #fff;
}

.step-inactive .step-number {
    color: #CCCCCC;
}

.step-inactive .step-text {
    color: #CCCCCC;
}

/* Main Content Styles */
.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Map Section */
.map-section {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}

#map {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

#map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Address Options */
.delivery-locations {
    margin-top: 50px;
    padding: 20px 0;
}
.delivery-locations h3{
    position: relative;
    font-size: 16px;
    font-family: 'Raleway';
    color: #161616;
    text-align: left;
    font-weight: 500;
    margin-bottom: 40px;
}

.address-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 15px;
}

.location-icon {
    width: 44px;
    height: 44px;
}

.address-details {
    flex-grow: 1;
}

.address-type {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Raleway';
    color: #000;
    text-align: left;
}
.address-point {
    position: relative;
    font-size: 16px;
    font-family: 'Raleway';
    color: #676767;
    text-align: left;
    font-weight: 500;
}

.edit-btn {
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Montserrat';
}

.add-address-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 30px;
    
}

.add-btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
}

.add-btn-content span {
    font-family: 'Raleway';
    font-size: 14px;
    color: #161616;
    font-weight: 500;
}

.plus-icon {
    width: 16px;
    height: 16px;
}

/* Hover state */
.add-address-btn:hover .add-btn-content {
    opacity: 0.8;
}

/* Form Section */
.form-section {
    padding: 20px;
    width: 100%;
}

.form-section h3 {
    font-size: 16px;
    font-family: 'Raleway';
    color: #161616;
    margin-bottom: 30px;
    font-weight: 500;
}

.delivery-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: #161616;
    font-family: 'Raleway';
    margin-bottom: 4px;
}

.input-wrapper {
    position: relative;
    width: 70%;
}
.input-contain {
    position: relative;
    width: 90%;
}

.form-group input {
    width: 100%;
    height: 38px;
    padding: 4px 10px;
    border: 1px solid #dbdbdb;
    border-radius: 30px;
    font-family: 'Raleway';
    font-size: 14px;
    color: #161616;
    background: #FFFFFF;
}

.form-group input::placeholder {
    color: #777777;
    font-size: 14px;
    font-family: 'Raleway';
}

/* Focus States */
.form-group input:focus {
    outline: none;
    border-color: #161616;
}

/* Hover States */
.form-group input:hover {
    border-color: #161616;
}

/* Select Styles */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('arrow-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dbdbdb;
    border-radius: 30px;
    font-family: 'Raleway';
    font-size: 14px;
    color: #777777;
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    cursor: pointer;
}

/* Shipping Options */
.shipping-options {
    margin-top: 30px;
    padding: 24px 40px 30px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
}

.shipping-options h4 {
    
    font-size: 14px;
    font-weight: 500;
    color: #161616;
    font-family: 'Raleway';
    margin-bottom: 16px;
}

.shipping-option {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* padding: 16px; */
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
}

.shipping-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shipping-name {
    font-family: 'Raleway';
    font-size: 14px;
    font-weight: 500;
    color: #161616;
}

.delivery-time {
    font-family: 'Raleway';
    font-size: 12px;
    color: #777777;
}

.shipping-price {
    font-family: 'Raleway';
    font-size: 14px;
    font-weight: 500;
    color: #161616;
}

/* Radio button styles */
.shipping-option input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #dbdbdb;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
}

.shipping-option input[type="radio"]:checked {
    border: 2px solid #161616;
}

.shipping-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #161616;
    border-radius: 50%;
}

/* Hover states */
.shipping-option:hover {
    border-color: #161616;
}

.shipping-option:hover input[type="radio"] {
    border-color: #161616;
}

/* Button Styles */
.continue-btn {
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Raleway';
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
}

/* Radio Button Styles */
input[type="radio"] {
    width: 24px;
    height: 24px;
    border: 2px solid #dbdbdb;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
}

input[type="radio"]:checked {
    border: 2px solid #000;
    background: transparent;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}

/* Hover state */
input[type="radio"]:hover {
    border-color: #000;
}

/* Focus state for accessibility */
input[type="radio"]:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
