/* Страница успешного заказа */
/* Страница успешного заказа — синий стиль */
.success-block {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 #3abeff33;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin-top: 2rem;
}
.success-icon {
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 8px #3abeff44);
}
.success-title {
    color: #232A45;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.success-lead {
    color: #232A45;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}
.success-desc {
    color: #232A45cc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.success-btns .order-btn {
    min-width: 180px;
    margin-bottom: 0.5rem;
    background: #3ABEFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 10px 0;
    box-shadow: 0 2px 8px 0 #3abeff44;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    text-decoration: none !important;
    outline: none;
    display: inline-block;
}
.success-btns .order-btn:hover, .success-btns .order-btn:focus {
    background: #2196f3;
    color: #fff;
    box-shadow: 0 4px 16px 0 #3abeff77;
    text-decoration: none !important;
    outline: none;
}
@media (max-width: 600px) {
    .success-block {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .success-title {
        font-size: 1.2rem;
    }
    .success-btns .order-btn {
        min-width: 100px;
        font-size: 1rem;
    }
}
/* cart_custom.css — фирменные стили корзины */

/* Корзина — синий фирменный стиль */
.cart-detail-block {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px 0 #3abeff33;
    padding: 2.2rem 2.2rem 1.5rem 2.2rem;
}
.cart-title {
    font-size: 2rem;
    font-weight: 700;
    color: #232A45;
    letter-spacing: 0.01em;
}
.cart-fast-title {
    font-weight: 700;
    color: #232A45;
    font-size: 1.2rem;
}
.cart-fast-desc {
    color: #232A45cc;
    font-size: 1rem;
}
.cart-fast-form {
    border: 1.5px solid #3ABEFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 #3abeff22;
}
.order-btn, .order-btn-lg {
    background: #3ABEFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 10px 0;
    box-shadow: 0 2px 8px 0 #3abeff44;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, text-decoration 0.18s;
    margin-top: 8px;
    text-decoration: none !important;
    outline: none;
    display: inline-block;
}
.order-btn-lg {
    font-size: 1.25rem;
    padding: 13px 36px;
}
.order-btn:hover, .order-btn-lg:hover, .order-btn:focus, .order-btn-lg:focus {
    background: #2196f3;
    color: #fff;
    box-shadow: 0 4px 16px 0 #3abeff77;
    text-decoration: none !important;
    outline: none;
}
.cart-table-head {
    background: #e3f4fd;
    color: #232A45;
    font-weight: 700;
}
.cart-product-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    border: 1.5px solid #3ABEFF;
}
.cart-product-name {
    color: #232A45;
    font-weight: 500;
}
.cart-qty-form {
    gap: 4px;
}
.cart-qty-btn {
    background: #3ABEFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 32px;
    height: 32px;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px 0 #3abeff22;
    cursor: pointer;
}
.cart-qty-btn:hover {
    background: #2196f3;
}
.cart-qty-value {
    min-width: 24px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    color: #232A45;
}
.cart-item-total {
    color: #232A45;
    font-weight: 700;
}
.cart-total-row {
    border-top: 2px solid #3ABEFF;
    padding-top: 1.2rem;
}
.cart-total-label {
    color: #232A45;
    font-weight: 700;
    font-size: 1.2rem;
}
.cart-total-sum {
    color: #3ABEFF;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 8px #3abeff33;
}
@media (max-width: 600px) {
    .cart-detail-block {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .cart-title {
        font-size: 1.3rem;
    }
    .order-btn-lg {
        font-size: 1.05rem;
        padding: 10px 0;
    }
    .cart-product-img {
        width: 36px;
        height: 36px;
        margin-right: 7px;
    }
}
