.eb-title {
    color: #0d6efd;
    font-weight: 700;
    font-size: 42px;
    margin: 40px 0 60px;
}

.eb-head {
    color: #8ab0ff;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eef3ff;
}

.eb-item {
    padding: 30px 0;
    border-bottom: 1px solid #eef3ff;
}

.eb-thumb {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    background: #eef5ff;
    border: none;
    flex-shrink: 0;
}

.eb-name {
    color: #1e63e6;
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 4px 0;
}

.eb-variant {
    color: #1e63e6;
    font-size: 11px;
    font-weight: 600;
}

.eb-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #8ab0ff;
    border-radius: 50%;
    color: #1e63e6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.eb-icon:hover {
    background: #eef5ff;
}

.eb-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cfe0ff;
    border-radius: 6px;
    background: #fff;
    height: 36px;
}

.eb-qty button {
    width: 32px;
    height: 100%;
    border: none;
    background: transparent;
    color: #8ab0ff;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

.eb-qty button:hover {
    color: #1e63e6;
}

.eb-qty input {
    width: 32px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 700;
    color: #1e63e6;
    background: transparent;
    outline: none;
}

.text-primary {
    color: #1e63e6 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.eb-summary {
    background: #F2F8FF;
    border: none;
    border-radius: 0;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.eb-summary h6 {
    color: #1e63e6;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
}

.eb-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.eb-total span:first-child {
    font-size: 28px;
    color: #1e63e6;
    font-weight: 400;
}

.eb-total-amount {
    color: #1e63e6;
    font-size: 28px;
    font-weight: 700;
}

.eb-summary hr {
    border-color: #cfe0ff;
    margin: 24px 0;
    opacity: 1;
}

.eb-summary .d-flex span {
    color: #1e63e6;
    font-size: 16px;
}

.eb-cta {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 30px;
    transition: background 0.2s;
}

.eb-cta:hover {
    background: #0b5ed7;
}

@media (max-width: 576px) {
    .eb-title {
        font-size: 28px;
    }
}