* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background: #fff;
    padding: 120px 10%;
}


/* TITLE */

.cart-title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #111;
}


/* LAYOUT */

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}


/* ITEMS */

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    padding: 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    transition: .3s;
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}


/* IMAGE */

.cart-image img {
    width: 140px;
    border-radius: 20px;
}


/* INFO */

.cart-info {
    flex: 1;
    margin-left: 25px;
}

.cart-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #111;
}

.cart-info p {
    color: #777;
    margin-bottom: 20px;
    font-size: 18px;
}


/* QUANTITY */

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.qty-input {
    width: 60px;
    height: 35px;
    border: none;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    outline: none;
}


/* PRICE */

.item-price {
    font-size: 24px;
    font-weight: bold;
    color: #111;
}


/* REMOVE */

.remove-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.remove-btn i {
    color: crimson;
    font-size: 24px;
}

.remove-btn:hover {
    background: crimson;
}

.remove-btn:hover i {
    color: #fff;
}


/* SUMMARY */

.summary {
    background: #fafafa;
    padding: 35px;
    border-radius: 25px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.summary h2 {
    margin-bottom: 30px;
    color: #111;
}

.summary-box {
    margin-bottom: 20px;
}

.summary-box div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #555;
    font-size: 18px;
}

.total {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 24px !important;
    font-weight: bold;
    color: #111 !important;
}


/* BUTTONS */

.cart-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 15px;
    background: #111;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    margin-top: 15px;
}

.cart-btn:hover {
    background: #333;
}


/* EMPTY */

.empty-cart {
    background: #fafafa;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
}

.empty-cart i {
    font-size: 70px;
    color: #999;
    margin-bottom: 20px;
}

.empty-cart h2 {
    color: #555;
}


/* LOGIN TABS */


/* LOGIN TABS */

.login-tabs {
    margin-top: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.tabs-header {
    display: flex;
    background: #f3f4f6;
    padding: 5px;
    border-radius: 16px;
    margin-bottom: 18px;
    gap: 6px;
}

.tab-btn {
    flex: 1;
    border: none;
    height: 45px;
    border-radius: 13px;
    cursor: pointer;
    background: transparent;
    color: #777;
    font-size: 15px;
    font-weight: 600;
    transition: .25s;
}

.tab-btn.active {
    background: #111;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.tab-Content {
    display: none;
    animation: fadeIn .25s ease;
}

.tab-Content.active {
    display: block;
}

.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 14px;
}

.tab-input {
    width: 100%;
    height: 54px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 0 95px 0 15px;
    font-size: 15px;
    outline: none;
    background: #fafafa;
    transition: .25s;
    direction: rtl;
}

.tab-input:focus {
    background: #fff;
    border-color: #111;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.inside-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    min-width: 78px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: .25s;
}

.send-btn {
    background: #111;
}

.verify-btn {
    background: #16a34a;
}

.inside-btn:hover {
    transform: translateY(-50%) scale(.98);
    opacity: .9;
}

.iti {
    width: 100%;
    margin-bottom: 15px;
}

.iti input {
    width: 100% !important;
    height: 54px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding-right: 95px !important;
    background: #fafafa;
}

.iti__selected-flag {
    border-radius: 16px 0 0 16px;
    padding: 0 12px;
}

.iti__country-list {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.input-wrapper {
    position: relative;
}

.input-wrapper .iti {
    width: 100%;
    display: block;
}

.input-wrapper .iti input {
    height: 54px !important;
    padding-right: 95px !important;
    padding-left: 105px !important;
}

.input-wrapper .inside-btn {
    top: 27px !important;
    right: 8px !important;
    height: 40px;
    z-index: 5;
}

.iti__selected-country,
.iti__selected-flag {
    height: 54px !important;
}

.page-toast {
    position: fixed;
    bottom: 30px;
    right: -450px;
    z-index: 999999;
    min-width: 290px;
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    transition: right .45s ease, opacity .35s ease, visibility .35s ease;
}

.page-toast.show {
    right: 30px;
    opacity: 1;
    visibility: visible;
}

.page-toast i {
    flex: 0 0 auto;
    font-size: 27px;
}

.page-toast.success {
    background: #15803d;
}

.page-toast.error {
    background: #b91c1c;
}

.page-toast.warning {
    background: #b45309;
}

.page-toast.info {
    background: #1d4ed8;
}

@media(max-width:600px) {
    .page-toast {
        right: 12px;
        left: 12px;
        bottom: -150px;
        min-width: 0;
        max-width: none;
    }
    .page-toast.show {
        right: 12px;
        bottom: 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MOBILE */

@media(max-width:900px) {
    body {
        padding: 120px 5%;
    }
    .cart-container {
        grid-template-columns: 1fr;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-info {
        margin: 20px 0;
    }
    .summary {
        position: relative;
        top: 0;
    }
}