/* cart pg css start */

.cart-inner-detail {
    padding: 100px 0;
}

.cart-check h2 {
    color: var(--black);
    font-size: 35px;
    margin-bottom: 20px;
}

.detail-cart-check.cartpg {
    padding: 10px;
    border: 1px solid var(--lgrey);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-cart-check .bottle-img-info {
    width: 70%;
}

.detail-cart-check .cart-information {
    width: 100%;
}

.cart-update-remover-btns {
    margin-top: 10px;
}

.cart-update-remover-btns a span {
    padding: 8px;
    font-size: 15px;
}

.detail-cart-check .cart-bottle-details {
    width: 50%;
}

.cart-inner-qountity .cart-number-select {
    width: 40%;
    margin-left: auto;
}

.cart-inner-qountity h6 {
    text-align: end;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
}

.total-check-cart {
    padding: 10px;
    border: 1px solid var(--lgrey);
    border-radius: 10px;
}

.total-check-cart ul li {
    padding: 6px 0;
}

.total-check-cart ul li p {
    color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

.total-check-cart ul {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lgrey);
}

.total-check-cart h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
    font-family: 'Inter';
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--lgrey);
}

.total-check-cart .product-btn {
    margin: 0;
}

.total-check-cart p {
    margin: 30px 0;
    color: var(--grey);
    font-size: 14px;
    width: 85%;
}

p.mid-para {
    text-align: center;
    margin: auto;
    color: var(--grey);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    background: white;
    text-transform: uppercase;
}

p.mid-para span {
    background: white;
}

p.mid-para:before {
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 11px;
    bottom: 0;
    width: 37%;
    height: 1px;
    background: var(--lgrey);
    content: "";
}

p.mid-para:after {
    position: absolute;
    z-index: -1;
    /* left: 0; */
    right: 0;
    top: 11px;
    bottom: 0;
    width: 37%;
    height: 1px;
    background: var(--lgrey);
    content: "";
}

.cart-add {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    border-radius: 10px;
    padding: 0 20px;
}

.bottle-add {
    width: 30%;
    display: flex;
    align-items: end;
}

.add-detail {
    width: 50%;
}

.click-add {
    width: 20%;
    text-align: end;
}

.add-detail h3 {
    color: var(--yellow);
    font-size: 35px;
    margin-bottom: 13px;
}

.add-detail p {
    color: var(--white);
}

.click-add h5 {
    color: var(--white);
    font-size: 30px;
}

.click-add a {
    background: var(--white) !IMPORTANT;
    color: var(--black) !important;
    font-weight: 600 !important;
    margin-top: 20px;
    margin-bottom: 0;
}

/* cart pg css end */

/* checkout pg css start */
/* ===== Checkout Page Styling ===== */
.detail-cart-check {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #fff;
    font-family: Arial, sans-serif;
    border: 1px solid var(--lgrey);
    border-radius: 10px;
}

.checkout-container {
    width: 100%;
}

/* Quick checkout buttons */
.quick-checkout {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.quick-checkout button {
    flex: 1;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
}

.quick-checkout .shop {
    background: #7c3aed;
    color: #fff;
}

.quick-checkout .paypal {
    background: #ffdd00;
    color: #000;
}

.quick-checkout .gpay {
    background: #000;
    color: #fff;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 12px;
    color: #666;
    font-size: 13px;
}

/* Labels and Inputs */
.section label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.section input,
select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.section input:focus,
select:focus {
    border-color: #000;
}

/* Form Rows */
.form-row {
    display: flex;
    gap: 10px;
}

.form-row input,
.form-row select {
    flex: 1;
}

/* Checkboxes and Radios */
.checkbox,
.radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 8px;
}

.checkbox input,
.radio input {
    margin: 0;
}

/* Notes */
.note {
    font-size: 12px;
    color: #666;
    margin: 4px 0 12px;
}

/* Section spacing */
.section {
    margin-bottom: 22px;
}

/* Payment box */
.payment-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    background: #fafafa;
}

/* Submit button */
.btn.product-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.btn.product-btn:hover {
    background: #222;
}

.checkbox input#newsletter {
    width: unset;
}

.checkbox input#gift {
    width: unset;
}

.checkbox input#card {
    width: unset;
}

.checkbox input#same-address {
    width: unset;
}

.radio input {
    width: unset;
}

.checkbox input {
    width: unset;
}

button.gpay img {
    width: 30%;
}

.section h3 {
    font-family: 'Inter';
    color: var(--black);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 80%;
    gap: 12px;
}

.payment-icons img {
    width: 8%;
    border: 1px solid var(--lgrey);
    height: 30px;
    object-fit: cover;
    padding: 5px;
}

.payment-icons h6 {
    border: 1px solid var(--lgrey);
    padding: 5px;
    width: 45px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
}

.radio label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.radio label img {
    width: 10%;
    object-fit: fill;
    height: 50px;
    border-radius: 5px;
}

.radio {
    border: 2px solid var(--lgrey);
    padding: 5px 20px;
    border-radius: 10px;
}

.salva {
    border: 2px solid var(--lgrey);
    padding: 10px 20px;
    border-radius: 10px;
}

.last-para {
    justify-content: space-between;
}

.checkbox.last-para label {
    color: var(--grey);
    font-weight: 400;
}

.checkbox.last-para a {
    color: var(--grey);
    font-size: 20px;
    font-weight: 500;
}

/* checkout pg css end */