.shared-cart-header {
    width: 100%;
}

.shared-cart-items {
    margin-top: 15px;
}

.shared-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 7px 0;
}

.shared-cart-image {
    width: 49px;
    height: 34px;
    object-fit: cover;
}

.shared-cart-info {
    flex: 1;
    min-width: 0;
}

.shared-cart-name {
    display: block;
    color: #222;
    font-size: 11px;
    line-height: 1.35;
    text-decoration: none;
}

.shared-cart-name:hover {
    color: #d5a738;
}

.shared-cart-price {
    margin-top: 2px;
    color: #d5a738;
    font-size: 11px;
    font-weight: 600;
}

.shared-cart-remove {
    padding: 0;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 12px;
}

.shared-cart-remove:hover {
    color: #8f1118;
}

.shared-cart-empty {
    padding: 10px 0;
    color: #888;
    font-size: 12px;
}

.shared-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 12px 0;
    border-top: 1px solid #ddd;
}

.shared-cart-total span {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.shared-cart-total strong {
    color: #d5a738;
    font-size: 15px;
}

.shared-cart-checkout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 15px;
    background: #d5a738;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    transition: .2s;
}

.shared-cart-checkout:hover {
    background: #bd912c;
    color: #fff;
}