#shipping-open-btn {
    /* position: fixed; */
    top: 20px;
    right: 20px;
    background: #1e1e2f;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-size: 20px ;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#shipping-open-btn:hover {
    background: #2d2d44;
    transform: scale(1.02);
}

/* ---- DRAWER OVERLAY ---- */
#shipping-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 2000;
}

#shipping-overlay.shipping-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* html, body{
    height: 100dvh;
}
body{
    overflow: hidden;
} */

/* ---- CART DRAWER (right-side sliding) ---- */
.shipping {

    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    font-size: 16px !important;
    margin: 0;
    max-width: 480px;
    overflow-x: hidden;
    overflow-y: hidden !important;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.0);
    width: 100%;
    z-index: 2100;
}

.shipping.shipping-active {
    transform: translateX(0);
}

/* inner padding */
.shipping-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    height: 100%;
}

/* close button */
.shipping-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px  ;
    line-height: 1;
    cursor: pointer;
    color: #5e5e6e;
    padding: 4px 8px;
    transition: 0.15s;
    z-index: 5;
}

.shipping-close-btn:hover {
    color: #111;
    transform: scale(1.1);
}

.shipping-header {
    margin-top: 4px;
    /* margin-bottom: 12px; */
    font-size: 24px ;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: #121212;
    padding-bottom: 16px;
}

.shipping ::placeholder {
    font-style: italic;
    color: var(--shipping-text-color);
}

.shipping select {
    font-style: italic;
    color: var(--shipping-text-color);
}


/* Header */
/* .shipping-header {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    background: yellow
    text-align: center;
} */

/* Section */
.shipping-section {
    margin-bottom: 24px;
}

/* .shipping-title {
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid red;
} */

/* Inputs */
.shipping-field {
    margin-bottom: 14px;
}

/* .shipping-field label {
    display: block;
    font-size: 0.9rem;
    color: var(--shipping-text-color);
    margin-bottom: 5px;
} */

.shipping-field input,
.shipping-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.shipping-field input:focus,
.shipping-field select:focus {
    outline: none;
    border-color: var(--shipping-text-color);
}


.shipping-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;

}

/* Grid */
.shipping-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.shipping-row-3-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 12px;
}

/* Payment */
.shipping-secure {
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;

}

.shipping-secure b {
    background: #d3fcd3;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 1rem;
    opacity: .7;

}

/* Button */
.shipping-pay-btn {
    background: #1e1e2f;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 24px;
}

.shipping-pay-btn:hover {
    background: #1b1ba0;

}

/* continue shopping */
.shipping-back-btn {
    background: transparent;
    border: 1.5px solid #cad1db;
    border-radius: 60px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 17px;
    color: #7e8082;
    cursor: pointer;
    transition: 0.15s;
    margin-bottom: 10px;


}

.shipping-back-btn:hover {
    background: #f0f4f9;
    border-color: #c0c0c0;
}





.shipping-header-text-container {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 28px;

}

.shipping-header-text-container span {
    font-style: italic;
    padding-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    border-bottom: 2px solid transparent;
    cursor: default;
    border-bottom-color: #1a1a1a;

}
